summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/crossrefrendering.h
blob: c1cc87bc0dbb2a6735c70397b1f80783cb5a55ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// C++ Interface: crossrefrendering
//
// Description:
//
//
// Author: The BibleTime team <info@bibletime.info>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef INFODISPLAYCROSSREFRENDERING_H
#define INFODISPLAYCROSSREFRENDERING_H

//Backend includes
#include "backend/chtmlexportrendering.h"

namespace InfoDisplay {

class CrossRefRendering : public Rendering::CHTMLExportRendering {
protected:
		friend class CInfoDisplay;

		CrossRefRendering(
			CSwordBackend::DisplayOptions displayOptions = CBTConfig::getDisplayOptionDefaults(),
			CSwordBackend::FilterOptions filterOptions = CBTConfig::getFilterOptionDefaults()
		);

		virtual const TQString entryLink( const KeyTreeItem& item, CSwordModuleInfo* module );
		virtual const TQString finishText( const TQString&, KeyTree& tree );
	};


};

#endif