summaryrefslogtreecommitdiffstats
path: root/kmines/frame.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmines/frame.h')
-rw-r--r--kmines/frame.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/kmines/frame.h b/kmines/frame.h
index 91dc1541..280b94c4 100644
--- a/kmines/frame.h
+++ b/kmines/frame.h
@@ -19,18 +19,18 @@
#ifndef FRAME_H
#define FRAME_H
-#include <qframe.h>
-#include <qpixmap.h>
-#include <qpushbutton.h>
+#include <tqframe.h>
+#include <tqpixmap.h>
+#include <tqpushbutton.h>
#include "defines.h"
class QPainter;
-class FieldFrame : public QFrame, public KMines
+class FieldFrame : public TQFrame, public KMines
{
public:
- FieldFrame(QWidget *parent);
+ FieldFrame(TQWidget *parent);
protected:
enum PixmapType { FlagPixmap = 0, MinePixmap, ExplodedPixmap,
@@ -38,19 +38,19 @@ class FieldFrame : public QFrame, public KMines
NoPixmap = Nb_Pixmap_Types };
enum { Nb_Advised = 5 };
- void drawBox(QPainter &, const QPoint &, bool pressed,
- PixmapType, const QString &text,
+ void drawBox(TQPainter &, const TQPoint &, bool pressed,
+ PixmapType, const TQString &text,
uint nbMines, int advised, bool hasFocus) const;
virtual void adjustSize();
private:
- QPushButton _button;
- QPixmap _pixmaps[Nb_Pixmap_Types];
- QPixmap _advised[Nb_Advised];
+ TQPushButton _button;
+ TQPixmap _pixmaps[Nb_Pixmap_Types];
+ TQPixmap _advised[Nb_Advised];
- void drawPixmap(QPixmap &, PixmapType, bool mask) const;
- void drawAdvised(QPixmap &, uint i, bool mask) const;
- void initPixmap(QPixmap &, bool mask) const;
+ void drawPixmap(TQPixmap &, PixmapType, bool mask) const;
+ void drawAdvised(TQPixmap &, uint i, bool mask) const;
+ void initPixmap(TQPixmap &, bool mask) const;
};
#endif