summaryrefslogtreecommitdiffstats
path: root/tdeui/kled.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:40 -0600
commite16866e072f94410321d70daedbcb855ea878cac (patch)
treeee3f52eabde7da1a0e6ca845fb9c2813cf1558cf /tdeui/kled.h
parenta58c20c1a7593631a1b50213c805507ebc16adaf (diff)
downloadtdelibs-e16866e072f94410321d70daedbcb855ea878cac.tar.gz
tdelibs-e16866e072f94410321d70daedbcb855ea878cac.zip
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'tdeui/kled.h')
-rw-r--r--tdeui/kled.h329
1 files changed, 329 insertions, 0 deletions
diff --git a/tdeui/kled.h b/tdeui/kled.h
new file mode 100644
index 000000000..4e95705e0
--- /dev/null
+++ b/tdeui/kled.h
@@ -0,0 +1,329 @@
+/* This file is part of the KDE libraries
+ Copyright (C) 1998 Jörg Habenicht (j.habenicht@europemail.com)
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library 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
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301, USA.
+*/
+/*************************************************************************
+ * $Id$
+ *************************************************************************/
+
+#ifndef _KLED_H_
+#define _KLED_H_
+
+#include <tqwidget.h>
+#include <kdelibs_export.h>
+
+class TQColor;
+/**
+ * @short An LED widget.
+ *
+ * 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.
+ *
+ * \image html kled.png "KDE LED Widget"
+ *
+ * @author Joerg Habenicht, Richard J. Moore (rich@kde.org) 1998, 1999
+ */
+class KDEUI_EXPORT KLed : public TQWidget
+{
+ Q_OBJECT
+ Q_ENUMS( State Shape Look )
+ Q_PROPERTY( State state READ state WRITE setState )
+ Q_PROPERTY( Shape tqshape READ tqshape WRITE setShape )
+ Q_PROPERTY( Look look READ look WRITE setLook )
+ Q_PROPERTY( TQColor color READ color WRITE setColor )
+ Q_PROPERTY( int darkFactor READ darkFactor WRITE setDarkFactor )
+
+public:
+
+ /**
+ * Status of the light is on/off.
+ * @short LED on/off.
+ */
+ enum State { Off, On };
+
+ /**
+ * Shades of the lamp.
+ * @short LED tqshape
+ */
+ enum Shape { Rectangular, Circular };
+
+ /**
+ * 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.
+ *
+ * \b Timings: \n
+ * ( AMD K5/133, Diamond Stealth 64 PCI Graphics, widgetsize 29x29 )
+ * @li flat Approximately 0.7 msec per paint
+ * @li round Approximately 2.9 msec per paint
+ * @li sunken Approximately 3.3 msec per paint
+ *
+ * The widget will be updated on the next repaining event.
+ *
+ * @short LED look.
+ */
+ enum Look { Flat, Raised, Sunken };
+
+ /**
+ * Constructs a green, round LED widget which will initially
+ * be turned on.
+ */
+ KLed(TQWidget *parent=0, const char *name=0);
+ /**
+ * Constructor with the ledcolor, the parent widget, and the name.
+ *
+ * The State will be defaulted On and the Look round.
+ *
+ * @param col Initial color of the LED.
+ * @param parent Will be handed over to TQWidget.
+ * @param name Will be handed over to TQWidget.
+ * @short Constructor
+ */
+ KLed(const TQColor &col, TQWidget *parent=0, const char *name=0);
+
+ /**
+ * Constructor with the ledcolor, ledstate, ledlook,
+ * the parent widget, and the name.
+ *
+ * Differs from above only in the parameters, which configure all settings.
+ *
+ * @param col Initial color of the LED.
+ * @param state Sets the State.
+ * @param look Sets the Look.
+ * @param tqshape Sets the Shape (rectangular or circular)
+ * @param parent Will be handed over to TQWidget.
+ * @param name Will be handed over to TQWidget.
+ * @short Constructor
+ */
+ KLed(const TQColor& col, KLed::State state, KLed::Look look, KLed::Shape tqshape,
+ TQWidget *parent=0, const char *name=0);
+
+
+ /**
+ * Destructor
+ * @short Destructor
+ */
+ ~KLed();
+
+ /**
+ * Returns the current state of the widget (on/off).
+ *
+ * @see State
+ * @short Returns LED state.
+ */
+ State state() const;
+
+ Shape tqshape() const;
+
+ /**
+ * Returns the color of the widget
+ *
+ * @see Color
+ * @short Returns LED color.
+ */
+ TQColor color() const;
+
+ /**
+ * Returns the look of the widget.
+ *
+ * @see Look
+ * @short Returns LED look.
+ */
+ Look look() const;
+
+ /**
+ * Returns the factor to darken the LED.
+ *
+ * @see setDarkFactor()
+ * @short Returns dark factor
+ */
+ int darkFactor() const;
+
+ /**
+ * Sets the state of the widget to On or Off.
+ *
+ * The widget will be painted immediately.
+ * @see on() off() toggle() toggleState()
+ *
+ * @param state The LED state: on or off.
+ * @short Set LED state.
+ */
+ void setState( State state );
+
+ /**
+ * Set the tqshape of the LED to @p s.
+ */
+ void setShape(Shape s);
+ /**
+ * 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.
+ * @short Toggles LED on->off / off->on.
+ * @deprecated, use #toggle() instead.
+ */
+ void toggleState() KDE_DEPRECATED;
+
+ /**
+ * Set the color of the widget.
+ * The Color is shown with the KLed::On state.
+ * The KLed::Off state is shown with TQColor.dark() method
+ *
+ * The widget calls the update() method, so it will
+ * be updated when entering the main event loop.
+ *
+ * @see Color
+ *
+ * @param color New color of the LED.
+ * @short Sets the LED color.
+ */
+ void setColor(const TQColor& color);
+
+ /**
+ * Sets the factor to darken the LED in OFF state.
+ * Same as TQColor::dark().
+ * "darkfactor should be greater than 100, else the LED gets lighter
+ * in OFF state.
+ * Defaults to 300.
+ *
+ * @see QColor
+ *
+ * @param darkfactor sets the factor to darken the LED.
+ * @short sets the factor to darken the LED.
+ */
+ void setDarkFactor(int darkfactor);
+
+ /**
+ * Sets the color of the widget.
+ * The Color is shown with the KLed::On state.
+ * darkcolor is explicidly used for the off state of the LED.
+ * Normally you don't have to use this method, the setColor(const TQColor& color) is sufficient for the task.
+ *
+ * The widget calls the update() method, so it will
+ * be updated when entering the main event loop.
+ *
+ * @see Color setColor()
+ *
+ * @param color New color of the LED used for on state.
+ * @param darkcolor Dark color of the LED used for off state.
+ * @short Sets the light and dark LED color.
+ *
+ void setColor(const TQColor& color, const TQColor& darkcolor);
+ */
+
+ /**
+ * 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.
+ *
+ * @see Look
+ *
+ * @param look New look of the LED.
+ * @short Sets LED look.
+ */
+ void setLook( Look look );
+
+ virtual TQSize tqsizeHint() const;
+ virtual TQSize tqminimumSizeHint() const;
+
+public slots:
+
+ /**
+ * Toggles the state of the led from Off to On or vice versa.
+ *
+ * The widget repaints itself immediately.
+ */
+ void toggle();
+
+ /**
+ * Sets the state of the widget to On.
+ *
+ * The widget will be painted immediately.
+ * @see off() toggle() toggleState() setState()
+ */
+ void on();
+
+ /**
+ * Sets the state of the widget to Off.
+ *
+ * The widget will be painted immediately.
+ * @see on() toggle() toggleState() setState()
+ */
+ void off();
+
+protected:
+ /**
+ * Paints a circular, flat LED.
+ */
+ virtual void paintFlat();
+ /**
+ * Paints a circular, raised LED.
+ */
+ virtual void paintRound();
+ /**
+ * Paints a circular, sunken LED.
+ */
+ virtual void paintSunken();
+ /**
+ * Paints a rectangular, flat LED.
+ */
+ virtual void paintRect();
+ /**
+ * Paints a rectangular LED, either raised or
+ * sunken, depending on its argument.
+ */
+ virtual void paintRectFrame(bool raised);
+
+ void paintEvent( TQPaintEvent * );
+
+ /**
+ * Compute LED width
+ */
+ int ensureRoundLed();
+
+ /**
+ * Paint the cached antialiased pixmap corresponding to the state if any
+ * @return true if the pixmap was painted, false if it hasn't been created yet
+ */
+ bool paintCachedPixmap();
+
+private:
+ State led_state;
+ TQColor led_color;
+ Look led_look;
+ Shape led_tqshape;
+
+protected:
+ virtual void virtual_hook( int id, void* data );
+private:
+ class KLedPrivate;
+ KLedPrivate *d;
+};
+
+#endif