Theme Editor: Added rendering support for some more tags
[kugel-rb.git] / utils / themeeditor / graphics / rbscreen.h
blob51fa32cee39c219b4d514fe44ae15fb829823f47
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"
31 class RBViewport;
33 class RBScreen : public QGraphicsItem
36 public:
37 RBScreen(const RBRenderInfo& info, QGraphicsItem *parent = 0);
38 virtual ~RBScreen();
40 QPainterPath shape() const;
41 QRectF boundingRect() const;
42 void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
43 QWidget *widget);
45 int getWidth() const{ return width; }
46 int getHeight() const{ return height; }
48 void loadViewport(QString name, RBViewport* view)
50 namedViewports.insert(name, view);
52 void showViewport(QString name);
54 void loadImage(QString name, RBImage* image)
56 images.insert(name, image);
57 image->hide();
59 RBImage* getImage(QString name){ return images.value(name, 0); }
61 void setBackdrop(QString filename);
62 void makeCustomUI(QString id);
64 static QColor stringToColor(QString str, QColor fallback);
67 private:
68 int width;
69 int height;
70 QColor bgColor;
71 QColor fgColor;
72 QPixmap* backdrop;
73 QString themeBase;
75 ProjectModel* project;
77 QMap<QString, RBViewport*> namedViewports;
78 QMap<QString, RBImage*> images;
79 QMap<QString, QString>* settings;
83 #endif // RBSCREEN_H