summaryrefslogtreecommitdiff
path: root/noncore/styles/liquid/liquidset.cpp
authorsandman <sandman>2002-09-24 23:41:42 (UTC)
committer sandman <sandman>2002-09-24 23:41:42 (UTC)
commitc280cda4ece4a4aa60f4ef2c632d7a37ac08b258 (patch) (unidiff)
tree4ffb3ad85dcc38db907ee589a5811e9c7af591c8 /noncore/styles/liquid/liquidset.cpp
parent3e0fcd45ea0e177deccd5463b2a754d442c03061 (diff)
downloadopie-c280cda4ece4a4aa60f4ef2c632d7a37ac08b258.zip
opie-c280cda4ece4a4aa60f4ef2c632d7a37ac08b258.tar.gz
opie-c280cda4ece4a4aa60f4ef2c632d7a37ac08b258.tar.bz2
Use the new OColorButton
Diffstat (limited to 'noncore/styles/liquid/liquidset.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/styles/liquid/liquidset.cpp44
1 files changed, 9 insertions, 35 deletions
diff --git a/noncore/styles/liquid/liquidset.cpp b/noncore/styles/liquid/liquidset.cpp
index 1b9526f..4fffe12 100644
--- a/noncore/styles/liquid/liquidset.cpp
+++ b/noncore/styles/liquid/liquidset.cpp
@@ -29,3 +29,2 @@
29#include <qslider.h> 29#include <qslider.h>
30#include <qtoolbutton.h>
31#include <qcombobox.h> 30#include <qcombobox.h>
@@ -35,3 +34,2 @@
35#include <qlayout.h> 34#include <qlayout.h>
36#include <qpalette.h>
37 35
@@ -39,3 +37,3 @@
39 37
40#include <opie/colorpopupmenu.h> 38#include <opie/ocolorbutton.h>
41 39
@@ -68,4 +66,4 @@ LiquidSettings::LiquidSettings ( QWidget* parent, const char *name, WFlags fl )
68 m_type = config. readNumEntry ( "Type", TransStippleBg ); 66 m_type = config. readNumEntry ( "Type", TransStippleBg );
69 m_menucol = QColor ( config. readEntry ( "Color", QApplication::palette ( ). active ( ). button ( ). name ( ))); 67 QColor mcol = QColor ( config. readEntry ( "Color", QApplication::palette ( ). active ( ). button ( ). name ( )));
70 m_textcol = QColor ( config. readEntry ( "TextColor", QApplication::palette ( ). active ( ). text ( ). name ( ))); 68 QColor tcol = QColor ( config. readEntry ( "TextColor", QApplication::palette ( ). active ( ). text ( ). name ( )));
71 int opacity = config. readNumEntry ( "Opacity", 10 ); 69 int opacity = config. readNumEntry ( "Opacity", 10 );
@@ -100,22 +98,10 @@ LiquidSettings::LiquidSettings ( QWidget* parent, const char *name, WFlags fl )
100 98
101 m_menubtn = new QToolButton ( this ); 99 m_menubtn = new OColorButton ( this );
100 m_menubtn-> setColor ( mcol );
102 grid-> addWidget ( m_menubtn, 0, 2 ); 101 grid-> addWidget ( m_menubtn, 0, 2 );
103 102
104 QPopupMenu *popup; 103 m_textbtn = new OColorButton ( this );
105 104 m_textbtn-> setColor ( tcol );
106 popup = new ColorPopupMenu ( m_menucol, 0 );
107 m_menubtn-> setPopup ( popup );
108 m_menubtn-> setPopupDelay ( 0 );
109 connect ( popup, SIGNAL( colorSelected ( const QColor & )), this, SLOT( changeMenuColor ( const QColor & )));
110 changeMenuColor ( m_menucol );
111
112 m_textbtn = new QToolButton ( this );
113 grid-> addWidget ( m_textbtn, 0, 5 ); 105 grid-> addWidget ( m_textbtn, 0, 5 );
114 106
115 popup = new ColorPopupMenu ( m_textcol, 0 );
116 m_textbtn-> setPopup ( popup );
117 m_textbtn-> setPopupDelay ( 0 );
118 connect ( popup, SIGNAL( colorSelected ( const QColor & )), this, SLOT( changeTextColor ( const QColor & )));
119 changeTextColor ( m_textcol );
120
121 m_opacsld = new QSlider ( Horizontal, this ); 107 m_opacsld = new QSlider ( Horizontal, this );
@@ -180,14 +166,2 @@ void LiquidSettings::changeType ( int t )
180 166
181void LiquidSettings::changeMenuColor ( const QColor &col )
182{
183 changeButtonColor ( m_menubtn, col );
184 m_menucol = col;
185}
186
187void LiquidSettings::changeTextColor ( const QColor &col )
188{
189 changeButtonColor ( m_textbtn, col );
190 m_textcol = col;
191}
192
193void LiquidSettings::changeShadow ( bool b ) 167void LiquidSettings::changeShadow ( bool b )
@@ -214,4 +188,4 @@ bool LiquidSettings::writeConfig ( )
214 config. writeEntry ( "Type", m_type ); 188 config. writeEntry ( "Type", m_type );
215 config. writeEntry ( "Color", m_menucol. name ( )); 189 config. writeEntry ( "Color", m_menubtn-> color ( ). name ( ));
216 config. writeEntry ( "TextColor", m_textcol. name ( )); 190 config. writeEntry ( "TextColor", m_textbtn-> color ( ). name ( ));
217 config. writeEntry ( "Opacity", m_opacsld-> value ( )); 191 config. writeEntry ( "Opacity", m_opacsld-> value ( ));