summaryrefslogtreecommitdiff
path: root/src/frontend/keychooser/versekeychooser/btdropdownchooserbutton.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/keychooser/versekeychooser/btdropdownchooserbutton.h')
-rw-r--r--src/frontend/keychooser/versekeychooser/btdropdownchooserbutton.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/frontend/keychooser/versekeychooser/btdropdownchooserbutton.h b/src/frontend/keychooser/versekeychooser/btdropdownchooserbutton.h
index e9dbdc2..04b7000 100644
--- a/src/frontend/keychooser/versekeychooser/btdropdownchooserbutton.h
+++ b/src/frontend/keychooser/versekeychooser/btdropdownchooserbutton.h
@@ -2,7 +2,7 @@
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
-* Copyright 1999-2008 by the BibleTime developers.
+* Copyright 1999-2011 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/
@@ -13,7 +13,7 @@
#include <QToolButton>
-class CKeyReferenceWidget;
+class BtBibleKeyWidget;
/**
* Base class for book/ch/v dropdown list chooser buttons.
@@ -21,7 +21,7 @@ class CKeyReferenceWidget;
class BtDropdownChooserButton : public QToolButton {
Q_OBJECT
public:
- BtDropdownChooserButton(CKeyReferenceWidget* ref);
+ BtDropdownChooserButton(BtBibleKeyWidget* ref);
virtual ~BtDropdownChooserButton() {}
/** The item list is constructed here just before the menu is shown.*/
@@ -29,14 +29,14 @@ class BtDropdownChooserButton : public QToolButton {
/** Recreates the menu list.*/
virtual void newList() = 0;
/** Returns the verse reference widget which this button belongs to.*/
- CKeyReferenceWidget* ref() {
+ BtBibleKeyWidget* ref() {
return m_ref;
}
public slots:
/** When a menu item is selected the key will be changed.*/
virtual void slotMenuTriggered(QAction* action) = 0;
protected:
- CKeyReferenceWidget* m_ref;
+ BtBibleKeyWidget* m_ref;
void wheelEvent(QWheelEvent* event);
signals:
void stepItem(int step);
@@ -46,7 +46,7 @@ class BtDropdownChooserButton : public QToolButton {
class BtBookDropdownChooserButton : public BtDropdownChooserButton {
Q_OBJECT
public:
- BtBookDropdownChooserButton(CKeyReferenceWidget* ref);
+ BtBookDropdownChooserButton(BtBibleKeyWidget* ref);
~BtBookDropdownChooserButton() {}
virtual void newList();
public slots:
@@ -57,7 +57,7 @@ class BtBookDropdownChooserButton : public BtDropdownChooserButton {
class BtChapterDropdownChooserButton : public BtDropdownChooserButton {
Q_OBJECT
public:
- BtChapterDropdownChooserButton(CKeyReferenceWidget* ref);
+ BtChapterDropdownChooserButton(BtBibleKeyWidget* ref);
~BtChapterDropdownChooserButton() {}
virtual void newList();
public slots:
@@ -68,7 +68,7 @@ class BtChapterDropdownChooserButton : public BtDropdownChooserButton {
class BtVerseDropdownChooserButton : public BtDropdownChooserButton {
Q_OBJECT
public:
- BtVerseDropdownChooserButton(CKeyReferenceWidget* ref);
+ BtVerseDropdownChooserButton(BtBibleKeyWidget* ref);
~BtVerseDropdownChooserButton() {}
virtual void newList();
public slots: