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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Marsden
  • Date: 2009-11-18 17:30:00 UTC
  • mfrom: (1.3.4 upstream) (5.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20091118173000-endkhjz5qai88tvr
Tags: 2.4-1
* New upstream version 2.4
* debian/control: 
  - Replace incorrect bibletime-data Depends on lib4qt-gui
    with bibletime Depends on libqtgui4 (>= 4.4.0). (Closes: #556209).
  - Add Build-depends: on zlib1g-dev and libcurl4-gnutls-dev 
    (Closes: #556805).

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
#ifndef CENTRYDISPLAY_H
11
11
#define CENTRYDISPLAY_H
12
12
 
13
 
//BibleTime
14
 
//#include "ctextrendering.h"
15
 
class CSwordModuleInfo;
 
13
#include "util/cpointers.h"
 
14
 
 
15
#include <QString>
16
16
#include "backend/managers/cswordbackend.h"
17
17
 
18
 
#include "util/cpointers.h"
19
 
 
20
 
//Sword
 
18
// Sword includes:
21
19
#include <swdisp.h>
22
20
 
23
 
//Qt
24
 
#include <QString>
25
21
 
26
22
class CSwordModuleInfo;
27
23
 
35
31
 
36
32
class CEntryDisplay : public sword::SWDisplay, public CPointers {
37
33
 
38
 
public:
39
 
        virtual ~CEntryDisplay() {}
 
34
    public:
 
35
        virtual ~CEntryDisplay() {}
40
36
 
41
 
        /**
42
 
        * Returns the rendered text using the modules in the list and using the key parameter.
43
 
        * The displayoptions and filter options are used, too.
44
 
        */
45
 
        virtual const QString text( const QList<CSwordModuleInfo*>& modules, const QString& key, const CSwordBackend::DisplayOptions displayOptions, const CSwordBackend::FilterOptions filterOptions);
 
37
        /**
 
38
        * Returns the rendered text using the modules in the list and using the key parameter.
 
39
        * The displayoptions and filter options are used, too.
 
40
        */
 
41
        virtual const QString text( const QList<CSwordModuleInfo*>& modules, const QString& key, const CSwordBackend::DisplayOptions displayOptions, const CSwordBackend::FilterOptions filterOptions);
46
42
};
47
43
 
48
44