summaryrefslogtreecommitdiff
path: root/libopie/oclickablelabel.h
Unidiff
Diffstat (limited to 'libopie/oclickablelabel.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/oclickablelabel.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/libopie/oclickablelabel.h b/libopie/oclickablelabel.h
new file mode 100644
index 0000000..f65c440
--- a/dev/null
+++ b/libopie/oclickablelabel.h
@@ -0,0 +1,30 @@
1#ifndef CLICKABLELABEL
2#define CLICKABLELABEL
3
4#include <qlabel.h>
5
6class OClickableLabel: public QLabel
7{
8 Q_OBJECT
9public:
10 OClickableLabel(QWidget* parent = 0, const char* name = 0,
11 WFlags fl = 0);
12 void setToggleButton(bool t);
13 protected:
14 void mousePressEvent( QMouseEvent *e );
15 void mouseReleaseEvent( QMouseEvent *e );
16 void mouseMoveEvent( QMouseEvent *e );
17 public slots:
18 void setOn(bool on);
19 signals:
20 void clicked();
21 void toggled(bool on);
22 private:
23 bool isToggle;
24 bool isDown;
25 void showState(bool on);
26 bool textInverted;
27 void setInverted(bool on);
28};
29
30#endif