kopia lustrzana https://gitlab.com/Teuniz/DSRemote
69 wiersze
1.6 KiB
C
69 wiersze
1.6 KiB
C
![]() |
/*
|
||
|
***************************************************************************
|
||
|
*
|
||
|
* Author: Teunis van Beelen
|
||
|
*
|
||
|
* Copyright (C) 2014, 2015 Teunis van Beelen
|
||
|
*
|
||
|
* Email: teuniz@gmail.com
|
||
|
*
|
||
|
***************************************************************************
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*
|
||
|
***************************************************************************
|
||
|
*/
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#ifndef TLED_H
|
||
|
#define TLED_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <QPainter>
|
||
|
|
||
|
|
||
|
|
||
|
class TLed: public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
TLed(QWidget *parent=0);
|
||
|
|
||
|
bool getValue() const { return value; }
|
||
|
QColor getOnColor() const {return OnColor; }
|
||
|
QColor getOffColor() const {return OffColor; }
|
||
|
QSize sizeHint() const {return minimumSizeHint(); }
|
||
|
QSize minimumSizeHint() const {return QSize(20,20); }
|
||
|
|
||
|
public slots:
|
||
|
void setValue(bool);
|
||
|
void setOnColor(QColor);
|
||
|
void setOffColor(QColor);
|
||
|
|
||
|
protected:
|
||
|
void paintEvent(QPaintEvent *);
|
||
|
QColor OnColor,OffColor;
|
||
|
bool value;
|
||
|
void drawLed(QPainter *painter);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|