summaryrefslogtreecommitdiff
path: root/noncore/games/kcheckers/field.h
Side-by-side diff
Diffstat (limited to 'noncore/games/kcheckers/field.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/kcheckers/field.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/noncore/games/kcheckers/field.h b/noncore/games/kcheckers/field.h
new file mode 100644
index 0000000..d929e49
--- a/dev/null
+++ b/noncore/games/kcheckers/field.h
@@ -0,0 +1,27 @@
+
+#ifndef FIELD_H
+#define FIELD_H
+
+#include <qwidget.h>
+#include <qpixmap.h>
+
+#define SIZE 28
+
+class Field:public QWidget
+{
+ Q_OBJECT
+ public:
+ Field(QWidget*,int);
+ void draw(QImage*);
+ signals:
+ void click(int);
+ protected:
+ void paintEvent(QPaintEvent*);
+ void mousePressEvent(QMouseEvent*);
+ private:
+ int number;
+ QPixmap *pixmap;
+
+};
+
+#endif