~ubuntu-branches/ubuntu/trusty/bibletime/trusty

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs, Jonathan Marsden, Dmitrijs Ledkovs
  • Date: 2012-04-14 18:11:50 UTC
  • mfrom: (1.3.7)
  • Revision ID: package-import@ubuntu.com-20120414181150-17l2liq7bl7oaxjz
Tags: 2.9.1-1
[ Jonathan Marsden ]
* New upstream version 2.9.1
* debian/patches/*: Remove all patches (incorporated upstream)
* debian/control: bibletime now depends on a matching version of
  bibletime-data.

[ Dmitrijs Ledkovs ]
* Add more strict alternative build-dependency on the libqt4-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 * @short Text rendering as plain text.
21
21
 * @author The BibleTime team
22
22
 */
23
 
 
24
 
class CPlainTextExportRendering : public CHTMLExportRendering {
25
 
 
26
 
    public:
 
23
class CPlainTextExportRendering: public CHTMLExportRendering {
 
24
 
 
25
    public: /* Methods: */
 
26
 
27
27
        CPlainTextExportRendering(
28
 
            const Settings &settings,
 
28
            bool addText,
29
29
            const DisplayOptions &displayOptions = CBTConfig::getDisplayOptionDefaults(),
30
 
            const FilterOptions &filterOptions = CBTConfig::getFilterOptionDefaults()
31
 
        );
32
 
        virtual inline ~CPlainTextExportRendering() {};
33
 
 
34
 
    protected:
35
 
        virtual const QString renderEntry( const KeyTreeItem&, CSwordKey* = 0 );
36
 
        virtual const QString finishText( const QString&, KeyTree& tree );
37
 
};
38
 
 
39
 
}
 
30
            const FilterOptions &filterOptions = CBTConfig::getFilterOptionDefaults());
 
31
 
 
32
    protected: /* Methods: */
 
33
 
 
34
        virtual QString renderEntry(const KeyTreeItem &item, CSwordKey * key = 0);
 
35
        virtual QString finishText(const QString &text, const KeyTree &tree);
 
36
 
 
37
}; /* class CPlainTextExportRendering */
 
38
 
 
39
} /* namespace Rendering */
40
40
 
41
41
#endif