Theme Editor: Added Show Viewports option to device configuration panel, implemented...
[kugel-rb.git] / utils / themeeditor / graphics / rbscreen.h
blob25f7c07bd9eabcf6756f11a0a8c07654db408d2e
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, bool remote = false,
39 QGraphicsItem *parent = 0);
40 virtual ~RBScreen();
42 QPainterPath shape() const;
43 QRectF boundingRect() const;
44 void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
45 QWidget *widget);
47 int getWidth() const{ return width; }
48 int getHeight() const{ return height; }
50 void loadViewport(QString name, RBViewport* view);
51 void showViewport(QString name);
53 void loadImage(QString name, RBImage* image)
55 images.insert(name, image);
56 image->hide();
58 RBImage* getImage(QString name){ return images.value(name, 0); }
60 void loadFont(int id, RBFont* font);
61 RBFont* getFont(int id);
63 void setBackdrop(QString filename);
64 bool hasBackdrop(){ return backdrop != 0; }
65 void makeCustomUI(QString id);
67 static QColor stringToColor(QString str, QColor fallback);
69 QColor foreground(){ return fgColor; }
70 QColor background(){ return bgColor; }
73 private:
74 int width;
75 int height;
76 QColor bgColor;
77 QColor fgColor;
78 QPixmap* backdrop;
79 QString themeBase;
81 ProjectModel* project;
83 QMap<QString, QList<RBViewport*>*> namedViewports;
84 QMap<QString, RBImage*> images;
85 QMap<QString, QString>* settings;
86 QMap<int, RBFont*> fonts;
90 #endif // RBSCREEN_H