~pkgcrosswire/bibletime/main

« back to all changes in this revision

Viewing changes to src/backend/rendering/cbookdisplay.h

  • Committer: Jonathan Marsden
  • Date: 2011-12-23 20:32:12 UTC
  • Revision ID: jmarsden@fastmail.fm-20111223203212-1g3e35rlhbys07iu
New upstream version 2.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
  Sword.
27
27
*/
28
28
class CBookDisplay: public CEntryDisplay {
 
29
 
29
30
    public: /* Methods: */
30
 
        virtual inline ~CBookDisplay() {}
31
31
 
32
 
        /** Reimplemented from CEntryDisplay. */
33
32
        virtual const QString text(const QList<const CSwordModuleInfo*> &modules,
34
33
                                   const QString &key,
35
34
                                   const DisplayOptions &displayOptions,
36
35
                                   const FilterOptions &filterOptions);
37
36
 
38
37
    protected: /* Methods: */
 
38
 
39
39
        void setupRenderTree(CSwordTreeKey *swordTree,
40
40
                             CTextRendering::KeyTree *renderTree,
41
41
                             const QString &highlightKey);
42
 
};
43
 
 
44
 
} // namespace Rendering
 
42
 
 
43
}; /* class CBookDisplay */
 
44
 
 
45
} /* namespace Rendering */
45
46
 
46
47
#endif