summaryrefslogtreecommitdiff
path: root/noncore/apps/dagger/textwidget.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/dagger/textwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/dagger/textwidget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/apps/dagger/textwidget.h b/noncore/apps/dagger/textwidget.h
index 647eae9..f78ef69 100644
--- a/noncore/apps/dagger/textwidget.h
+++ b/noncore/apps/dagger/textwidget.h
@@ -21,53 +21,53 @@ file; see the file COPYING. If not, write to the Free Software Foundation, Inc.,
#include <qwidget.h>
#include <swkey.h>
#include <swmodule.h>
class QTextBrowser;
class TextWidget : public QWidget
{
Q_OBJECT
public:
TextWidget( QWidget *parent = 0x0, sword::SWModule *module = 0x0, int numVerses = 5,
const QFont *font = 0x0 );
~TextWidget();
const QString &getFullKey() { return m_fullKey; }
const QString &getAbbrevKey() { return m_abbrevKey; }
QString getModuleName() { return QString( m_module->Name() ); }
sword::SWModule *getModule() { return m_module; }
QString getCurrVerse();
bool isBibleText() const { return m_isBibleText; }
- void prevChapter();
+ void prevPage();
void prevVerse();
void setKey( const QString &newKey );
void nextVerse();
- void nextChapter();
+ void nextPage();
public slots:
void slotNumVersesChanged( int numVerses );
void slotFontChanged( const QFont *newFont );
void slotOptionChanged();
private:
sword::SWModule *m_module; // Sword module to display in this widget
sword::SWKey *m_key; // Current module key
bool m_isBibleText; // Indicates whether module is a Bible or not
QTextBrowser *m_textView; // Displays module's text
QString m_fullKey; // Contains full key text in format 'key (module)'
QString m_abbrevKey; // Contains abbreviated key text
int m_numVerses; // Number of verses to display at a time for Bible modules
void setText();
signals:
void sigRefClicked( const QString &ref );
};
#endif