From c94b8aee4873dc382d3fe2673c7ac1db7080fe0e Mon Sep 17 00:00:00 2001 From: zecke Date: Sat, 24 Jul 2004 15:02:13 +0000 Subject: Custom Image as the background for the board tiles. This is later needed for the puzzle game mode --- (limited to 'noncore/games/fifteen/fifteen.h') 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 @@ #include #include #include +#include +#include class QPopupMenu; +class FifteenConfigDialog; class PiecesTable : public QTableView { @@ -37,6 +40,8 @@ class PiecesTable : public QTableView ~PiecesTable(); protected slots: + void slotConfigure(); + void slotCustomImage(const QString &str, bool upd = false); void slotRandomize(); void slotReset(); @@ -46,6 +51,7 @@ class PiecesTable : public QTableView void paintCell(QPainter *, int row, int col); + void initImage(); void initMap(); void initColors(); void randomizeMap(); @@ -53,13 +59,19 @@ class PiecesTable : public QTableView void readConfig(); void writeConfig(); + void initPolygon(int w, int h, int x_of, int y_of ); private: + void clear(); + QString _image; QArray _map; QArray _colors; + QArray _pixmap; + QPopupMenu *_menu; - bool _randomized; + bool _randomized; QPointArray light_border; QPointArray dark_border; + FifteenConfigDialog *_dialog; enum MenuOp { mRandomize = 1, mReset = 2 }; }; @@ -75,6 +87,7 @@ private: PiecesTable *_table; }; + class FifteenMainWindow : public QMainWindow { Q_OBJECT -- cgit v0.9.0.2