summaryrefslogtreecommitdiffstats
path: root/khotkeys/kcontrol/gesturedrawer.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /khotkeys/kcontrol/gesturedrawer.h
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz
tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khotkeys/kcontrol/gesturedrawer.h')
-rw-r--r--khotkeys/kcontrol/gesturedrawer.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/khotkeys/kcontrol/gesturedrawer.h b/khotkeys/kcontrol/gesturedrawer.h
index bcc8ba7e8..50fe5db67 100644
--- a/khotkeys/kcontrol/gesturedrawer.h
+++ b/khotkeys/kcontrol/gesturedrawer.h
@@ -12,12 +12,12 @@
#ifndef GESTURE_DRAWER_H
#define GESTURE_DRAWER_H
-#include <qframe.h>
-#include <qstring.h>
-#include <qevent.h>
-#include <qpoint.h>
-#include <qwidget.h>
-#include <qsize.h>
+#include <tqframe.h>
+#include <tqstring.h>
+#include <tqevent.h>
+#include <tqpoint.h>
+#include <tqwidget.h>
+#include <tqsize.h>
namespace KHotKeys
{
@@ -26,23 +26,23 @@ class GestureDrawer : public QFrame
{
Q_OBJECT
public:
- GestureDrawer(QWidget *parent, const char *name);
+ GestureDrawer(TQWidget *parent, const char *name);
~GestureDrawer();
- void setData(const QString &data);
+ void setData(const TQString &data);
- virtual QSize sizeHint() const { return QSize(30, 30); }
+ virtual TQSize sizeHint() const { return TQSize(30, 30); }
protected:
- void paintEvent(QPaintEvent *ev);
+ void paintEvent(TQPaintEvent *ev);
private:
- QPoint lookupCellCoords(Q_UINT32 cell);
- void drawArrowHead(QPoint &start, QPoint &end,
- QPainter &p);
+ TQPoint lookupCellCoords(Q_UINT32 cell);
+ void drawArrowHead(TQPoint &start, TQPoint &end,
+ TQPainter &p);
- QString _data;
+ TQString _data;
};
} // namespace KHotKeys