...
[jspeed] / src / rectangle.h
1 /*
2  * This file is part of jSpeed.
3  *
4  * jSpeed is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * jSpeed is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with jSpeed.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  */
18
19 #ifndef RECTANGLE_H
20 #define RECTANGLE_H
21
22 #include "graphicselement.h"
23 #include "location.h"
24
25 class QString;
26 class QGraphicsRectItem;
27 class QGraphicsItem;
28 class Reader;
29 class GraphicsScene;
30
31 class Rectangle : public GraphicsElement
32 {
33 public:
34     enum Attribute {XPOS, YPOS, ZPOS, VISIBLEWHEN, WIDTH, HEIGHT, COLOR, ATTRIBUTE_COUNT};
35     Rectangle(Reader* reader);
36     virtual bool setAttribute(QString const& name, QString const& value);
37     virtual void addToScene(GraphicsScene* scene);
38     virtual void update();
39     virtual QGraphicsItem* getElement() const;
40
41 private:
42     QGraphicsRectItem* element_;
43     int x_;
44     int y_;
45     int width_;
46     int height_;
47 };
48
49 #endif