X-Git-Url: http://git.maemo.org/git/?p=impuzzle;a=blobdiff_plain;f=src%2Fgameview.h;h=60af5555139cba47259879277a301594377b3f59;hp=f213fe315ca8f967d0b2375103fba71fa9b8d6d3;hb=a27dea60eebff3d5bd0068f31e7d042e8c7d0048;hpb=e90ecb7db7b5d4d22fb08f8053db4423797b5afc diff --git a/src/gameview.h b/src/gameview.h index f213fe3..60af555 100644 --- a/src/gameview.h +++ b/src/gameview.h @@ -23,6 +23,7 @@ class GraphicsScene; class PuzzleItem; +class IntroItem; class GameView : public QGraphicsView { @@ -34,6 +35,7 @@ public: QPointF emptyPlace(); void setEmptyPlace(const QPointF &place); bool areAllPiecesOk() const; + void setMovingPieces(); public slots: void setPieces(const QList pieces); @@ -47,5 +49,9 @@ private: QList pieces_; QPointF emptyPlace_; int hiddenIndex_; + IntroItem *introItem_; + + int verticalStep_; + int horizontalStep_; }; #endif