Added signal and slot for view scaling level change
[situare] / src / ui / pixmap.h
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5        Jukka Saastamoinen - jukka.saastamoinen@ixonos.com
6
7    Situare is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License
9    version 2 as published by the Free Software Foundation.
10
11    Situare is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with Situare; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
19    USA.
20 */
21
22 #ifndef PIXMAP_H
23 #define PIXMAP_H
24
25 #include <QtCore>
26 #include <QtGui>
27
28 /**
29 * @brief Pixmap class.
30 *
31 * General purpose class used to display graphical objects
32 * that can be animated.
33 * @author Jukka Saastamoinen
34 */
35
36 class Pixmap : public QGraphicsObject
37 {
38     Q_OBJECT
39 public:
40     /**
41     * @brief Constructor
42     *
43     * @param Reference to the picture displayed
44     * @param parent Parent
45     */
46     Pixmap(const QPixmap &, QGraphicsObject *parent = 0);
47     /**
48     * @brief Mouse press event
49     *
50     * @param event Mouse event
51     */
52     void mousePressEvent(QGraphicsSceneMouseEvent *event);
53     /**
54     * @brief Bounding box of the drawed pixmap
55     *
56     * @return Rectangle shaped bounding box of the pixmap
57     */
58     QRectF boundingRect() const;
59 protected:
60     /**
61     * @brief Drawer of the given picture
62     *
63     * @param painter Pointer to painting class
64     * @param Pointer to class describing parameters needed to draw the item
65     * @param Pointer to the widget
66     */
67     void paint(QPainter *painter, const QStyleOptionGraphicsItem *, QWidget *);
68 signals:
69     /**
70     * @brief Signal which is emitted when the pixmap
71     * bounding box area is clicked.
72     */
73     void clicked();
74 private:
75     QPixmap p;
76 };
77
78 #endif // PIXMAP_H