Robert Bieber | 1423874 | 2010-07-10 06:43:50 +0000 | [diff] [blame] | 1 | /*************************************************************************** |
| 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 Bieber | bae1836 | 2010-07-12 05:33:14 +0000 | [diff] [blame] | 28 | #include "devicestate.h" |
Robert Bieber | 1423874 | 2010-07-10 06:43:50 +0000 | [diff] [blame] | 29 | |
| 30 | class RBTouchArea : public QGraphicsItem |
| 31 | { |
| 32 | public: |
| 33 | RBTouchArea(int width, int height, QString action, |
Robert Bieber | 5c47872 | 2011-03-20 04:20:13 +0000 | [diff] [blame] | 34 | const RBRenderInfo& info, QGraphicsItem* parent = 0); |
Robert Bieber | 1423874 | 2010-07-10 06:43:50 +0000 | [diff] [blame] | 35 | virtual ~RBTouchArea(); |
| 36 | |
| 37 | QRectF boundingRect() const; |
| 38 | void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, |
| 39 | QWidget *widget); |
| 40 | |
Robert Bieber | bae1836 | 2010-07-12 05:33:14 +0000 | [diff] [blame] | 41 | void mousePressEvent(QGraphicsSceneMouseEvent *event); |
Robert Bieber | 1423874 | 2010-07-10 06:43:50 +0000 | [diff] [blame] | 42 | |
| 43 | private: |
| 44 | QRectF size; |
| 45 | QString action; |
Robert Bieber | bae1836 | 2010-07-12 05:33:14 +0000 | [diff] [blame] | 46 | DeviceState* device; |
Robert Bieber | 1423874 | 2010-07-10 06:43:50 +0000 | [diff] [blame] | 47 | bool debug; |
| 48 | }; |
| 49 | |
| 50 | #endif // RBTOUCHAREA_H |