summaryrefslogtreecommitdiff
path: root/noncore/games/fifteen/fifteen.h
Unidiff
Diffstat (limited to 'noncore/games/fifteen/fifteen.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/fifteen/fifteen.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/noncore/games/fifteen/fifteen.h b/noncore/games/fifteen/fifteen.h
index 58eb756..4b8702d 100644
--- a/noncore/games/fifteen/fifteen.h
+++ b/noncore/games/fifteen/fifteen.h
@@ -27,4 +27,7 @@
27#include <qpointarray.h> 27#include <qpointarray.h>
28#include <qpixmap.h>
29#include <qvector.h>
28 30
29class QPopupMenu; 31class QPopupMenu;
32class FifteenConfigDialog;
30 33
@@ -39,2 +42,4 @@ class PiecesTable : public QTableView
39 protected slots: 42 protected slots:
43 void slotConfigure();
44 void slotCustomImage(const QString &str, bool upd = false);
40 void slotRandomize(); 45 void slotRandomize();
@@ -48,2 +53,3 @@ class PiecesTable : public QTableView
48 53
54 void initImage();
49 void initMap(); 55 void initMap();
@@ -55,9 +61,15 @@ class PiecesTable : public QTableView
55 61
62 void initPolygon(int w, int h, int x_of, int y_of );
56 private: 63 private:
64 void clear();
65 QString _image;
57 QArray<int> _map; 66 QArray<int> _map;
58 QArray<QColor> _colors; 67 QArray<QColor> _colors;
68 QArray<QPixmap*> _pixmap;
69
59 QPopupMenu *_menu; 70 QPopupMenu *_menu;
60 bool _randomized; 71 bool _randomized;
61 QPointArraylight_border; 72 QPointArraylight_border;
62 QPointArraydark_border; 73 QPointArraydark_border;
74 FifteenConfigDialog *_dialog;
63 75
@@ -77,2 +89,3 @@ private:
77 89
90
78class FifteenMainWindow : public QMainWindow 91class FifteenMainWindow : public QMainWindow