summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/keychooser/cscrollbutton.h
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/frontend/keychooser/cscrollbutton.h')
-rw-r--r--bibletime/frontend/keychooser/cscrollbutton.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/bibletime/frontend/keychooser/cscrollbutton.h b/bibletime/frontend/keychooser/cscrollbutton.h
index bd6e900..daf02fc 100644
--- a/bibletime/frontend/keychooser/cscrollbutton.h
+++ b/bibletime/frontend/keychooser/cscrollbutton.h
@@ -12,21 +12,21 @@
#ifndef CSRCOLLBUTTON_H
#define CSRCOLLBUTTON_H
-#include <qwidget.h>
-#include <qtoolbutton.h>
+#include <tqwidget.h>
+#include <tqtoolbutton.h>
-class QMouseEvent;
+class TQMouseEvent;
/** This Class implements the direct chooser button used in the KeyChooser Widget
* @author The BibleTime team
*/
-class CScrollButton : public QToolButton {
+class CScrollButton : public TQToolButton {
Q_OBJECT
public:
/**
* The constructor
*/
- CScrollButton(QWidget *parent=0, const char *name=0);
+ CScrollButton(TQWidget *parent=0, const char *name=0);
const bool isLocked() const;
signals:
@@ -60,17 +60,17 @@ protected:
* Reimplementation from @ref QWidget#mouseMoveEvent - processes
* the mouse move events
*/
- virtual void mouseMoveEvent( QMouseEvent* e );
+ virtual void mouseMoveEvent( TQMouseEvent* e );
/**
* used to find the lock point - the middle of the button
* @return the lock point
*/
- const QPoint get_lock_Point() const;
+ const TQPoint get_lock_Point() const;
/**
* If the wheel of the mouse is used while the mouse stays over our scrollbutton the content is
* scrolled like the mouse was pressed and moved.
*/
- virtual void wheelEvent( QWheelEvent* e );
+ virtual void wheelEvent( TQWheelEvent* e );
private:
/**
@@ -80,7 +80,7 @@ private:
/**
* stores the lock point
*/
- QPoint lock_Point;
+ TQPoint lock_Point;
};
#endif