summaryrefslogtreecommitdiff
path: root/noncore/styles/liquid/settings/liquidset.h
Unidiff
Diffstat (limited to 'noncore/styles/liquid/settings/liquidset.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/styles/liquid/settings/liquidset.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/noncore/styles/liquid/settings/liquidset.h b/noncore/styles/liquid/settings/liquidset.h
deleted file mode 100644
index a0f590a..0000000
--- a/noncore/styles/liquid/settings/liquidset.h
+++ b/dev/null
@@ -1,42 +0,0 @@
1#ifndef __OPIE_LIQUID_SET_H__
2#define __OPIE_LIQUID_SET_H__
3
4#include <qdialog.h>
5#include <qcolor.h>
6
7class QLabel;
8class QToolButton;
9class QSlider;
10
11class LiquidSet : public QDialog {
12 Q_OBJECT
13
14public:
15 LiquidSet ( QWidget *parent = 0, const char *name = 0, WFlags fl = 0 );
16
17public slots:
18 void changeType ( int t );
19 void changeMenuColor ( const QColor &col );
20 void changeTextColor ( const QColor &col );
21 void changeShadow ( bool b );
22 void changeDeco ( bool b );
23
24protected:
25 virtual void accept ( );
26
27private:
28 QColor m_menucol;
29 QColor m_textcol;
30 int m_type;
31 bool m_shadow;
32 bool m_deco;
33
34 QSlider * m_opacsld;
35 QSlider * m_contsld;
36 QLabel * m_menulbl;
37 QLabel * m_textlbl;
38 QLabel * m_opaclbl;
39 QToolButton *m_menubtn;
40 QToolButton *m_textbtn;
41};
42#endif