summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/field.h
Unidiff
Diffstat (limited to 'noncore/games/kbill/field.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/kbill/field.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/noncore/games/kbill/field.h b/noncore/games/kbill/field.h
new file mode 100644
index 0000000..9f355ed
--- a/dev/null
+++ b/noncore/games/kbill/field.h
@@ -0,0 +1,48 @@
1/***************************************************************************
2 field.h - description
3 -------------------
4 begin : Thu Dec 30 1999
5 copyright : (C) 1999 by Jurrien Loonstra
6 email : j.h.loonstra@st.hanze.nl
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
18#ifndef FIELD_H
19#define FIELD_H
20
21#include <qwidget.h>
22#include <qpixmap.h>
23#include <qpainter.h>
24#include <qtimer.h>
25
26class Field : public QWidget {
27 Q_OBJECT
28public:
29 Field(QWidget *parent=0, const char *name=0);
30 ~Field();
31 void stopTimer();
32 void startTimer();
33 void setPixmap(QPixmap *pix);
34protected:
35 void mouseReleaseEvent(QMouseEvent *e);
36 void mousePressEvent(QMouseEvent *e);
37 void enterEvent(QEvent *);
38 void leaveEvent(QEvent *);
39 void paintEvent(QPaintEvent *);
40public slots:
41 void Timer();
42private:
43 QTimer* timer;
44 QPixmap *pix;
45 bool playing;
46};
47
48#endif