save game query on exit if game is incomplete
[impuzzle] / src / puzzleitem.h
1 /*
2   Image Puzzle - A set your pieces straight game
3   Copyright (C) 2009  Timo Härkönen
4
5   This program is free software: you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation, either version 3 of the License, or
8   (at your option) any later version.
9
10   This program is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14
15   You should have received a copy of the GNU General Public License
16   along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #ifndef PUZZLEITEM_H
20 #define PUZZLEITEM_H
21
22 #include <QGraphicsPixmapItem>
23 #include <QObject>
24
25 class QPropertyAnimation;
26
27 class PuzzleItem : public QObject, public QGraphicsPixmapItem
28 {
29     Q_OBJECT
30     Q_PROPERTY(QPointF pos READ pos WRITE setPos)
31
32 public:
33     PuzzleItem(QGraphicsItem *parent = 0);
34     QPointF correctPlace() const;
35     QPointF currentPlace() const;
36     void setCorrectPlace(const QPointF &place);
37     void setCurrentPlace(const QPointF &place);
38     bool movable() const;
39     void setMovable(bool canMove);
40     void moveMeTo(const QPointF &location);
41     static int moveCount();
42     static void setMoveCount(const int count);
43     static void resetMoveCount();
44     static void setManuallyMovable(const bool manuallyMovable);
45     void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
46     void setPieceNumber(const int pieceNumber);
47     int pieceNumber() const;
48     void setDrawNumber(bool value);
49     bool drawNumber() const;
50
51 protected:
52     void mousePressEvent(QGraphicsSceneMouseEvent *event);
53     void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
54
55 private:
56     QPointF correctPlace_;
57     QPointF currentPlace_;
58     bool movable_;
59     QPropertyAnimation *moveAnimation_;
60     static int moveCount_;
61     static bool manuallyMovable_;
62     int pieceNumber_;
63     bool drawNumber_;
64 };
65 #endif