/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ /* Rosegarden A MIDI and audio sequencer and musical notation editor. Copyright 2000-2011 the Rosegarden development team. This file is based on KLed from the KDE libraries Copyright (C) 1998 Jörg Habenicht (j.habenicht@europemail.com) Other copyrights also apply to some parts of this work. Please see the AUTHORS file and individual file headers for details. 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 2 of the License, or (at your option) any later version. See the file COPYING included with this distribution for more information. */ #ifndef _LED_H_ #define _LED_H_ #include class QColor; namespace Rosegarden { class Led : public QWidget { Q_OBJECT Q_ENUMS( State ) Q_PROPERTY( State state READ state WRITE setState ) Q_PROPERTY( QColor color READ color WRITE setColor ) Q_PROPERTY( int darkFactor READ darkFactor WRITE setDarkFactor ) public: enum State { Off, On }; Led(const QColor &col, QWidget *parent=0); ~Led(); State state() const; QColor color() const; int darkFactor() const; void setState( State state ); void setColor(const QColor& color); void setDarkFactor(int darkfactor); virtual QSize sizeHint() const; virtual QSize minimumSizeHint() const; public slots: void toggle(); void on(); void off(); protected: void paintEvent(QPaintEvent *); bool paintCachedPixmap(); private: State led_state; QColor led_color; private: class LedPrivate; LedPrivate *d; }; } #endif