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
@@ -26,6 +26,9 @@
26#include <qarray.h> 26#include <qarray.h>
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
31class PiecesTable : public QTableView 34class PiecesTable : public QTableView
@@ -38,4 +41,6 @@ class PiecesTable : public QTableView
38 41
39 protected slots: 42 protected slots:
43 void slotConfigure();
44 void slotCustomImage(const QString &str, bool upd = false);
40 void slotRandomize(); 45 void slotRandomize();
41 void slotReset(); 46 void slotReset();
@@ -47,4 +52,5 @@ class PiecesTable : public QTableView
47 void paintCell(QPainter *, int row, int col); 52 void paintCell(QPainter *, int row, int col);
48 53
54 void initImage();
49 void initMap(); 55 void initMap();
50 void initColors(); 56 void initColors();
@@ -54,11 +60,17 @@ class PiecesTable : public QTableView
54 void writeConfig(); 60 void writeConfig();
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
64 enum MenuOp { mRandomize = 1, mReset = 2 }; 76 enum MenuOp { mRandomize = 1, mReset = 2 };
@@ -76,4 +88,5 @@ private:
76}; 88};
77 89
90
78class FifteenMainWindow : public QMainWindow 91class FifteenMainWindow : public QMainWindow
79{ 92{