blob: 69686098ed98951de4c4951c0fc54fa98cf9bd60 [file] [log] [blame]
Robert Bieber97427042010-07-02 00:20:36 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2010 Robert Bieber
11 *
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.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#ifndef RBPROGRESSBAR_H
23#define RBPROGRESSBAR_H
24
25#include <QGraphicsItem>
26#include <QPixmap>
27
Robert Bieberf657e492010-08-05 08:49:34 +000028#include "rbmovable.h"
Robert Bieber97427042010-07-02 00:20:36 +000029#include "rbrenderinfo.h"
30#include "rbviewport.h"
31#include "devicestate.h"
32#include "skin_parser.h"
33
Robert Bieberc5025c72010-08-05 19:05:36 +000034class ParseTreeNode;
35
Robert Bieberf657e492010-08-05 08:49:34 +000036class RBProgressBar : public RBMovable
Robert Bieber97427042010-07-02 00:20:36 +000037{
38public:
39 RBProgressBar(RBViewport* parent, const RBRenderInfo& info,
Robert Bieberc5025c72010-08-05 19:05:36 +000040 ParseTreeNode* node, bool pv = 0);
Robert Bieber97427042010-07-02 00:20:36 +000041 virtual ~RBProgressBar();
42
Robert Bieber97427042010-07-02 00:20:36 +000043 void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
44 QWidget *widget);
45
Robert Bieberf657e492010-08-05 08:49:34 +000046protected:
47 void saveGeometry();
48
Robert Bieber97427042010-07-02 00:20:36 +000049private:
50 QPixmap* bitmap;
51 QColor color;
Robert Bieberc5025c72010-08-05 19:05:36 +000052 QRectF renderSize;
53
54 ParseTreeNode* node;
Robert Bieber97427042010-07-02 00:20:36 +000055
56};
57
58#endif // RBPROGRESSBAR_H