#include <kled.h>
Public Types | |
| enum | State |
| LED on/off. More... | |
| enum | Shape |
| LED shape. More... | |
| enum | Look |
| LED look. More... | |
Public Slots | |
| void | toggle () |
| void | on () |
| void | off () |
Public Methods | |
| KLed (QWidget *parent=0, const char *name=0) | |
| KLed (const QColor &col=Qt::green, QWidget *parent=0, const char *name=0) | |
| Constructor. | |
| KLed (const QColor &col, KLed::State st, KLed::Look look, KLed::Shape shape, QWidget *parent=0, const char *name=0) | |
| Constructor. | |
| ~KLed () | |
| Destructor. | |
| State | state () const |
| Returns LED state. | |
| QColor | color () const |
| Returns LED color. | |
| Look | look () const |
| Returns LED look. | |
| int | darkFactor () const |
| Returns dark factor. | |
| void | setState (State state) |
| Set LED state. | |
| void | setShape (Shape s) |
| void | toggleState () |
| Toggles LED on->off / off->on. | |
| void | setColor (const QColor &color) |
| Sets the LED color. | |
| void | setDarkFactor (int darkfactor) |
| sets the factor to darken the LED. | |
| void | setLook (Look look) |
| Sets the light and dark LED color. Sets LED look. | |
Protected Methods | |
| virtual void | paintFlat () |
| virtual void | paintRound () |
| virtual void | paintSunken () |
| virtual void | paintRect () |
| virtual void | paintRectFrame (bool raised) |
| void | paintEvent (QPaintEvent *) |
Displays a round or rectangular light emitting diode.
It is configurable to five colors, the two on/off states and three styles (or "looks");
It may display itself in a performant flat view, a round view with light spot or a round view sunken in the screen.
Definition at line 41 of file kled.h.
|
|
LED look. Displays a flat, round or sunken LED. Displaying the LED flat is less time and color consuming, but not so nice to see. The sunken LED itself is (certainly) smaller than the round LED because of the 3 shading circles and is most time consuming. Makes sense for LED > 15x15 pixels. @sect Timings: ( AMD K5/133, Diamond Stealth 64 PCI Graphics, widgetsize 29x29 )
|
|
|
LED shape. Shades of the lamp. |
|
|
LED on/off. Status of the light is on/off. |
|
||||||||||||
|
Constructs a green, round LED widget which will initially be turned on. |
|
||||||||||||||||
|
Constructor. Constructor with the ledcolor, the parent widget, and the name. The State will be defaulted On and the Look round.
|
|
||||||||||||||||||||||||||||
|
Constructor. Constructor with the ledcolor, ledstate, ledlook, the parent widget, and the name. Differs from above only in the parameters, which configure all settings.
|
|
|
Destructor. Destructor |
|
|
Returns LED color. Returns the color of the widget
|
|
|
Returns dark factor. Returns the factor to darken the LED.
|
|
|
Returns LED look. Returns the look of the widget.
|
|
|
Sets the state of the widget to Off. The widget will be painted immediately.
|
|
|
Sets the state of the widget to On. The widget will be painted immediately.
|
|
|
@reimplemented |
|
|
Paints a circular, flat LED. |
|
|
Paints a rectangular, flat LED. |
|
|
Paints a rectangular LED, either raised or sunken, depending on its argument. |
|
|
Paints a circular, raised LED. |
|
|
Paints a circular, sunken LED. |
|
|
Sets the LED color. Set the color of the widget. The Color is shown with the KLed::On state. The KLed::Off state is shown with QColor.dark() method The widget calls the update() method, so it will be updated when entering the main event loop.
|
|
|
sets the factor to darken the LED. Sets the factor to darken the LED in OFF state. Same as QColor::dark(). "darkfactor should be greater than 100, else the LED gets lighter in OFF state. Defaults to 300.
|
|
|
Sets the light and dark LED color. Sets LED look. Sets the look of the widget. The look may be flat, round or sunken. The widget calls the update() method, so it will be updated when entering the main event loop.
|
|
|
Set the shape of the LED to |
|
|
Set LED state. Sets the state of the widget to On or Off. The widget will be painted immediately.
|
|
|
Returns LED state. Returns the current state of the widget (on/off).
|
|
|
Toggles the state of the led from Off to On or vice versa. The widget repaints itself immediately. |
|
|
Toggles LED on->off / off->on. Toggle the state of the LED from Off to On and vice versa. The widget will be repainted when returning to the main event loop.
|
1.2.18