Changed media player to initialize in boot.
[jspeed] / src / imageelement.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 IMAGELEMENT_H
20 #define IMAGELEMENT_H
21
22 #include "graphicselement.h"
23 #include "location.h"
24
25 class QString;
26 class QGraphicsPixmapItem;
27 class QGraphicsItem;
28 class Reader;
29 class GraphicsScene;
30
31 class ImageElement : public GraphicsElement
32 {
33 public:
34     enum Attribute {XPOS, YPOS, ZPOS, VISIBLEWHEN, SRC, WIDTH, HEIGHT, ATTRIBUTE_COUNT};
35     ImageElement(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     bool loadImage(QString const& name);
43     QGraphicsPixmapItem* element_;
44     QPixmap pixmap_;
45     int width_;
46     int height_;
47     bool imageSet_;
48 };
49
50 #endif