summaryrefslogtreecommitdiff
path: root/src/frontend/crossrefrendering.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/crossrefrendering.h')
-rw-r--r--src/frontend/crossrefrendering.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/frontend/crossrefrendering.h b/src/frontend/crossrefrendering.h
new file mode 100644
index 0000000..99fdd7c
--- /dev/null
+++ b/src/frontend/crossrefrendering.h
@@ -0,0 +1,37 @@
+//
+// C++ Interface: crossrefrendering
+//
+// Description:
+//
+//
+// Author: The BibleTime team <info@bibletime.info>, (C) 2004, 2007
+//
+// Copyright: See COPYING file that comes with this distribution
+
+
+#ifndef INFODISPLAYCROSSREFRENDERING_H
+#define INFODISPLAYCROSSREFRENDERING_H
+
+//Backend includes
+#include "backend/rendering/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 QString entryLink( const KeyTreeItem& item, CSwordModuleInfo* module );
+ virtual const QString finishText( const QString&, KeyTree& tree );
+};
+
+
+}
+
+#endif