summaryrefslogtreecommitdiffstats
path: root/examples/draganddrop/puzzle/puzzlewidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/draganddrop/puzzle/puzzlewidget.h')
-rw-r--r--examples/draganddrop/puzzle/puzzlewidget.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/draganddrop/puzzle/puzzlewidget.h b/examples/draganddrop/puzzle/puzzlewidget.h
index e0356b48fd..2cc789c292 100644
--- a/examples/draganddrop/puzzle/puzzlewidget.h
+++ b/examples/draganddrop/puzzle/puzzlewidget.h
@@ -57,9 +57,12 @@ class PuzzleWidget : public QWidget
Q_OBJECT
public:
- PuzzleWidget(QWidget *parent = 0);
+ PuzzleWidget(int imageSize, QWidget *parent = 0);
void clear();
+ int pieceSize() const;
+ int imageSize() const;
+
signals:
void puzzleCompleted();
@@ -80,6 +83,7 @@ private:
QList<QPoint> pieceLocations;
QRect highlightedRect;
int inPlace;
+ int m_ImageSize;
};
#endif