0fb58276862615bb6e161196a4fa3372222b36bf
[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
42 protected:
43     void mousePressEvent(QGraphicsSceneMouseEvent *event);
44     void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
45
46 private:
47     QPointF correctPlace_;
48     QPointF currentPlace_;
49     bool movable_;
50     QPropertyAnimation *moveAnimation_;
51 };
52 #endif