1ee85f2fcd0bd66a2f33b5d031bdb5f5eb073033
[kugel-rb.git] / utils / themeeditor / graphics / rbviewport.h
blob1ee85f2fcd0bd66a2f33b5d031bdb5f5eb073033
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 RBVIEWPORT_H
23 #define RBVIEWPORT_H
25 #include "skin_parser.h"
26 #include "rbfont.h"
28 class RBScreen;
29 class RBRenderInfo;
31 #include <QGraphicsItem>
33 class RBViewport : public QGraphicsItem
35 public:
36 RBViewport(skin_element* node, const RBRenderInfo& info);
37 virtual ~RBViewport();
39 QPainterPath shape() const;
40 QRectF boundingRect() const;
41 void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
42 QWidget *widget);
44 void setBGColor(QColor color){ background = color; }
45 void setFGColor(QColor color){ foreground = color; }
46 void makeCustomUI(){ customUI = true; }
47 void clearCustomUI(){ customUI = false; }
49 void newLine();
50 void write(QString text);
52 private:
54 QRectF size;
55 RBFont* font;
56 QColor foreground;
57 QColor background;
59 bool customUI;
60 QPoint textOffset;
61 int lineHeight;
63 RBScreen* screen;
66 #endif // RBVIEWPORT_H