summaryrefslogtreecommitdiff
path: root/noncore/styles/liquid/liquidset.h
Unidiff
Diffstat (limited to 'noncore/styles/liquid/liquidset.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/styles/liquid/liquidset.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/styles/liquid/liquidset.h b/noncore/styles/liquid/liquidset.h
index 6d9555a..a54cc13 100644
--- a/noncore/styles/liquid/liquidset.h
+++ b/noncore/styles/liquid/liquidset.h
@@ -1,37 +1,37 @@
1#ifndef __OPIE_LIQUID_SET_H__ 1#ifndef __OPIE_LIQUID_SET_H__
2#define __OPIE_LIQUID_SET_H__ 2#define __OPIE_LIQUID_SET_H__
3 3
4#include <qdialog.h> 4#include <qdialog.h>
5#include <qcolor.h> 5#include <qcolor.h>
6 6
7class QLabel; 7class QLabel;
8class OColorButton; 8namespace Opie {class OColorButton;}
9class QSlider; 9class QSlider;
10 10
11class LiquidSettings : public QWidget { 11class LiquidSettings : public QWidget {
12 Q_OBJECT 12 Q_OBJECT
13 13
14public: 14public:
15 LiquidSettings ( QWidget *parent = 0, const char *name = 0, WFlags fl = 0 ); 15 LiquidSettings ( QWidget *parent = 0, const char *name = 0, WFlags fl = 0 );
16 16
17public slots: 17public slots:
18 void changeType ( int t ); 18 void changeType ( int t );
19 void changeShadow ( bool b ); 19 void changeShadow ( bool b );
20 void changeFlat ( bool b ); 20 void changeFlat ( bool b );
21 21
22 virtual bool writeConfig ( ); 22 virtual bool writeConfig ( );
23 23
24private: 24private:
25 int m_type; 25 int m_type;
26 bool m_shadow; 26 bool m_shadow;
27 bool m_flat; 27 bool m_flat;
28 28
29 QSlider * m_opacsld; 29 QSlider * m_opacsld;
30 QSlider * m_contsld; 30 QSlider * m_contsld;
31 QLabel * m_menulbl; 31 QLabel * m_menulbl;
32 QLabel * m_textlbl; 32 QLabel * m_textlbl;
33 QLabel * m_opaclbl; 33 QLabel * m_opaclbl;
34 OColorButton *m_menubtn; 34 Opie::OColorButton *m_menubtn;
35 OColorButton *m_textbtn; 35 Opie::OColorButton *m_textbtn;
36}; 36};
37#endif 37#endif