summaryrefslogtreecommitdiff
path: root/src/frontend/crossrefrendering.h
blob: a1e5607b821200666dd7fa3c8d6578bd9ad52a7a (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, 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