95a110a4d5f4723210fbb4a20ae80f1b9c058dbc
[kugel-rb.git] / utils / themeeditor / graphics / rbscreen.h
blob95a110a4d5f4723210fbb4a20ae80f1b9c058dbc
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2010 Robert Bieber
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef RBSCREEN_H
23 #define RBSCREEN_H
25 #include <QGraphicsItem>
27 #include "projectmodel.h"
28 #include "rbrenderinfo.h"
29 #include "rbimage.h"
30 #include "rbfont.h"
32 class RBViewport;
34 class RBScreen : public QGraphicsItem
37 public:
38 RBScreen(const RBRenderInfo& info, QGraphicsItem *parent = 0);
39 virtual ~RBScreen();
41 QPainterPath shape() const;
42 QRectF boundingRect() const;
43 void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
44 QWidget *widget);
46 int getWidth() const{ return width; }
47 int getHeight() const{ return height; }
49 void loadViewport(QString name, RBViewport* view)
51 namedViewports.insert(name, view);
53 void showViewport(QString name);
55 void loadImage(QString name, RBImage* image)
57 images.insert(name, image);
58 image->hide();
60 RBImage* getImage(QString name){ return images.value(name, 0); }
62 void loadFont(int id, RBFont* font);
63 RBFont* getFont(int id);
65 void setBackdrop(QString filename);
66 void makeCustomUI(QString id);
68 static QColor stringToColor(QString str, QColor fallback);
71 private:
72 int width;
73 int height;
74 QColor bgColor;
75 QColor fgColor;
76 QPixmap* backdrop;
77 QString themeBase;
79 ProjectModel* project;
81 QMap<QString, RBViewport*> namedViewports;
82 QMap<QString, RBImage*> images;
83 QMap<QString, QString>* settings;
84 QMap<int, RBFont*> fonts;
88 #endif // RBSCREEN_H