blob: 91d9ef24ac60b11859f600500656e9f4d27797a7 [file] [log] [blame]
Robert Bieber14238742010-07-10 06:43:50 +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 RBTOUCHAREA_H
23#define RBTOUCHAREA_H
24
25#include <QGraphicsItem>
26
27#include "rbrenderinfo.h"
Robert Bieberbae18362010-07-12 05:33:14 +000028#include "devicestate.h"
Robert Bieber14238742010-07-10 06:43:50 +000029
30class RBTouchArea : public QGraphicsItem
31{
32public:
33 RBTouchArea(int width, int height, QString action,
Robert Bieber5c478722011-03-20 04:20:13 +000034 const RBRenderInfo& info, QGraphicsItem* parent = 0);
Robert Bieber14238742010-07-10 06:43:50 +000035 virtual ~RBTouchArea();
36
37 QRectF boundingRect() const;
38 void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
39 QWidget *widget);
40
Robert Bieberbae18362010-07-12 05:33:14 +000041 void mousePressEvent(QGraphicsSceneMouseEvent *event);
Robert Bieber14238742010-07-10 06:43:50 +000042
43private:
44 QRectF size;
45 QString action;
Robert Bieberbae18362010-07-12 05:33:14 +000046 DeviceState* device;
Robert Bieber14238742010-07-10 06:43:50 +000047 bool debug;
48};
49
50#endif // RBTOUCHAREA_H