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
@@ -25,8 +25,11 @@
25#include <qtableview.h> 25#include <qtableview.h>
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
32{ 35{
@@ -37,6 +40,8 @@ class PiecesTable : public QTableView
37 ~PiecesTable(); 40 ~PiecesTable();
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();
42 47
@@ -46,6 +51,7 @@ class PiecesTable : public QTableView
46 51
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();
51 void randomizeMap(); 57 void randomizeMap();
@@ -53,13 +59,19 @@ class PiecesTable : public QTableView
53 void readConfig(); 59 void readConfig();
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 };
65}; 77};
@@ -75,6 +87,7 @@ private:
75 PiecesTable *_table; 87 PiecesTable *_table;
76}; 88};
77 89
90
78class FifteenMainWindow : public QMainWindow 91class FifteenMainWindow : public QMainWindow
79{ 92{
80 Q_OBJECT 93 Q_OBJECT