summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/styles/liquid/liquid.cpp18
1 files changed, 15 insertions, 3 deletions
diff --git a/noncore/styles/liquid/liquid.cpp b/noncore/styles/liquid/liquid.cpp
index 1d01c65..259f6af 100644
--- a/noncore/styles/liquid/liquid.cpp
+++ b/noncore/styles/liquid/liquid.cpp
@@ -1,1951 +1,1963 @@
1/*- 1/*-
2 * Copyright (C)QPL 2001 Daniel M. Duley. All rights reserved. 2 * Copyright (C)QPL 2001 Daniel M. Duley. All rights reserved.
3 */ 3 */
4 4
5 5
6 6
7#ifndef INCLUDE_MENUITEM_DEF 7#ifndef INCLUDE_MENUITEM_DEF
8#define INCLUDE_MENUITEM_DEF 8#define INCLUDE_MENUITEM_DEF
9#endif 9#endif
10 10
11#include <qmenudata.h> 11#include <qmenudata.h>
12#include "liquid.h" 12#include "liquid.h"
13//#include "liquiddeco.h" 13//#include "liquiddeco.h"
14#include <qapplication.h> 14#include <qapplication.h>
15#include <qpe/config.h> 15#include <qpe/config.h>
16#include "effects.h" 16#include "effects.h"
17#include <qpalette.h> 17#include <qpalette.h>
18#include <qbitmap.h> 18#include <qbitmap.h>
19#include <qtabbar.h> 19#include <qtabbar.h>
20#include <qpopupmenu.h> 20#include <qpopupmenu.h>
21#include <qobjectlist.h> 21#include <qobjectlist.h>
22#include <qimage.h> 22#include <qimage.h>
23#include <qtimer.h> 23#include <qtimer.h>
24#include <qpixmapcache.h> 24#include <qpixmapcache.h>
25#include <qradiobutton.h> 25#include <qradiobutton.h>
26#include <qcombobox.h> 26#include <qcombobox.h>
27#include <qdrawutil.h> 27#include <qdrawutil.h>
28#include <qwidgetlist.h> 28#include <qwidgetlist.h>
29#include <qtoolbutton.h> 29#include <qtoolbutton.h>
30#include <qheader.h> 30#include <qheader.h>
31#include <unistd.h> 31#include <unistd.h>
32#include <qmenubar.h> 32#include <qmenubar.h>
33 33
34 34
35#include <stdio.h> 35#include <stdio.h>
36 36
37#include "htmlmasks.h" 37#include "htmlmasks.h"
38#include "embeddata.h" 38#include "embeddata.h"
39 39
40typedef void (QStyle::*QDrawMenuBarItemImpl) (QPainter *, int, int, int, int, QMenuItem *, 40typedef void (QStyle::*QDrawMenuBarItemImpl) (QPainter *, int, int, int, int, QMenuItem *,
41 QColorGroup &, bool, bool); 41 QColorGroup &, bool, bool);
42 42
43QDrawMenuBarItemImpl qt_set_draw_menu_bar_impl(QDrawMenuBarItemImpl impl); 43QDrawMenuBarItemImpl qt_set_draw_menu_bar_impl(QDrawMenuBarItemImpl impl);
44 44
45void TransMenuHandler::stripePixmap(QPixmap &pix, const QColor &color) 45void TransMenuHandler::stripePixmap(QPixmap &pix, const QColor &color)
46{ 46{
47 QImage img(pix.convertToImage()); 47 QImage img(pix.convertToImage());
48 QImageEffect::fade(img, 0.9, color); 48 QImageEffect::fade(img, 0.9, color);
49 int x, y; 49 int x, y;
50 int r, g, b; 50 int r, g, b;
51 for(y=0; y < img.height(); y+=3){ 51 for(y=0; y < img.height(); y+=3){
52 unsigned int *data = (unsigned int *) img.scanLine(y); 52 unsigned int *data = (unsigned int *) img.scanLine(y);
53 for(x=0; x < img.width(); ++x){ 53 for(x=0; x < img.width(); ++x){
54 r = qRed(data[x]); 54 r = qRed(data[x]);
55 g = qGreen(data[x]); 55 g = qGreen(data[x]);
56 b = qBlue(data[x]); 56 b = qBlue(data[x]);
57 if(r-10) 57 if(r-10)
58 r-=10; 58 r-=10;
59 if(g-10) 59 if(g-10)
60 g-=10; 60 g-=10;
61 if(b-10) 61 if(b-10)
62 b-=10; 62 b-=10;
63 data[x] = qRgb(r, g, b); 63 data[x] = qRgb(r, g, b);
64 } 64 }
65 } 65 }
66 pix.convertFromImage(img); 66 pix.convertFromImage(img);
67} 67}
68 68
69TransMenuHandler::TransMenuHandler(QObject *parent) 69TransMenuHandler::TransMenuHandler(QObject *parent)
70 : QObject(parent) 70 : QObject(parent)
71{ 71{
72 pixDict.setAutoDelete(true); 72 pixDict.setAutoDelete(true);
73 reloadSettings(); 73 reloadSettings();
74} 74}
75 75
76void TransMenuHandler::reloadSettings() 76void TransMenuHandler::reloadSettings()
77{ 77{
78 pixDict.clear(); 78 pixDict.clear();
79 79
80 Config config ( "qpe" ); 80 Config config ( "qpe" );
81 config. setGroup ( "Liquid-Style" ); 81 config. setGroup ( "Liquid-Style" );
82 82
83 type = config. readNumEntry("Type", TransStippleBg); 83 type = config. readNumEntry("Type", TransStippleBg);
84 color = QColor ( config. readEntry("Color", QApplication::palette().active().button().name())); 84 color = QColor ( config. readEntry("Color", QApplication::palette().active().button().name()));
85 fgColor = QColor ( config. readEntry("TextColor", QApplication::palette().active().text().name())); 85 fgColor = QColor ( config. readEntry("TextColor", QApplication::palette().active().text().name()));
86 opacity = config. readNumEntry("Opacity", 10); 86 opacity = config. readNumEntry("Opacity", 10);
87 if ( opacity < -20 ) 87 if ( opacity < -20 )
88 opacity = 20; 88 opacity = 20;
89 else if ( opacity > 20 ) 89 else if ( opacity > 20 )
90 opacity = 20; 90 opacity = 20;
91 91
92 shadowText = config. readBoolEntry("ShadowText", true); 92 shadowText = config. readBoolEntry("ShadowText", true);
93} 93}
94 94
95bool TransMenuHandler::eventFilter(QObject *obj, QEvent *ev) 95bool TransMenuHandler::eventFilter(QObject *obj, QEvent *ev)
96{ 96{
97 QWidget *p = (QWidget *)obj; 97 QWidget *p = (QWidget *)obj;
98 98
99 if(ev->type() == QEvent::Show){ 99 if(ev->type() == QEvent::Show){
100 if(type == TransStippleBg || type == TransStippleBtn || 100 if(type == TransStippleBg || type == TransStippleBtn ||
101 type == Custom){ 101 type == Custom){
102 QApplication::syncX(); 102 QApplication::syncX();
103 QPixmap *pix = new QPixmap; 103 QPixmap *pix = new QPixmap;
104 if(p->testWFlags(Qt::WType_Popup)){ 104 if(p->testWFlags(Qt::WType_Popup)){
105 QRect r(p->x(), p->y(), p->width(), p->height()); 105 QRect r(p->x(), p->y(), p->width(), p->height());
106 QRect deskR = QApplication::desktop()->rect(); 106 QRect deskR = QApplication::desktop()->rect();
107 if(r.right() > deskR.right() || r.bottom() > deskR.bottom()){ 107 if(r.right() > deskR.right() || r.bottom() > deskR.bottom()){
108 r.setBottom(deskR.bottom()); 108 r.setBottom(deskR.bottom());
109 r.setRight(deskR.right()); 109 r.setRight(deskR.right());
110 } 110 }
111 *pix = QPixmap::grabWindow(QApplication::desktop()-> winId(), r.x(), r.y(), 111 *pix = QPixmap::grabWindow(QApplication::desktop()-> winId(), r.x(), r.y(),
112 r.width(), r.height()); 112 r.width(), r.height());
113 } 113 }
114 else{ // tear off menu 114 else{ // tear off menu
115 pix->resize(p->width(), p->height()); 115 pix->resize(p->width(), p->height());
116 pix->fill(Qt::black.rgb()); 116 pix->fill(Qt::black.rgb());
117 } 117 }
118 if(type == TransStippleBg){ 118 if(type == TransStippleBg){
119 stripePixmap(*pix, p->colorGroup().background()); 119 stripePixmap(*pix, p->colorGroup().background());
120 } 120 }
121 else if(type == TransStippleBtn){ 121 else if(type == TransStippleBtn){
122 stripePixmap(*pix, p->colorGroup().button()); 122 stripePixmap(*pix, p->colorGroup().button());
123 } 123 }
124 else{ 124 else{
125 QPixmapEffect::fade(*pix, (((float)opacity)+80)*0.01, color); 125 QPixmapEffect::fade(*pix, (((float)opacity)+80)*0.01, color);
126 } 126 }
127 127
128 pixDict.insert(p->winId(), pix); 128 pixDict.insert(p->winId(), pix);
129 129
130 if (!p->inherits("QPopupMenu")) { 130 if (!p->inherits("QPopupMenu")) {
131 p->setBackgroundPixmap(*pix); 131 p->setBackgroundPixmap(*pix);
132 132
133 QObjectList *ol = p-> queryList("QWidget"); 133 QObjectList *ol = p-> queryList("QWidget");
134 for ( QObjectListIt it( *ol ); it. current ( ); ++it ) { 134 for ( QObjectListIt it( *ol ); it. current ( ); ++it ) {
135 QWidget *wid = (QWidget *) it.current ( ); 135 QWidget *wid = (QWidget *) it.current ( );
136 136
137 wid-> setBackgroundPixmap(*pix); 137 wid-> setBackgroundPixmap(*pix);
138 wid-> setBackgroundOrigin(QWidget::ParentOrigin); 138 wid-> setBackgroundOrigin(QWidget::ParentOrigin);
139 } 139 }
140 delete ol; 140 delete ol;
141 } 141 }
142 } 142 }
143 } 143 }
144 else if(ev->type() == QEvent::Hide){ 144 else if(ev->type() == QEvent::Hide){
145 if(type == TransStippleBg || type == TransStippleBtn || 145 if(type == TransStippleBg || type == TransStippleBtn ||
146 type == Custom){ 146 type == Custom){
147// qWarning("Deleting menu pixmap, width %d", pixDict.find(p->winId())->width()); 147// qWarning("Deleting menu pixmap, width %d", pixDict.find(p->winId())->width());
148 148
149 pixDict.remove(p->winId()); 149 pixDict.remove(p->winId());
150 if (!p->inherits("QPopupMenu")) { 150 if (!p->inherits("QPopupMenu")) {
151 p->setBackgroundMode(QWidget::PaletteBackground); 151 p->setBackgroundMode(QWidget::PaletteBackground);
152 152
153 QObjectList *ol = p-> queryList("QWidget"); 153 QObjectList *ol = p-> queryList("QWidget");
154 for ( QObjectListIt it( *ol ); it. current ( ); ++it ) { 154 for ( QObjectListIt it( *ol ); it. current ( ); ++it ) {
155 QWidget *wid = (QWidget *) it.current ( ); 155 QWidget *wid = (QWidget *) it.current ( );
156 156
157 wid-> setBackgroundMode( QWidget::PaletteBackground ); 157 wid-> setBackgroundMode( QWidget::PaletteBackground );
158 } 158 }
159 delete ol; 159 delete ol;
160 } 160 }
161 } 161 }
162 } 162 }
163 return(false); 163 return(false);
164} 164}
165 165
166 166
167LiquidStyle::LiquidStyle() 167LiquidStyle::LiquidStyle()
168 :QWindowsStyle() 168 :QWindowsStyle()
169{ 169{
170 setName ( "LiquidStyle" ); 170 setName ( "LiquidStyle" );
171 171
172 flatTBButtons = false; 172 flatTBButtons = false;
173 173
174 btnMaskBmp = QBitmap(37, 26, buttonmask_bits, true); 174 btnMaskBmp = QBitmap(37, 26, buttonmask_bits, true);
175 btnMaskBmp.setMask(btnMaskBmp); 175 btnMaskBmp.setMask(btnMaskBmp);
176 htmlBtnMaskBmp = QBitmap(37, 26, htmlbuttonmask_bits, true); 176 htmlBtnMaskBmp = QBitmap(37, 26, htmlbuttonmask_bits, true);
177 htmlBtnMaskBmp.setMask(htmlBtnMaskBmp); 177 htmlBtnMaskBmp.setMask(htmlBtnMaskBmp);
178 headerHoverID = -1; 178 headerHoverID = -1;
179 highlightWidget = NULL; 179 highlightWidget = NULL;
180 setButtonDefaultIndicatorWidth(0); 180 setButtonDefaultIndicatorWidth(0);
181 btnDict.setAutoDelete(true); 181 btnDict.setAutoDelete(true);
182 bevelFillDict.setAutoDelete(true); 182 bevelFillDict.setAutoDelete(true);
183 smallBevelFillDict.setAutoDelete(true); 183 smallBevelFillDict.setAutoDelete(true);
184 customBtnColorList.setAutoDelete(true); 184 customBtnColorList.setAutoDelete(true);
185 customBtnIconList.setAutoDelete(true); 185 customBtnIconList.setAutoDelete(true);
186 customBtnLabelList.setAutoDelete(true); 186 customBtnLabelList.setAutoDelete(true);
187 187
188 rMatrix.rotate(270.0); 188 rMatrix.rotate(270.0);
189 highcolor = QPixmap::defaultDepth() > 8; 189 highcolor = QPixmap::defaultDepth() > 8;
190 btnBorderPix = new QPixmap; 190 btnBorderPix = new QPixmap;
191 btnBorderPix->convertFromImage(qembed_findImage("buttonfill")); 191 btnBorderPix->convertFromImage(qembed_findImage("buttonfill"));
192 btnBlendPix = new QPixmap; 192 btnBlendPix = new QPixmap;
193 btnBlendPix->convertFromImage(qembed_findImage("buttonborder")); 193 btnBlendPix->convertFromImage(qembed_findImage("buttonborder"));
194 bevelFillPix = new QPixmap; 194 bevelFillPix = new QPixmap;
195 bevelFillPix->convertFromImage(qembed_findImage("clear_fill_large")); 195 bevelFillPix->convertFromImage(qembed_findImage("clear_fill_large"));
196 smallBevelFillPix = new QPixmap; 196 smallBevelFillPix = new QPixmap;
197 smallBevelFillPix->convertFromImage(qembed_findImage("clear_fill_small")); 197 smallBevelFillPix->convertFromImage(qembed_findImage("clear_fill_small"));
198 // new stuff 198 // new stuff
199 vsbSliderFillPix = menuPix = NULL; 199 vsbSliderFillPix = menuPix = NULL;
200 menuHandler = new TransMenuHandler(this); 200 menuHandler = new TransMenuHandler(this);
201 setScrollBarExtent(15, 15); 201 setScrollBarExtent(15, 15);
202 int i; 202 int i;
203 for(i=0; i < BITMAP_ITEMS; ++i){ 203 for(i=0; i < BITMAP_ITEMS; ++i){
204 pixmaps[i] = NULL; 204 pixmaps[i] = NULL;
205 } 205 }
206 oldSliderThickness = sliderThickness(); 206 oldSliderThickness = sliderThickness();
207 setSliderThickness(11); 207 setSliderThickness(11);
208} 208}
209 209
210LiquidStyle::~LiquidStyle() 210LiquidStyle::~LiquidStyle()
211{ 211{
212 if(btnBorderPix) 212 if(btnBorderPix)
213 delete btnBorderPix; 213 delete btnBorderPix;
214 if(btnBlendPix) 214 if(btnBlendPix)
215 delete btnBlendPix; 215 delete btnBlendPix;
216 if(bevelFillPix) 216 if(bevelFillPix)
217 delete bevelFillPix; 217 delete bevelFillPix;
218 if(smallBevelFillPix) 218 if(smallBevelFillPix)
219 delete smallBevelFillPix; 219 delete smallBevelFillPix;
220 if(vsbSliderFillPix) 220 if(vsbSliderFillPix)
221 delete vsbSliderFillPix; 221 delete vsbSliderFillPix;
222 if(menuPix) 222 if(menuPix)
223 delete menuPix; 223 delete menuPix;
224 224
225 setScrollBarExtent(16, 16); 225 setScrollBarExtent(16, 16);
226 setSliderThickness(oldSliderThickness); 226 setSliderThickness(oldSliderThickness);
227 int i; 227 int i;
228 for(i=0; i < BITMAP_ITEMS; ++i){ 228 for(i=0; i < BITMAP_ITEMS; ++i){
229 if(pixmaps[i]) 229 if(pixmaps[i])
230 delete pixmaps[i]; 230 delete pixmaps[i];
231 } 231 }
232} 232}
233 233
234void LiquidStyle::drawClearBevel(QPainter *p, int x, int y, int w, int h, 234void LiquidStyle::drawClearBevel(QPainter *p, int x, int y, int w, int h,
235 const QColor &c, const QColor &bg) 235 const QColor &c, const QColor &bg)
236{ 236{
237 237
238 QPen oldPen = p->pen(); // headers need this 238 QPen oldPen = p->pen(); // headers need this
239 int x2 = x+w-1; 239 int x2 = x+w-1;
240 int y2 = y+h-1; 240 int y2 = y+h-1;
241 // outer dark rect 241 // outer dark rect
242 p->setPen(c.dark(130)); 242 p->setPen(c.dark(130));
243 p->drawLine(x, y+2, x, y2-2); // l 243 p->drawLine(x, y+2, x, y2-2); // l
244 p->drawLine(x2, y+2, x2, y2-2); // r 244 p->drawLine(x2, y+2, x2, y2-2); // r
245 p->drawLine(x+2, y, x2-2, y); // t 245 p->drawLine(x+2, y, x2-2, y); // t
246 p->drawLine(x+2, y2, x2-2, y2); // b 246 p->drawLine(x+2, y2, x2-2, y2); // b
247 p->drawPoint(x+1, y+1); // tl 247 p->drawPoint(x+1, y+1); // tl
248 p->drawPoint(x2-1, y+1); // tr 248 p->drawPoint(x2-1, y+1); // tr
249 p->drawPoint(x+1, y2-1); // bl 249 p->drawPoint(x+1, y2-1); // bl
250 p->drawPoint(x2-1, y2-1); // br 250 p->drawPoint(x2-1, y2-1); // br
251 251
252 // inner top light lines 252 // inner top light lines
253 p->setPen(c.light(105)); 253 p->setPen(c.light(105));
254 p->drawLine(x+2, y+1, x2-2, y+1); 254 p->drawLine(x+2, y+1, x2-2, y+1);
255 p->drawLine(x+1, y+2, x2-1, y+2); 255 p->drawLine(x+1, y+2, x2-1, y+2);
256 p->drawLine(x+1, y+3, x+2, y+3); 256 p->drawLine(x+1, y+3, x+2, y+3);
257 p->drawLine(x2-2, y+3, x2-1, y+3); 257 p->drawLine(x2-2, y+3, x2-1, y+3);
258 p->drawPoint(x+1, y+4); 258 p->drawPoint(x+1, y+4);
259 p->drawPoint(x2-1, y+4); 259 p->drawPoint(x2-1, y+4);
260 260
261 // inner bottom light lines 261 // inner bottom light lines
262 p->setPen(c.light(110)); 262 p->setPen(c.light(110));
263 p->drawLine(x+2, y2-1, x2-2, y2-1); 263 p->drawLine(x+2, y2-1, x2-2, y2-1);
264 p->drawLine(x+1, y2-2, x2-1, y2-2); 264 p->drawLine(x+1, y2-2, x2-1, y2-2);
265 p->drawLine(x+1, y2-3, x+2, y2-3); 265 p->drawLine(x+1, y2-3, x+2, y2-3);
266 p->drawLine(x2-2, y2-3, x2-1, y2-3); 266 p->drawLine(x2-2, y2-3, x2-1, y2-3);
267 p->drawPoint(x+1, y2-4); 267 p->drawPoint(x+1, y2-4);
268 p->drawPoint(x2-1, y2-4); 268 p->drawPoint(x2-1, y2-4);
269 269
270 // inner left mid lines 270 // inner left mid lines
271 //p->setPen(c.light(105)); 271 //p->setPen(c.light(105));
272 p->setPen(c); 272 p->setPen(c);
273 p->drawLine(x+1, y+5, x+1, y2-5); 273 p->drawLine(x+1, y+5, x+1, y2-5);
274 p->drawLine(x+2, y+4, x+2, y2-4); 274 p->drawLine(x+2, y+4, x+2, y2-4);
275 275
276 // inner right mid lines 276 // inner right mid lines
277 p->drawLine(x2-1, y+5, x2-1, y2-5); 277 p->drawLine(x2-1, y+5, x2-1, y2-5);
278 p->drawLine(x2-2, y+4, x2-2, y2-4); 278 p->drawLine(x2-2, y+4, x2-2, y2-4);
279 279
280 // fill 280 // fill
281 QPixmap *pix; 281 QPixmap *pix;
282 if(h >= 32){ 282 if(h >= 32){
283 pix = bevelFillDict.find(c.rgb()); 283 pix = bevelFillDict.find(c.rgb());
284 if(!pix){ 284 if(!pix){
285 int h, s, v; 285 int h, s, v;
286 c.hsv(&h, &s, &v); 286 c.hsv(&h, &s, &v);
287 pix = new QPixmap(*bevelFillPix); 287 pix = new QPixmap(*bevelFillPix);
288 adjustHSV(*pix, h, s, v); 288 adjustHSV(*pix, h, s, v);
289 bevelFillDict.insert(c.rgb(), pix); 289 bevelFillDict.insert(c.rgb(), pix);
290 } 290 }
291 } 291 }
292 else{ 292 else{
293 pix = smallBevelFillDict.find(c.rgb()); 293 pix = smallBevelFillDict.find(c.rgb());
294 if(!pix){ 294 if(!pix){
295 int h, s, v; 295 int h, s, v;
296 c.hsv(&h, &s, &v); 296 c.hsv(&h, &s, &v);
297 pix = new QPixmap(*smallBevelFillPix); 297 pix = new QPixmap(*smallBevelFillPix);
298 adjustHSV(*pix, h, s, v); 298 adjustHSV(*pix, h, s, v);
299 smallBevelFillDict.insert(c.rgb(), pix); 299 smallBevelFillDict.insert(c.rgb(), pix);
300 } 300 }
301 } 301 }
302 p->drawTiledPixmap(x+3, y+3, w-6, h-6, *pix); 302 p->drawTiledPixmap(x+3, y+3, w-6, h-6, *pix);
303 // blend 303 // blend
304 int red, green, blue; 304 int red, green, blue;
305 QColor btnColor(c.dark(130)); 305 QColor btnColor(c.dark(130));
306 red = (btnColor.red() >> 1) + (bg.red() >> 1); 306 red = (btnColor.red() >> 1) + (bg.red() >> 1);
307 green = (btnColor.green() >> 1) + (bg.green() >> 1); 307 green = (btnColor.green() >> 1) + (bg.green() >> 1);
308 blue = (btnColor.blue() >> 1) + (bg.blue() >> 1); 308 blue = (btnColor.blue() >> 1) + (bg.blue() >> 1);
309 btnColor.setRgb(red, green, blue); 309 btnColor.setRgb(red, green, blue);
310 310
311 p->setPen(btnColor); 311 p->setPen(btnColor);
312 p->drawPoint(x+1, y); 312 p->drawPoint(x+1, y);
313 p->drawPoint(x, y+1); 313 p->drawPoint(x, y+1);
314 p->drawPoint(x+1, y2); 314 p->drawPoint(x+1, y2);
315 p->drawPoint(x, y2-1); 315 p->drawPoint(x, y2-1);
316 316
317 p->drawPoint(x2-1, y); 317 p->drawPoint(x2-1, y);
318 p->drawPoint(x2, y+1); 318 p->drawPoint(x2, y+1);
319 p->drawPoint(x2-1, y2); 319 p->drawPoint(x2-1, y2);
320 p->drawPoint(x2, y2-1); 320 p->drawPoint(x2, y2-1);
321 321
322 p->setPen(oldPen); 322 p->setPen(oldPen);
323 323
324} 324}
325 325
326void LiquidStyle::drawRoundButton(QPainter *painter, const QColor &c, 326void LiquidStyle::drawRoundButton(QPainter *painter, const QColor &c,
327 const QColor &back, int x, int y, int w, int h, 327 const QColor &back, int x, int y, int w, int h,
328 bool supportPushDown, bool pushedDown, 328 bool supportPushDown, bool pushedDown,
329 bool autoDefault, bool isMasked) 329 bool autoDefault, bool isMasked)
330{ 330{
331 if(w < 21 || h < 21){ 331 if(w < 21 || h < 21){
332 drawClearBevel(painter, x, y, w, h, c, back); 332 drawClearBevel(painter, x, y, w, h, c, back);
333 return; 333 return;
334 } 334 }
335 if(supportPushDown){ 335 if(supportPushDown){
336 --w, --h; 336 --w, --h;
337 } 337 }
338 /* We don't make the round buttons smaller, since they don't look as good 338 /* We don't make the round buttons smaller, since they don't look as good
339 if(autoDefault){ 339 if(autoDefault){
340 w = w-buttonDefaultIndicatorWidth()*2; 340 w = w-buttonDefaultIndicatorWidth()*2;
341 h = h-buttonDefaultIndicatorWidth()*2; 341 h = h-buttonDefaultIndicatorWidth()*2;
342 }*/ 342 }*/
343 343
344 344
345 QPixmap *pix = btnDict.find(c.rgb()); 345 QPixmap *pix = btnDict.find(c.rgb());
346 if(!pix){ 346 if(!pix){
347 int h, s, v; 347 int h, s, v;
348 c.hsv(&h, &s, &v); 348 c.hsv(&h, &s, &v);
349 pix = new QPixmap(*btnBorderPix); 349 pix = new QPixmap(*btnBorderPix);
350 adjustHSV(*pix, h, s, v); 350 adjustHSV(*pix, h, s, v);
351 btnDict.insert(c.rgb(), pix); 351 btnDict.insert(c.rgb(), pix);
352 } 352 }
353 int x2 = x+w-1; 353 int x2 = x+w-1;
354 int y2 = y+h-1; 354 int y2 = y+h-1;
355 int bx2 = pix->width()-1; 355 int bx2 = pix->width()-1;
356 int by2 = pix->height()-1; 356 int by2 = pix->height()-1;
357 357
358 QPixmap tmpPix(w, h); 358 QPixmap tmpPix(w, h);
359 QPixmap tilePix; 359 QPixmap tilePix;
360 QPainter p; 360 QPainter p;
361 p.begin(&tmpPix); 361 p.begin(&tmpPix);
362 362
363 // do the fill 363 // do the fill
364 p.drawPixmap(0, 0, *pix, 0, 0, 10, 10); // tl 364 p.drawPixmap(0, 0, *pix, 0, 0, 10, 10); // tl
365 p.drawPixmap(x2-9, 0, *pix, bx2-9, 0, 10, 10); // tr 365 p.drawPixmap(x2-9, 0, *pix, bx2-9, 0, 10, 10); // tr
366 p.drawPixmap(0, y2-9, *pix, 0, by2-9, 10, 10); // bl 366 p.drawPixmap(0, y2-9, *pix, 0, by2-9, 10, 10); // bl
367 p.drawPixmap(x2-9, y2-9, *pix, bx2-9, by2-9, 10, 10); // br 367 p.drawPixmap(x2-9, y2-9, *pix, bx2-9, by2-9, 10, 10); // br
368 368
369 // edges 369 // edges
370 tilePix.resize(pix->width()-20, 10); 370 tilePix.resize(pix->width()-20, 10);
371 // top 371 // top
372 bitBlt(&tilePix, 0, 0, pix, 10, 0, pix->width()-20, 10); 372 bitBlt(&tilePix, 0, 0, pix, 10, 0, pix->width()-20, 10);
373 p.drawTiledPixmap(10, 0, w-20, 10, tilePix); 373 p.drawTiledPixmap(10, 0, w-20, 10, tilePix);
374 // bottom 374 // bottom
375 bitBlt(&tilePix, 0, 0, pix, 10, by2-9, pix->width()-20, 20); 375 bitBlt(&tilePix, 0, 0, pix, 10, by2-9, pix->width()-20, 20);
376 p.drawTiledPixmap(10, y2-9, w-20, 10, tilePix); 376 p.drawTiledPixmap(10, y2-9, w-20, 10, tilePix);
377 // left 377 // left
378 tilePix.resize(10, pix->height()-20); 378 tilePix.resize(10, pix->height()-20);
379 bitBlt(&tilePix, 0, 0, pix, 0, 10, 10, pix->height()-20); 379 bitBlt(&tilePix, 0, 0, pix, 0, 10, 10, pix->height()-20);
380 p.drawTiledPixmap(0, 10, 10, h-20, tilePix); 380 p.drawTiledPixmap(0, 10, 10, h-20, tilePix);
381 // right 381 // right
382 bitBlt(&tilePix, 0, 0, pix, bx2-9, 10, 10, pix->height()-20); 382 bitBlt(&tilePix, 0, 0, pix, bx2-9, 10, 10, pix->height()-20);
383 p.drawTiledPixmap(x2-9, 10, 10, h-20, tilePix); 383 p.drawTiledPixmap(x2-9, 10, 10, h-20, tilePix);
384 384
385 // middle 385 // middle
386 tilePix.resize(pix->width()-20, pix->height()-20); 386 tilePix.resize(pix->width()-20, pix->height()-20);
387 bitBlt(&tilePix, 0, 0, pix, 10, 10, pix->width()-20, pix->height()-20); 387 bitBlt(&tilePix, 0, 0, pix, 10, 10, pix->width()-20, pix->height()-20);
388 p.drawTiledPixmap(10, 10, w-20, h-20, tilePix); 388 p.drawTiledPixmap(10, 10, w-20, h-20, tilePix);
389 389
390 390
391 // do the blend 391 // do the blend
392 QBitmap blendMask; 392 QBitmap blendMask;
393 if(!isMasked){ 393 if(!isMasked){
394 //QRgb bgRgb = back.rgb(); 394 //QRgb bgRgb = back.rgb();
395 //QRgb fgRgb = c.rgb(); 395 //QRgb fgRgb = c.rgb();
396 //int r, g, b; 396 //int r, g, b;
397 397
398 //r = (int)(qRed(bgRgb)*0.75 + qRed(fgRgb)*0.25); 398 //r = (int)(qRed(bgRgb)*0.75 + qRed(fgRgb)*0.25);
399 //g = (int)(qGreen(bgRgb)*0.75 + qGreen(fgRgb)*0.25); 399 //g = (int)(qGreen(bgRgb)*0.75 + qGreen(fgRgb)*0.25);
400 //b = (int)(qBlue(bgRgb)*0.75 + qBlue(fgRgb)*0.25); 400 //b = (int)(qBlue(bgRgb)*0.75 + qBlue(fgRgb)*0.25);
401 //QColor blendColor(r, g, b); 401 //QColor blendColor(r, g, b);
402 int hue, sat, v1, v2; 402 int hue, sat, v1, v2;
403 QColor blendColor(autoDefault ? c : back); 403 QColor blendColor(autoDefault ? c : back);
404 back.hsv(&hue, &sat, &v1); 404 back.hsv(&hue, &sat, &v1);
405 blendColor.hsv(&hue, &sat, &v2); 405 blendColor.hsv(&hue, &sat, &v2);
406 if(v2 > v1) 406 if(v2 > v1)
407 blendColor.setHsv(hue, sat, (int)(v1*0.75 + v2*0.25)); 407 blendColor.setHsv(hue, sat, (int)(v1*0.75 + v2*0.25));
408 408
409 pix = btnBorderDict.find(blendColor.rgb()); 409 pix = btnBorderDict.find(blendColor.rgb());
410 if(!pix){ 410 if(!pix){
411 int h, s, v; 411 int h, s, v;
412 blendColor.hsv(&h, &s, &v); 412 blendColor.hsv(&h, &s, &v);
413 pix = new QPixmap(*btnBlendPix); 413 pix = new QPixmap(*btnBlendPix);
414 adjustHSV(*pix, h, s, v); 414 adjustHSV(*pix, h, s, v);
415 btnBorderDict.insert(blendColor.rgb(), pix); 415 btnBorderDict.insert(blendColor.rgb(), pix);
416 } 416 }
417 } 417 }
418 else{ 418 else{
419 pix = pushedDown ? getPixmap(HTMLBtnBorderDown) : 419 pix = pushedDown ? getPixmap(HTMLBtnBorderDown) :
420 getPixmap(HTMLBtnBorder); 420 getPixmap(HTMLBtnBorder);
421 } 421 }
422 p.drawPixmap(0, 0, *pix, 0, 0, 10, 10); // tl 422 p.drawPixmap(0, 0, *pix, 0, 0, 10, 10); // tl
423 p.drawPixmap(x2-9, 0, *pix, bx2-9, 0, 10, 10); // tr 423 p.drawPixmap(x2-9, 0, *pix, bx2-9, 0, 10, 10); // tr
424 p.drawPixmap(0, y2-9, *pix, 0, by2-9, 10, 10); // bl 424 p.drawPixmap(0, y2-9, *pix, 0, by2-9, 10, 10); // bl
425 p.drawPixmap(x2-9, y2-9, *pix, bx2-9, by2-9, 10, 10); // br 425 p.drawPixmap(x2-9, y2-9, *pix, bx2-9, by2-9, 10, 10); // br
426 426
427 // edges 427 // edges
428 tilePix.resize(pix->width()-20, 10); 428 tilePix.resize(pix->width()-20, 10);
429 blendMask.resize(pix->width()-20, 10); 429 blendMask.resize(pix->width()-20, 10);
430 // top 430 // top
431 bitBlt(&tilePix, 0, 0, pix, 10, 0, pix->width()-20, 10); 431 bitBlt(&tilePix, 0, 0, pix, 10, 0, pix->width()-20, 10);
432 bitBlt(&blendMask, 0, 0, pix->mask(), 10, 0, pix->width()-20, 10); 432 bitBlt(&blendMask, 0, 0, pix->mask(), 10, 0, pix->width()-20, 10);
433 tilePix.setMask(blendMask); 433 tilePix.setMask(blendMask);
434 p.drawTiledPixmap(10, 0, w-20, 10, tilePix); 434 p.drawTiledPixmap(10, 0, w-20, 10, tilePix);
435 // bottom 435 // bottom
436 bitBlt(&tilePix, 0, 0, pix, 10, by2-9, pix->width()-20, 20); 436 bitBlt(&tilePix, 0, 0, pix, 10, by2-9, pix->width()-20, 20);
437 bitBlt(&blendMask, 0, 0, pix->mask(), 10, by2-9, pix->width()-20, 20); 437 bitBlt(&blendMask, 0, 0, pix->mask(), 10, by2-9, pix->width()-20, 20);
438 tilePix.setMask(blendMask); 438 tilePix.setMask(blendMask);
439 p.drawTiledPixmap(10, y2-9, w-20, 10, tilePix); 439 p.drawTiledPixmap(10, y2-9, w-20, 10, tilePix);
440 // left 440 // left
441 tilePix.resize(10, pix->height()-20); 441 tilePix.resize(10, pix->height()-20);
442 blendMask.resize(10, pix->height()-20); 442 blendMask.resize(10, pix->height()-20);
443 bitBlt(&tilePix, 0, 0, pix, 0, 10, 10, pix->height()-20); 443 bitBlt(&tilePix, 0, 0, pix, 0, 10, 10, pix->height()-20);
444 bitBlt(&blendMask, 0, 0, pix->mask(), 0, 10, 10, pix->height()-20); 444 bitBlt(&blendMask, 0, 0, pix->mask(), 0, 10, 10, pix->height()-20);
445 tilePix.setMask(blendMask); 445 tilePix.setMask(blendMask);
446 p.drawTiledPixmap(0, 10, 10, h-20, tilePix); 446 p.drawTiledPixmap(0, 10, 10, h-20, tilePix);
447 // right 447 // right
448 bitBlt(&tilePix, 0, 0, pix, bx2-9, 10, 10, pix->height()-20); 448 bitBlt(&tilePix, 0, 0, pix, bx2-9, 10, 10, pix->height()-20);
449 bitBlt(&blendMask, 0, 0, pix->mask(), bx2-9, 10, 10, pix->height()-20); 449 bitBlt(&blendMask, 0, 0, pix->mask(), bx2-9, 10, 10, pix->height()-20);
450 tilePix.setMask(blendMask); 450 tilePix.setMask(blendMask);
451 p.drawTiledPixmap(x2-9, 10, 10, h-20, tilePix); 451 p.drawTiledPixmap(x2-9, 10, 10, h-20, tilePix);
452 452
453 p.end(); 453 p.end();
454 454
455 // do the button mask - we don't automask buttons 455 // do the button mask - we don't automask buttons
456 QBitmap btnMask(w, h); 456 QBitmap btnMask(w, h);
457 QBitmap *mask = isMasked ? &htmlBtnMaskBmp : &btnMaskBmp; 457 QBitmap *mask = isMasked ? &htmlBtnMaskBmp : &btnMaskBmp;
458 p.begin(&btnMask); 458 p.begin(&btnMask);
459 p.fillRect(0, 0, w, h, Qt::color0); 459 p.fillRect(0, 0, w, h, Qt::color0);
460 p.drawPixmap(0, 0, *mask, 0, 0, 10, 10); // tl 460 p.drawPixmap(0, 0, *mask, 0, 0, 10, 10); // tl
461 p.drawPixmap(x2-9, 0, *mask, bx2-9, 0, 10, 10); // tr 461 p.drawPixmap(x2-9, 0, *mask, bx2-9, 0, 10, 10); // tr
462 p.drawPixmap(0, y2-9, *mask, 0, by2-9, 10, 10); // bl 462 p.drawPixmap(0, y2-9, *mask, 0, by2-9, 10, 10); // bl
463 p.drawPixmap(x2-9, y2-9, *mask, bx2-9, by2-9, 10, 10); // br 463 p.drawPixmap(x2-9, y2-9, *mask, bx2-9, by2-9, 10, 10); // br
464 // fills 464 // fills
465 p.fillRect(10, 0, w-20, 10, Qt::color1); // top 465 p.fillRect(10, 0, w-20, 10, Qt::color1); // top
466 p.fillRect(10, y2-9, w-20, 10, Qt::color1); // bottom 466 p.fillRect(10, y2-9, w-20, 10, Qt::color1); // bottom
467 p.fillRect(0, 10, w, h-20, Qt::color1); // middle 467 p.fillRect(0, 10, w, h-20, Qt::color1); // middle
468 p.end(); 468 p.end();
469 tmpPix.setMask(btnMask); 469 tmpPix.setMask(btnMask);
470 /*if(autoDefault){ 470 /*if(autoDefault){
471 if(supportPushDown && pushedDown){ 471 if(supportPushDown && pushedDown){
472 painter->drawPixmap(x+3, y+3, tmpPix); 472 painter->drawPixmap(x+3, y+3, tmpPix);
473 } 473 }
474 else{ 474 else{
475 painter->drawPixmap(x+2, y+2, tmpPix); 475 painter->drawPixmap(x+2, y+2, tmpPix);
476 } 476 }
477 } 477 }
478 else */if(supportPushDown && pushedDown) 478 else */if(supportPushDown && pushedDown)
479 painter->drawPixmap(x+1, y+1, tmpPix); 479 painter->drawPixmap(x+1, y+1, tmpPix);
480 else 480 else
481 painter->drawPixmap(x, y, tmpPix); 481 painter->drawPixmap(x, y, tmpPix);
482 482
483 483
484 484
485} 485}
486 486
487 487
488QPixmap* LiquidStyle::processEmbedded(const char *label, int h, int s, int v, 488QPixmap* LiquidStyle::processEmbedded(const char *label, int h, int s, int v,
489 bool blend) 489 bool blend)
490{ 490{
491 QImage img(qembed_findImage(label)); 491 QImage img(qembed_findImage(label));
492 img.detach(); 492 img.detach();
493 if(img.isNull()){ // shouldn't happen, been tested 493 if(img.isNull()){ // shouldn't happen, been tested
494 qWarning("Invalid embedded label %s", label); 494 qWarning("Invalid embedded label %s", label);
495 return(NULL); 495 return(NULL);
496 } 496 }
497 if(img.depth() != 32) 497 if(img.depth() != 32)
498 img = img.convertDepth(32); 498 img = img.convertDepth(32);
499 unsigned int *data = (unsigned int *)img.bits(); 499 unsigned int *data = (unsigned int *)img.bits();
500 int total = img.width()*img.height(); 500 int total = img.width()*img.height();
501 int current; 501 int current;
502 QColor c; 502 QColor c;
503 int oldH, oldS, oldV; 503 int oldH, oldS, oldV;
504 int alpha; 504 int alpha;
505 if(v < 235) 505 if(v < 235)
506 v += 20; 506 v += 20;
507 else 507 else
508 v = 255; 508 v = 255;
509 float intensity = v/255.0; 509 float intensity = v/255.0;
510 510
511 for(current=0; current<total; ++current){ 511 for(current=0; current<total; ++current){
512 alpha = qAlpha(data[current]); 512 alpha = qAlpha(data[current]);
513 c.setRgb(data[current]); 513 c.setRgb(data[current]);
514 c.hsv(&oldH, &oldS, &oldV); 514 c.hsv(&oldH, &oldS, &oldV);
515 oldV = (int)(oldV*intensity); 515 oldV = (int)(oldV*intensity);
516 c.setHsv(h, s, oldV); 516 c.setHsv(h, s, oldV);
517 if(blend && alpha != 255 && alpha != 0){ 517 if(blend && alpha != 255 && alpha != 0){
518 float srcPercent = ((float)alpha)/255.0; 518 float srcPercent = ((float)alpha)/255.0;
519 float destPercent = 1.0-srcPercent; 519 float destPercent = 1.0-srcPercent;
520 oldH = (int)((srcPercent*h) + (destPercent*bH)); 520 oldH = (int)((srcPercent*h) + (destPercent*bH));
521 oldS = (int)((srcPercent*s) + (destPercent*bS)); 521 oldS = (int)((srcPercent*s) + (destPercent*bS));
522 oldV = (int)((srcPercent*oldV) + (destPercent*bV)); 522 oldV = (int)((srcPercent*oldV) + (destPercent*bV));
523 c.setHsv(oldH, oldS, oldV); 523 c.setHsv(oldH, oldS, oldV);
524 alpha = 255; 524 alpha = 255;
525 } 525 }
526 data[current] = qRgba(c.red(), c.green(), c.blue(), alpha); 526 data[current] = qRgba(c.red(), c.green(), c.blue(), alpha);
527 } 527 }
528 QPixmap *pix = new QPixmap; 528 QPixmap *pix = new QPixmap;
529 pix->convertFromImage(img); 529 pix->convertFromImage(img);
530 return(pix); 530 return(pix);
531} 531}
532 532
533 533
534 534
535 535
536QPixmap* LiquidStyle::getPixmap(BitmapData item) 536QPixmap* LiquidStyle::getPixmap(BitmapData item)
537{ 537{
538 538
539 if(pixmaps[item]) 539 if(pixmaps[item])
540 return(pixmaps[item]); 540 return(pixmaps[item]);
541 541
542 switch(item){ 542 switch(item){
543 case HTMLBtnBorder: 543 case HTMLBtnBorder:
544 pixmaps[HTMLBtnBorder] = processEmbedded("htmlbtnborder", btnH, btnS, btnV); 544 pixmaps[HTMLBtnBorder] = processEmbedded("htmlbtnborder", btnH, btnS, btnV);
545 break; 545 break;
546 case HTMLBtnBorderDown: 546 case HTMLBtnBorderDown:
547 pixmaps[HTMLBtnBorderDown] = processEmbedded("htmlbtnborder", btnHoverH, btnHoverS, btnHoverV); 547 pixmaps[HTMLBtnBorderDown] = processEmbedded("htmlbtnborder", btnHoverH, btnHoverS, btnHoverV);
548 break; 548 break;
549 case HTMLCB: 549 case HTMLCB:
550 pixmaps[HTMLCB] = processEmbedded("htmlcheckbox", bH, bS, bV); 550 pixmaps[HTMLCB] = processEmbedded("htmlcheckbox", bH, bS, bV);
551 break; 551 break;
552 case HTMLCBDown: 552 case HTMLCBDown:
553 pixmaps[HTMLCBDown] = processEmbedded("htmlcheckboxdown", btnH, btnS, btnV); 553 pixmaps[HTMLCBDown] = processEmbedded("htmlcheckboxdown", btnH, btnS, btnV);
554 break; 554 break;
555 case HTMLCBHover: 555 case HTMLCBHover:
556 pixmaps[HTMLCBHover] = processEmbedded("htmlcheckbox", btnH, btnS, btnV); 556 pixmaps[HTMLCBHover] = processEmbedded("htmlcheckbox", btnH, btnS, btnV);
557 break; 557 break;
558 case HTMLCBDownHover: 558 case HTMLCBDownHover:
559 pixmaps[HTMLCBDownHover] = processEmbedded("htmlcheckboxdown", 559 pixmaps[HTMLCBDownHover] = processEmbedded("htmlcheckboxdown",
560 btnHoverH, btnHoverS, 560 btnHoverH, btnHoverS,
561 btnHoverV); 561 btnHoverV);
562 break; 562 break;
563 case HTMLRadio: 563 case HTMLRadio:
564 pixmaps[HTMLRadio] = processEmbedded("htmlradio", bH, bS, bV); 564 pixmaps[HTMLRadio] = processEmbedded("htmlradio", bH, bS, bV);
565 case HTMLRadioDown: 565 case HTMLRadioDown:
566 pixmaps[HTMLRadioDown] = processEmbedded("htmlradiodown", btnH, btnS, btnV); 566 pixmaps[HTMLRadioDown] = processEmbedded("htmlradiodown", btnH, btnS, btnV);
567 case HTMLRadioHover: 567 case HTMLRadioHover:
568 pixmaps[HTMLRadioHover] = processEmbedded("htmlradio", btnH, btnS, btnV); 568 pixmaps[HTMLRadioHover] = processEmbedded("htmlradio", btnH, btnS, btnV);
569 case HTMLRadioDownHover: 569 case HTMLRadioDownHover:
570 pixmaps[HTMLRadioDownHover] = processEmbedded("htmlradiodown", 570 pixmaps[HTMLRadioDownHover] = processEmbedded("htmlradiodown",
571 btnHoverH, btnHoverS, 571 btnHoverH, btnHoverS,
572 btnHoverV); 572 btnHoverV);
573 case RadioOn: 573 case RadioOn:
574 pixmaps[RadioOn] = processEmbedded("radio_down", btnH, btnS, btnV, true); 574 pixmaps[RadioOn] = processEmbedded("radio_down", btnH, btnS, btnV, true);
575 break; 575 break;
576 case RadioOnHover: 576 case RadioOnHover:
577 pixmaps[RadioOnHover] = processEmbedded("radio_down", btnHoverH, btnHoverS, 577 pixmaps[RadioOnHover] = processEmbedded("radio_down", btnHoverH, btnHoverS,
578 btnHoverV, true); 578 btnHoverV, true);
579 break; 579 break;
580 case RadioOffHover: 580 case RadioOffHover:
581 pixmaps[RadioOffHover] = processEmbedded("radio", btnH, btnS, btnV, true); 581 pixmaps[RadioOffHover] = processEmbedded("radio", btnH, btnS, btnV, true);
582 break; 582 break;
583 case TabDown: 583 case TabDown:
584 pixmaps[TabDown] = processEmbedded("tab", btnH, btnS, btnV, true); 584 pixmaps[TabDown] = processEmbedded("tab", btnH, btnS, btnV, true);
585 break; 585 break;
586 case TabFocus: 586 case TabFocus:
587 pixmaps[TabFocus] = processEmbedded("tab", btnHoverH, btnHoverS, 587 pixmaps[TabFocus] = processEmbedded("tab", btnHoverH, btnHoverS,
588 btnHoverS, true); 588 btnHoverS, true);
589 break; 589 break;
590 case CBDown: 590 case CBDown:
591 pixmaps[CBDown] = processEmbedded("checkboxdown", btnH, btnS, btnV, true); 591 pixmaps[CBDown] = processEmbedded("checkboxdown", btnH, btnS, btnV, true);
592 break; 592 break;
593 case CBDownHover: 593 case CBDownHover:
594 pixmaps[CBDownHover] = processEmbedded("checkboxdown", btnHoverH, 594 pixmaps[CBDownHover] = processEmbedded("checkboxdown", btnHoverH,
595 btnHoverS, btnHoverV, true); 595 btnHoverS, btnHoverV, true);
596 break; 596 break;
597 case CBHover: 597 case CBHover:
598 pixmaps[CBHover] = processEmbedded("checkbox", btnH, btnS, btnV, true); 598 pixmaps[CBHover] = processEmbedded("checkbox", btnH, btnS, btnV, true);
599 break; 599 break;
600 case HSlider: 600 case HSlider:
601 pixmaps[HSlider] = processEmbedded("sliderarrow", btnH, btnS, btnV, true); 601 pixmaps[HSlider] = processEmbedded("sliderarrow", btnH, btnS, btnV, true);
602 break; 602 break;
603 case VSlider: 603 case VSlider:
604 pixmaps[VSlider] = processEmbedded("sliderarrow", btnH, btnS, btnV, true); 604 pixmaps[VSlider] = processEmbedded("sliderarrow", btnH, btnS, btnV, true);
605 *pixmaps[VSlider] = pixmaps[VSlider]->xForm(rMatrix); 605 *pixmaps[VSlider] = pixmaps[VSlider]->xForm(rMatrix);
606 break; 606 break;
607 case RadioOff: 607 case RadioOff:
608 pixmaps[RadioOff] = processEmbedded("radio", bH, bS, bV, true); 608 pixmaps[RadioOff] = processEmbedded("radio", bH, bS, bV, true);
609 break; 609 break;
610 case Tab: 610 case Tab:
611 pixmaps[Tab] = processEmbedded("tab", bH, bS, bV, true); 611 pixmaps[Tab] = processEmbedded("tab", bH, bS, bV, true);
612 break; 612 break;
613 case CB: 613 case CB:
614 pixmaps[CB] = processEmbedded("checkbox", bH, bS, bV, true); 614 pixmaps[CB] = processEmbedded("checkbox", bH, bS, bV, true);
615 break; 615 break;
616 case VSBSliderTop: 616 case VSBSliderTop:
617 pixmaps[VSBSliderTop] = processEmbedded("sbslider_top", btnH, btnS, btnV, true); 617 pixmaps[VSBSliderTop] = processEmbedded("sbslider_top", btnH, btnS, btnV, true);
618 break; 618 break;
619 case VSBSliderBtm: 619 case VSBSliderBtm:
620 pixmaps[VSBSliderBtm] = processEmbedded("sbslider_btm", btnH, btnS, btnV, true); 620 pixmaps[VSBSliderBtm] = processEmbedded("sbslider_btm", btnH, btnS, btnV, true);
621 break; 621 break;
622 case VSBSliderMid: 622 case VSBSliderMid:
623 pixmaps[VSBSliderMid] = processEmbedded("sbslider_mid", btnH, btnS, btnV); 623 pixmaps[VSBSliderMid] = processEmbedded("sbslider_mid", btnH, btnS, btnV);
624 break; 624 break;
625 case VSBSliderTopHover: 625 case VSBSliderTopHover:
626 pixmaps[VSBSliderTopHover] = processEmbedded("sbslider_top", btnHoverH, btnHoverS, btnHoverV, true); 626 pixmaps[VSBSliderTopHover] = processEmbedded("sbslider_top", btnHoverH, btnHoverS, btnHoverV, true);
627 break; 627 break;
628 case VSBSliderBtmHover: 628 case VSBSliderBtmHover:
629 pixmaps[VSBSliderBtmHover] = processEmbedded("sbslider_btm", btnHoverH, btnHoverS, btnHoverV, true); 629 pixmaps[VSBSliderBtmHover] = processEmbedded("sbslider_btm", btnHoverH, btnHoverS, btnHoverV, true);
630 break; 630 break;
631 case VSBSliderMidHover: 631 case VSBSliderMidHover:
632 pixmaps[VSBSliderMidHover] = processEmbedded("sbslider_mid", btnHoverH, btnHoverS, btnHoverV); 632 pixmaps[VSBSliderMidHover] = processEmbedded("sbslider_mid", btnHoverH, btnHoverS, btnHoverV);
633 break; 633 break;
634 634
635 case HSBSliderTop: 635 case HSBSliderTop:
636 pixmaps[HSBSliderTop] = processEmbedded("sbslider_top", btnH, btnS, btnV, true); 636 pixmaps[HSBSliderTop] = processEmbedded("sbslider_top", btnH, btnS, btnV, true);
637 *pixmaps[HSBSliderTop] = pixmaps[HSBSliderTop]->xForm(rMatrix); 637 *pixmaps[HSBSliderTop] = pixmaps[HSBSliderTop]->xForm(rMatrix);
638 break; 638 break;
639 case HSBSliderBtm: 639 case HSBSliderBtm:
640 pixmaps[HSBSliderBtm] = processEmbedded("sbslider_btm", btnH, btnS, btnV, true); 640 pixmaps[HSBSliderBtm] = processEmbedded("sbslider_btm", btnH, btnS, btnV, true);
641 *pixmaps[HSBSliderBtm] = pixmaps[HSBSliderBtm]->xForm(rMatrix); 641 *pixmaps[HSBSliderBtm] = pixmaps[HSBSliderBtm]->xForm(rMatrix);
642 break; 642 break;
643 case HSBSliderMid: 643 case HSBSliderMid:
644 pixmaps[HSBSliderMid] = processEmbedded("sbslider_mid", btnH, btnS, btnV); 644 pixmaps[HSBSliderMid] = processEmbedded("sbslider_mid", btnH, btnS, btnV);
645 *pixmaps[HSBSliderMid] = pixmaps[HSBSliderMid]->xForm(rMatrix); 645 *pixmaps[HSBSliderMid] = pixmaps[HSBSliderMid]->xForm(rMatrix);
646 break; 646 break;
647 case HSBSliderTopHover: 647 case HSBSliderTopHover:
648 pixmaps[HSBSliderTopHover] = processEmbedded("sbslider_top", btnHoverH, btnHoverS, btnHoverV, true); 648 pixmaps[HSBSliderTopHover] = processEmbedded("sbslider_top", btnHoverH, btnHoverS, btnHoverV, true);
649 *pixmaps[HSBSliderTopHover] = pixmaps[HSBSliderTopHover]->xForm(rMatrix); 649 *pixmaps[HSBSliderTopHover] = pixmaps[HSBSliderTopHover]->xForm(rMatrix);
650 break; 650 break;
651 case HSBSliderBtmHover: 651 case HSBSliderBtmHover:
652 pixmaps[HSBSliderBtmHover] = processEmbedded("sbslider_btm", btnHoverH, btnHoverS, btnHoverV, true); 652 pixmaps[HSBSliderBtmHover] = processEmbedded("sbslider_btm", btnHoverH, btnHoverS, btnHoverV, true);
653 *pixmaps[HSBSliderBtmHover] = pixmaps[HSBSliderBtmHover]->xForm(rMatrix); 653 *pixmaps[HSBSliderBtmHover] = pixmaps[HSBSliderBtmHover]->xForm(rMatrix);
654 break; 654 break;
655 case HSBSliderMidHover: 655 case HSBSliderMidHover:
656 pixmaps[HSBSliderMidHover] = processEmbedded("sbslider_mid", btnHoverH, btnHoverS, btnHoverV); 656 pixmaps[HSBSliderMidHover] = processEmbedded("sbslider_mid", btnHoverH, btnHoverS, btnHoverV);
657 *pixmaps[HSBSliderMidHover] = pixmaps[HSBSliderMidHover]->xForm(rMatrix); 657 *pixmaps[HSBSliderMidHover] = pixmaps[HSBSliderMidHover]->xForm(rMatrix);
658 break; 658 break;
659 case VSBSliderTopBg: 659 case VSBSliderTopBg:
660 pixmaps[VSBSliderTopBg] = processEmbedded("sbslider_top", bH, bS, bV, true); 660 pixmaps[VSBSliderTopBg] = processEmbedded("sbslider_top", bH, bS, bV, true);
661 break; 661 break;
662 case VSBSliderBtmBg: 662 case VSBSliderBtmBg:
663 pixmaps[VSBSliderBtmBg] = processEmbedded("sbslider_btm", bH, bS, bV, true); 663 pixmaps[VSBSliderBtmBg] = processEmbedded("sbslider_btm", bH, bS, bV, true);
664 break; 664 break;
665 case VSBSliderMidBg: 665 case VSBSliderMidBg:
666 pixmaps[VSBSliderMidBg] = processEmbedded("sbslider_mid", bH, bS, bV); 666 pixmaps[VSBSliderMidBg] = processEmbedded("sbslider_mid", bH, bS, bV);
667 break; 667 break;
668 case HSBSliderTopBg: 668 case HSBSliderTopBg:
669 pixmaps[HSBSliderTopBg] = processEmbedded("sbslider_top", bH, bS, bV, true); 669 pixmaps[HSBSliderTopBg] = processEmbedded("sbslider_top", bH, bS, bV, true);
670 *pixmaps[HSBSliderTopBg] = pixmaps[HSBSliderTopBg]->xForm(rMatrix); 670 *pixmaps[HSBSliderTopBg] = pixmaps[HSBSliderTopBg]->xForm(rMatrix);
671 break; 671 break;
672 case HSBSliderBtmBg: 672 case HSBSliderBtmBg:
673 pixmaps[HSBSliderBtmBg] = processEmbedded("sbslider_btm", bH, bS, bV, true); 673 pixmaps[HSBSliderBtmBg] = processEmbedded("sbslider_btm", bH, bS, bV, true);
674 *pixmaps[HSBSliderBtmBg] = pixmaps[HSBSliderBtmBg]->xForm(rMatrix); 674 *pixmaps[HSBSliderBtmBg] = pixmaps[HSBSliderBtmBg]->xForm(rMatrix);
675 break; 675 break;
676 case HSBSliderMidBg: 676 case HSBSliderMidBg:
677 pixmaps[HSBSliderMidBg] = processEmbedded("sbslider_mid", bH, bS, bV); 677 pixmaps[HSBSliderMidBg] = processEmbedded("sbslider_mid", bH, bS, bV);
678 *pixmaps[HSBSliderMidBg] = pixmaps[HSBSliderMidBg]->xForm(rMatrix); 678 *pixmaps[HSBSliderMidBg] = pixmaps[HSBSliderMidBg]->xForm(rMatrix);
679 break; 679 break;
680 default: 680 default:
681 break; 681 break;
682 } 682 }
683 return(pixmaps[item]); 683 return(pixmaps[item]);
684} 684}
685 685
686void LiquidStyle::polish(QPalette &appPal) 686void LiquidStyle::polish(QPalette &appPal)
687{ 687{
688 int i; 688 int i;
689 for(i=0; i < BITMAP_ITEMS; ++i){ 689 for(i=0; i < BITMAP_ITEMS; ++i){
690 if(pixmaps[i]){ 690 if(pixmaps[i]){
691 delete pixmaps[i]; 691 delete pixmaps[i];
692 pixmaps[i] = NULL; 692 pixmaps[i] = NULL;
693 } 693 }
694 } 694 }
695 QWidgetList *list = QApplication::allWidgets(); 695 QWidgetList *list = QApplication::allWidgets();
696 QWidgetListIt it( *list ); 696 QWidgetListIt it( *list );
697 QWidget *w; 697 QWidget *w;
698 while ((w=it.current()) != 0 ){ 698 while ((w=it.current()) != 0 ){
699 ++it; 699 ++it;
700 if(w->inherits("QPushButton")){ 700 if(w->inherits("QPushButton")){
701 unapplyCustomAttributes((QPushButton *)w); 701 unapplyCustomAttributes((QPushButton *)w);
702 } 702 }
703 } 703 }
704 704
705 loadCustomButtons(); 705 loadCustomButtons();
706 lowLightVal = 100 + (2* /*KGlobalSettings::contrast()*/ 3 +4)*10; 706 lowLightVal = 100 + (2* /*KGlobalSettings::contrast()*/ 3 +4)*10;
707 btnDict.clear(); 707 btnDict.clear();
708 btnBorderDict.clear(); 708 btnBorderDict.clear();
709 bevelFillDict.clear(); 709 bevelFillDict.clear();
710 smallBevelFillDict.clear(); 710 smallBevelFillDict.clear();
711 711
712 Config config ( "qpe" ); 712 Config config ( "qpe" );
713 config. setGroup ( "Liquid-Style" ); 713 config. setGroup ( "Liquid-Style" );
714 int contrast = config. readNumEntry ( "StippleContrast", 5 ); 714 int contrast = config. readNumEntry ( "StippleContrast", 5 );
715 if ( contrast < 0 ) 715 if ( contrast < 0 )
716 contrast = 0; 716 contrast = 0;
717 else if ( contrast > 10 ) 717 else if ( contrast > 10 )
718 contrast = 10; 718 contrast = 10;
719 719
720// QPalette pal = QApplication::palette(); 720// QPalette pal = QApplication::palette();
721 721
722 // button color stuff 722 // button color stuff
723 config. setGroup ( "Appearance" ); 723 config. setGroup ( "Appearance" );
724 QColor c = // QColor ( config. readEntry("Button", ( Qt::lightGray ). name ( ))); 724 QColor c = // QColor ( config. readEntry("Button", ( Qt::lightGray ). name ( )));
725 appPal. color ( QPalette::Active, QColorGroup::Button ); 725 appPal. color ( QPalette::Active, QColorGroup::Button );
726 if ( c == appPal. color ( QPalette::Active, QColorGroup::Background ) 726 if ( c == appPal. color ( QPalette::Active, QColorGroup::Background )
727 //QColor ( config. readEntry ( "background", ( Qt::lightGray ). name ( ))) 727 //QColor ( config. readEntry ( "background", ( Qt::lightGray ). name ( )))
728 ) { 728 ) {
729 // force button color to be different from background 729 // force button color to be different from background
730 QBrush btnBrush(QColor(200, 202, 228)); 730 QBrush btnBrush(QColor(200, 202, 228));
731 appPal.setBrush(QColorGroup::Button, btnBrush); 731 appPal.setBrush(QColorGroup::Button, btnBrush);
732 } 732 }
733 c.hsv(&btnH, &btnS, &btnV); 733 c.hsv(&btnH, &btnS, &btnV);
734 c.light(120).hsv(&btnHoverH, &btnHoverS, &btnHoverV); 734 c.light(120).hsv(&btnHoverH, &btnHoverS, &btnHoverV);
735 735
736 // menu pixmap 736 // menu pixmap
737 if(!menuPix){ 737 if(!menuPix){
738 menuPix = new QPixmap; 738 menuPix = new QPixmap;
739 menuPix->resize(64, 64); 739 menuPix->resize(64, 64);
740 } 740 }
741 QPainter painter; 741 QPainter painter;
742 menuPix->fill(c.rgb()); 742 menuPix->fill(c.rgb());
743 painter.begin(menuPix); 743 painter.begin(menuPix);
744 painter.setPen(c.dark(105)); 744 painter.setPen(c.dark(105));
745 for(i=0; i < 63; i+=4){ 745 for(i=0; i < 63; i+=4){
746 painter.drawLine(0, i, 63, i); 746 painter.drawLine(0, i, 63, i);
747 painter.drawLine(0, i+1, 63, i+1); 747 painter.drawLine(0, i+1, 63, i+1);
748 }; 748 };
749 painter.end(); 749 painter.end();
750 menuBrush.setColor(c); 750 menuBrush.setColor(c);
751 menuBrush.setPixmap(*menuPix); 751 menuBrush.setPixmap(*menuPix);
752 752
753 // pager brush 753 // pager brush
754 c = c.dark(120); 754 c = c.dark(120);
755 QPixmap *pix = smallBevelFillDict.find(c.rgb()); // better be NULL ;-) 755 QPixmap *pix = smallBevelFillDict.find(c.rgb()); // better be NULL ;-)
756 if(!pix){ 756 if(!pix){
757 int h, s, v; 757 int h, s, v;
758 c.hsv(&h, &s, &v); 758 c.hsv(&h, &s, &v);
759 pix = new QPixmap(*smallBevelFillPix); 759 pix = new QPixmap(*smallBevelFillPix);
760 adjustHSV(*pix, h, s, v); 760 adjustHSV(*pix, h, s, v);
761 smallBevelFillDict.insert(c.rgb(), pix); 761 smallBevelFillDict.insert(c.rgb(), pix);
762 } 762 }
763 pagerHoverBrush.setColor(c); 763 pagerHoverBrush.setColor(c);
764 pagerHoverBrush.setPixmap(*pix); 764 pagerHoverBrush.setPixmap(*pix);
765 765
766 c = c.dark(120); 766 c = c.dark(120);
767 pix = smallBevelFillDict.find(c.rgb()); // better be NULL ;-) 767 pix = smallBevelFillDict.find(c.rgb()); // better be NULL ;-)
768 if(!pix){ 768 if(!pix){
769 int h, s, v; 769 int h, s, v;
770 c.hsv(&h, &s, &v); 770 c.hsv(&h, &s, &v);
771 pix = new QPixmap(*smallBevelFillPix); 771 pix = new QPixmap(*smallBevelFillPix);
772 adjustHSV(*pix, h, s, v); 772 adjustHSV(*pix, h, s, v);
773 smallBevelFillDict.insert(c.rgb(), pix); 773 smallBevelFillDict.insert(c.rgb(), pix);
774 } 774 }
775 pagerBrush.setColor(c); 775 pagerBrush.setColor(c);
776 pagerBrush.setPixmap(*pix); 776 pagerBrush.setPixmap(*pix);
777 777
778 // background color stuff 778 // background color stuff
779 c = /*QColor ( config. readEntry ( "Background", ( Qt::lightGray ).name ( )));*/ appPal. color ( QPalette::Active, QColorGroup::Background ); 779 c = /*QColor ( config. readEntry ( "Background", ( Qt::lightGray ).name ( )));*/ appPal. color ( QPalette::Active, QColorGroup::Background );
780 c.hsv(&bH, &bS, &bV); 780 c.hsv(&bH, &bS, &bV);
781 c.light(120).hsv(&bHoverH, &bHoverS, &bHoverV); 781 c.light(120).hsv(&bHoverH, &bHoverS, &bHoverV);
782 782
783 // FIXME? 783 // FIXME?
784 if(vsbSliderFillPix) 784 if(vsbSliderFillPix)
785 delete vsbSliderFillPix; 785 delete vsbSliderFillPix;
786 vsbSliderFillPix = new QPixmap(bevelFillPix->xForm(rMatrix)); 786 vsbSliderFillPix = new QPixmap(bevelFillPix->xForm(rMatrix));
787 adjustHSV(*vsbSliderFillPix, bH, bS, bV); 787 adjustHSV(*vsbSliderFillPix, bH, bS, bV);
788 788
789 // background brush 789 // background brush
790 QPixmap wallPaper(32, 32); 790 QPixmap wallPaper(32, 32);
791 wallPaper.fill(c.rgb()); 791 wallPaper.fill(c.rgb());
792 painter.begin(&wallPaper); 792 painter.begin(&wallPaper);
793 for(i=0; i < 32; i+=4){ 793 for(i=0; i < 32; i+=4){
794 painter.setPen(c.dark(100 + contrast)); 794 painter.setPen(c.dark(100 + contrast));
795 painter.drawLine(0, i, 32, i); 795 painter.drawLine(0, i, 32, i);
796 painter.setPen(c.dark(100 + 3 * contrast / 5 ) ); 796 painter.setPen(c.dark(100 + 3 * contrast / 5 ) );
797 painter.drawLine(0, i+1, 32, i+1); 797 painter.drawLine(0, i+1, 32, i+1);
798 }; 798 };
799 painter.end(); 799 painter.end();
800 bgBrush.setColor(c); 800 bgBrush.setColor(c);
801 bgBrush.setPixmap(wallPaper); 801 bgBrush.setPixmap(wallPaper);
802 appPal.setBrush(QColorGroup::Background, bgBrush); 802 appPal.setBrush(QColorGroup::Background, bgBrush);
803 803
804 // lineedits 804 // lineedits
805 c = /*QColor ( config. readEntry("Base", ( Qt::white). name ( )));*/ appPal. color ( QPalette::Active, QColorGroup::Base ); 805 c = /*QColor ( config. readEntry("Base", ( Qt::white). name ( )));*/ appPal. color ( QPalette::Active, QColorGroup::Base );
806 QPixmap basePix; 806 QPixmap basePix;
807 basePix.resize(32, 32); 807 basePix.resize(32, 32);
808 basePix.fill(c.rgb()); 808 basePix.fill(c.rgb());
809 painter.begin(&basePix); 809 painter.begin(&basePix);
810 painter.setPen(c.dark(105)); 810 painter.setPen(c.dark(105));
811 for(i=0; i < 32; i+=4){ 811 for(i=0; i < 32; i+=4){
812 painter.drawLine(0, i, 32, i); 812 painter.drawLine(0, i, 32, i);
813 painter.drawLine(0, i+1, 32, i+1); 813 painter.drawLine(0, i+1, 32, i+1);
814 }; 814 };
815 painter.end(); 815 painter.end();
816 baseBrush.setColor(c); 816 baseBrush.setColor(c);
817 baseBrush.setPixmap(basePix); 817 baseBrush.setPixmap(basePix);
818 it.toFirst(); 818 it.toFirst();
819 while ((w=it.current()) != 0 ){ 819 while ((w=it.current()) != 0 ){
820 ++it; 820 ++it;
821 if(w->inherits("QLineEdit")){ 821 if(w->inherits("QLineEdit")){
822 QPalette pal = w->palette(); 822 QPalette pal = w->palette();
823 pal.setBrush(QColorGroup::Base, baseBrush); 823 pal.setBrush(QColorGroup::Base, baseBrush);
824 w->setPalette(pal); 824 w->setPalette(pal);
825 } 825 }
826 else if(w->inherits("QPushButton")){ 826 else if(w->inherits("QPushButton")){
827 applyCustomAttributes((QPushButton *)w); 827 applyCustomAttributes((QPushButton *)w);
828 } 828 }
829 } 829 }
830} 830}
831 831
832void LiquidStyle::polish(QWidget *w) 832void LiquidStyle::polish(QWidget *w)
833{ 833{
834 if(w->inherits("QMenuBar")){ 834 if(w->inherits("QMenuBar")){
835 //((QFrame*)w)->setLineWidth(0); 835 //((QFrame*)w)->setLineWidth(0);
836 w->setBackgroundMode(QWidget::PaletteBackground); 836 w->setBackgroundMode(QWidget::PaletteBackground);
837 w->setBackgroundOrigin(QWidget::ParentOrigin); 837 w->setBackgroundOrigin(QWidget::ParentOrigin);
838 return; 838 return;
839 } 839 }
840 if(w->inherits("QToolBar")){ 840 if(w->inherits("QToolBar")){
841 w->installEventFilter(this); 841 w->installEventFilter(this);
842 w->setBackgroundMode(QWidget::PaletteBackground); 842 w->setBackgroundMode(QWidget::PaletteBackground);
843 w->setBackgroundOrigin(QWidget::WidgetOrigin); 843 w->setBackgroundOrigin(QWidget::WidgetOrigin);
844 return; 844 return;
845 } 845 }
846 if(w->inherits("QPopupMenu")) 846 if(w->inherits("QPopupMenu"))
847 w->setBackgroundMode(QWidget::NoBackground); 847 w->setBackgroundMode(QWidget::NoBackground);
848 else if(w-> testWFlags(Qt::WType_Popup) && !w->inherits("QListBox")) { 848 else if(w-> testWFlags(Qt::WType_Popup) && !w->inherits("QListBox")) {
849 w->installEventFilter(menuHandler); 849 w->installEventFilter(menuHandler);
850 } 850 }
851 851
852 if(w->isTopLevel()){ 852 if(w->isTopLevel()){
853 return; 853 return;
854 } 854 }
855 855
856 856
857 if ( !w-> inherits("QFrame") || (((QFrame*) w)-> frameShape () == QFrame::NoFrame )) 857
858 w-> setBackgroundOrigin ( QWidget::ParentOrigin );
859 858
860 if(w->inherits("QComboBox") || 859 if(w->inherits("QComboBox") ||
861 w->inherits("QLineEdit") || w->inherits("QRadioButton") || 860 w->inherits("QLineEdit") || w->inherits("QRadioButton") ||
862 w->inherits("QCheckBox") || w->inherits("QScrollBar")) { 861 w->inherits("QCheckBox") || w->inherits("QScrollBar")) {
863 w->installEventFilter(this); 862 w->installEventFilter(this);
864 } 863 }
865 if(w->inherits("QLineEdit")){ 864 if(w->inherits("QLineEdit")){
866 QPalette pal = w->palette(); 865 QPalette pal = w->palette();
867 pal.setBrush(QColorGroup::Base, baseBrush); 866 pal.setBrush(QColorGroup::Base, baseBrush);
868 w->setPalette(pal); 867 w->setPalette(pal);
869 } 868 }
870 if(w->inherits("QPushButton")){ 869 if(w->inherits("QPushButton")){
871 applyCustomAttributes((QPushButton *)w); 870 applyCustomAttributes((QPushButton *)w);
872 w->installEventFilter(this); 871 w->installEventFilter(this);
873 } 872 }
874 if(w->inherits("QButton") || w-> inherits("QComboBox")){ 873 if(w->inherits("QButton") || w-> inherits("QComboBox")){
875 w-> setBackgroundMode ( QWidget::PaletteBackground ); 874 w-> setBackgroundMode ( QWidget::PaletteBackground );
875 w->setBackgroundOrigin ( QWidget::ParentOrigin);
876 } 876 }
877 877
878 bool isViewport = qstrcmp(w->name(), "qt_viewport") == 0 || 878 bool isViewport = qstrcmp(w->name(), "qt_viewport") == 0 ||
879 qstrcmp(w->name(), "qt_clipped_viewport") == 0; 879 qstrcmp(w->name(), "qt_clipped_viewport") == 0;
880 bool isViewportChild = w->parent() && 880 bool isViewportChild = w->parent() &&
881 ((qstrcmp(w->parent()->name(), "qt_viewport") == 0) || 881 ((qstrcmp(w->parent()->name(), "qt_viewport") == 0) ||
882 (qstrcmp(w->parent()->name(), "qt_clipped_viewport") == 0)); 882 (qstrcmp(w->parent()->name(), "qt_clipped_viewport") == 0));
883 883
884 if(isViewport && w->parent() && qstrcmp(w->parent()->name(), "proxyview") == 0){ 884 if(isViewport && w->parent() && qstrcmp(w->parent()->name(), "proxyview") == 0){
885 w->setBackgroundMode(QWidget::X11ParentRelative); 885 w->setBackgroundMode(QWidget::X11ParentRelative);
886 return; 886 return;
887 } 887 }
888 if(isViewportChild){ 888 if(isViewportChild){
889 if(w->inherits("QButton") || w->inherits("QComboBox")){ 889 if(w->inherits("QButton") || w->inherits("QComboBox")){
890 if(w->parent()){ // heh, only way to test for KHTML children ;-) 890 if(w->parent()){ // heh, only way to test for KHTML children ;-)
891 if(w->parent()->parent()){ 891 if(w->parent()->parent()){
892 if(w->parent()->parent()->parent() && 892 if(w->parent()->parent()->parent() &&
893 w->parent()->parent()->parent()->inherits("KHTMLView")){ 893 w->parent()->parent()->parent()->inherits("KHTMLView")){
894 w->setAutoMask(true); 894 w->setAutoMask(true);
895 w->setBackgroundMode(QWidget::NoBackground); 895 w->setBackgroundMode(QWidget::NoBackground);
896 } 896 }
897 } 897 }
898 } 898 }
899 return; 899 return;
900 } 900 }
901 } 901 }
902 if(w->inherits("QHeader")){ 902 if(w->inherits("QHeader")){
903 w->setMouseTracking(true); 903 w->setMouseTracking(true);
904 w->installEventFilter(this); 904 w->installEventFilter(this);
905 } 905 }
906 if(w-> inherits("QToolButton")&&w->parent()->inherits("QToolBar")) { 906 if(w-> inherits("QToolButton")&&w->parent()->inherits("QToolBar")) {
907 ((QToolButton*)w)->setAutoRaise (flatTBButtons); 907 ((QToolButton*)w)->setAutoRaise (flatTBButtons);
908 if ( flatTBButtons ) 908 if ( flatTBButtons )
909 w->setBackgroundOrigin(QWidget::ParentOrigin); 909 w->setBackgroundOrigin(QWidget::ParentOrigin);
910 } 910 }
911 if(w-> inherits("QToolBarSeparator")&&w->parent()->inherits("QToolBar")) {
912 ((QFrame *) w)-> setFrameShape ( QFrame::NoFrame );
913 }
911 if(w->ownPalette() && !w->inherits("QButton") && !w->inherits("QComboBox")){ 914 if(w->ownPalette() && !w->inherits("QButton") && !w->inherits("QComboBox")){
912 return; 915 return;
913 } 916 }
914 917
915 if(w->parent() && w->parent()->isWidgetType() && !((QWidget*)w->parent())-> 918 if(w->parent() && w->parent()->isWidgetType() && !((QWidget*)w->parent())->
916 palette().active().brush(QColorGroup::Background).pixmap()){ 919 palette().active().brush(QColorGroup::Background).pixmap()){
917 qWarning("No parent pixmap for child widget %s", w->className()); 920 qWarning("No parent pixmap for child widget %s", w->className());
918 return; 921 return;
919 } 922 }
920 if(!isViewport && !isViewportChild && !w->testWFlags(WType_Popup) && 923 if(!isViewport && !isViewportChild && !w->testWFlags(WType_Popup) &&
921 !( !w-> inherits("QLineEdit") && w-> parent() && w-> parent()-> isWidgetType ( ) && w-> parent()-> inherits ( "QMultiLineEdit" ))) { 924 !( !w-> inherits("QLineEdit") && w-> parent() && w-> parent()-> isWidgetType ( ) && w-> parent()-> inherits ( "QMultiLineEdit" ))) {
922 if(w->backgroundMode() == QWidget::PaletteBackground || 925 if(w->backgroundMode() == QWidget::PaletteBackground ||
923 w->backgroundMode() == QWidget::PaletteButton){ 926 w->backgroundMode() == QWidget::PaletteButton){
924 w->setBackgroundMode(QWidget::X11ParentRelative); 927 w->setBackgroundMode(w->parentWidget()->backgroundMode( )/*QWidget::X11ParentRelative*/);
928 w->setBackgroundOrigin(QWidget::ParentOrigin);
929 // w->setBackgroundMode(QWidget::NoBackground);
925 } 930 }
926 } 931 }
932 if ( !w-> inherits("QFrame") || (((QFrame*) w)-> frameShape () == QFrame::NoFrame ))
933 w-> setBackgroundOrigin ( QWidget::ParentOrigin );
934 else if ( w-> inherits("QFrame") )
935 w->setBackgroundOrigin ( QWidget::WidgetOrigin );
927 936
937 if ( w->parentWidget()->inherits ( "QWidgetStack" )) {
938 w->setBackgroundOrigin ( QWidget::WidgetOrigin );
939 }
928} 940}
929 941
930void LiquidStyle::unPolish(QWidget *w) 942void LiquidStyle::unPolish(QWidget *w)
931{ 943{
932 if(w->inherits("QMenuBar")){ 944 if(w->inherits("QMenuBar")){
933 ((QFrame *)w)->setLineWidth(1); 945 ((QFrame *)w)->setLineWidth(1);
934 w->setBackgroundMode(QWidget::PaletteBackground); 946 w->setBackgroundMode(QWidget::PaletteBackground);
935 return; 947 return;
936 } 948 }
937 949
938 if(w->inherits("QPopupMenu")) 950 if(w->inherits("QPopupMenu"))
939 w->setBackgroundMode(QWidget::PaletteButton); 951 w->setBackgroundMode(QWidget::PaletteButton);
940 else if(w-> testWFlags(Qt::WType_Popup) && !w->inherits("QListBox")) { 952 else if(w-> testWFlags(Qt::WType_Popup) && !w->inherits("QListBox")) {
941 w->removeEventFilter(menuHandler); 953 w->removeEventFilter(menuHandler);
942 } 954 }
943 955
944 if(w->isTopLevel()) 956 if(w->isTopLevel())
945 return; 957 return;
946 958
947 // for viewport children, don't just check for NoBackground.... 959 // for viewport children, don't just check for NoBackground....
948 bool isViewportChild = w->parent() && 960 bool isViewportChild = w->parent() &&
949 ((qstrcmp(w->parent()->name(), "qt_viewport") == 0) || 961 ((qstrcmp(w->parent()->name(), "qt_viewport") == 0) ||
950 (qstrcmp(w->parent()->name(), "qt_clipped_viewport") == 0)); 962 (qstrcmp(w->parent()->name(), "qt_clipped_viewport") == 0));
951 963
952 w->unsetPalette(); 964 w->unsetPalette();
953 if(w->backgroundMode() == QWidget::X11ParentRelative || isViewportChild){ 965 if(w->backgroundMode() == QWidget::X11ParentRelative || isViewportChild){
954 if(w->inherits("QPushButton")) 966 if(w->inherits("QPushButton"))
955 w->setBackgroundMode(QWidget::PaletteButton); 967 w->setBackgroundMode(QWidget::PaletteButton);
956 else 968 else
957 w->setBackgroundMode(QWidget::PaletteBackground); 969 w->setBackgroundMode(QWidget::PaletteBackground);
958 } 970 }
959 971
960 if(isViewportChild) 972 if(isViewportChild)
961 w->setAutoMask(false); 973 w->setAutoMask(false);
962 974
963 if(w->inherits("QPushButton")){ 975 if(w->inherits("QPushButton")){
964 unapplyCustomAttributes((QPushButton *)w); 976 unapplyCustomAttributes((QPushButton *)w);
965 w->removeEventFilter(this); 977 w->removeEventFilter(this);
966 } 978 }
967/* 979/*
968 if(w->inherits("QPushButton") || w-> inherits("QComboBox")){ 980 if(w->inherits("QPushButton") || w-> inherits("QComboBox")){
969 w-> setBackgroundMode ( PaletteBackground ); 981 w-> setBackgroundMode ( PaletteBackground );
970 } 982 }
971*/ 983*/
972 if(w->inherits("QComboBox") || 984 if(w->inherits("QComboBox") ||
973 w->inherits("QLineEdit") || w->inherits("QRadioButton") || 985 w->inherits("QLineEdit") || w->inherits("QRadioButton") ||
974 w->inherits("QCheckBox") || w->inherits("QScrollBar")) { 986 w->inherits("QCheckBox") || w->inherits("QScrollBar")) {
975 w->removeEventFilter(this); 987 w->removeEventFilter(this);
976 } 988 }
977 if(w->inherits("QButton") || w->inherits("QComboBox")){ 989 if(w->inherits("QButton") || w->inherits("QComboBox")){
978 if(w->parent() && w->parent()->inherits("KHTMLPart")){ 990 if(w->parent() && w->parent()->inherits("KHTMLPart")){
979 w->setAutoMask(false); 991 w->setAutoMask(false);
980 } 992 }
981 } 993 }
982 if(w->inherits("QToolBar")){ 994 if(w->inherits("QToolBar")){
983 w->removeEventFilter(this); 995 w->removeEventFilter(this);
984 w->setBackgroundMode(QWidget::PaletteBackground); 996 w->setBackgroundMode(QWidget::PaletteBackground);
985 return; 997 return;
986 } 998 }
987 if(w->inherits("QHeader")){ 999 if(w->inherits("QHeader")){
988 w->setMouseTracking(false); 1000 w->setMouseTracking(false);
989 w->removeEventFilter(this); 1001 w->removeEventFilter(this);
990 } 1002 }
991} 1003}
992 1004
993void LiquidStyle::polish(QApplication *app) 1005void LiquidStyle::polish(QApplication *app)
994{ 1006{
995 1007
996 QWindowsStyle::polish(app); 1008 QWindowsStyle::polish(app);
997 menuAni = app->isEffectEnabled(UI_AnimateMenu); 1009 menuAni = app->isEffectEnabled(UI_AnimateMenu);
998 menuFade = app->isEffectEnabled(UI_FadeMenu); 1010 menuFade = app->isEffectEnabled(UI_FadeMenu);
999 if(menuAni) 1011 if(menuAni)
1000 app->setEffectEnabled(UI_AnimateMenu, false); 1012 app->setEffectEnabled(UI_AnimateMenu, false);
1001 if(menuFade) 1013 if(menuFade)
1002 app->setEffectEnabled(UI_FadeMenu, false); 1014 app->setEffectEnabled(UI_FadeMenu, false);
1003 1015
1004 qt_set_draw_menu_bar_impl((QDrawMenuBarItemImpl) &LiquidStyle::drawMenuBarItem); 1016 qt_set_draw_menu_bar_impl((QDrawMenuBarItemImpl) &LiquidStyle::drawMenuBarItem);
1005 1017
1006 Config config ( "qpe" ); 1018 Config config ( "qpe" );
1007 config. setGroup ( "Liquid-Style" ); 1019 config. setGroup ( "Liquid-Style" );
1008 1020
1009 // if ( config. readBoolEntry ( "WinDecoration", true )) 1021 // if ( config. readBoolEntry ( "WinDecoration", true ))
1010 // QApplication::qwsSetDecoration ( new LiquidDecoration ( )); 1022 // QApplication::qwsSetDecoration ( new LiquidDecoration ( ));
1011 1023
1012 flatTBButtons = config. readBoolEntry ( "FlatToolButtons", false ); 1024 flatTBButtons = config. readBoolEntry ( "FlatToolButtons", false );
1013} 1025}
1014 1026
1015void LiquidStyle::unPolish(QApplication *app) 1027void LiquidStyle::unPolish(QApplication *app)
1016{ 1028{
1017 QWindowsStyle::unPolish(app); 1029 QWindowsStyle::unPolish(app);
1018 app->setEffectEnabled(UI_AnimateMenu, menuAni); 1030 app->setEffectEnabled(UI_AnimateMenu, menuAni);
1019 app->setEffectEnabled(UI_FadeMenu, menuFade); 1031 app->setEffectEnabled(UI_FadeMenu, menuFade);
1020 1032
1021 qt_set_draw_menu_bar_impl ( 0 ); 1033 qt_set_draw_menu_bar_impl ( 0 );
1022 1034
1023// QApplication::qwsSetDecoration ( new QPEDecoration ( )); 1035// QApplication::qwsSetDecoration ( new QPEDecoration ( ));
1024} 1036}
1025 1037
1026/* 1038/*
1027 * This is a fun method ;-) Here's an overview. KToolBar grabs resize to 1039 * This is a fun method ;-) Here's an overview. KToolBar grabs resize to
1028 * force everything to erase and repaint on resize. This is going away, I'm 1040 * force everything to erase and repaint on resize. This is going away, I'm
1029 * trying to get shaped widgets to work right without masking. QPushButton, 1041 * trying to get shaped widgets to work right without masking. QPushButton,
1030 * QComboBox, and Panel applet handles capture mouse enter and leaves in order 1042 * QComboBox, and Panel applet handles capture mouse enter and leaves in order
1031 * to set the highlightwidget and repaint for mouse hovers. CheckBoxes and 1043 * to set the highlightwidget and repaint for mouse hovers. CheckBoxes and
1032 * RadioButtons need to do this differently. Qt buffers these in pixmaps and 1044 * RadioButtons need to do this differently. Qt buffers these in pixmaps and
1033 * caches them in QPixmapCache, which is bad for doing things like hover 1045 * caches them in QPixmapCache, which is bad for doing things like hover
1034 * because the style methods aren't called in paintEvents if everything 1046 * because the style methods aren't called in paintEvents if everything
1035 * is cached. We use our own Paint event handler instead. Taskbuttons and 1047 * is cached. We use our own Paint event handler instead. Taskbuttons and
1036 * pager buttons draw into a pixmap buffer, so we handle those with palette 1048 * pager buttons draw into a pixmap buffer, so we handle those with palette
1037 * modifications. For QHeader, different header items are actually one widget 1049 * modifications. For QHeader, different header items are actually one widget
1038 * that draws multiple items, so we need to check which ID is hightlighted 1050 * that draws multiple items, so we need to check which ID is hightlighted
1039 * and draw it. Finally, we also check enter and leave events for QLineEdit, 1051 * and draw it. Finally, we also check enter and leave events for QLineEdit,
1040 * since if it's inside a combobox we want to highlight the combobox during 1052 * since if it's inside a combobox we want to highlight the combobox during
1041 * hovering in the edit. 1053 * hovering in the edit.
1042 */ 1054 */
1043bool LiquidStyle::eventFilter(QObject *obj, QEvent *ev) 1055bool LiquidStyle::eventFilter(QObject *obj, QEvent *ev)
1044{ 1056{
1045 if(obj->inherits("QToolBar")){ 1057 if(obj->inherits("QToolBar")){
1046 if(ev->type() == QEvent::Resize){ 1058 if(ev->type() == QEvent::Resize){
1047 const QObjectList *tbChildList = obj->children(); 1059 const QObjectList *tbChildList = obj->children();
1048 QObjectListIt it(*tbChildList); 1060 QObjectListIt it(*tbChildList);
1049 QObject *child; 1061 QObject *child;
1050 while((child = it.current()) != NULL){ 1062 while((child = it.current()) != NULL){
1051 ++it; 1063 ++it;
1052 if(child->isWidgetType()) 1064 if(child->isWidgetType())
1053 ((QWidget *)child)->repaint(true); 1065 ((QWidget *)child)->repaint(true);
1054 } 1066 }
1055 1067
1056 } 1068 }
1057 } 1069 }
1058 else if(obj->inherits("QPushButton") || obj->inherits("QComboBox")){ 1070 else if(obj->inherits("QPushButton") || obj->inherits("QComboBox")){
1059 QWidget *btn = (QWidget *)obj; 1071 QWidget *btn = (QWidget *)obj;
1060 if(ev->type() == QEvent::Enter){ 1072 if(ev->type() == QEvent::Enter){
1061 if(btn->isEnabled()){ 1073 if(btn->isEnabled()){
1062 highlightWidget = btn; 1074 highlightWidget = btn;
1063 btn->repaint(false); 1075 btn->repaint(false);
1064 } 1076 }
1065 } 1077 }
1066 else if(ev->type() == QEvent::Leave){ 1078 else if(ev->type() == QEvent::Leave){
1067 if(btn == highlightWidget){ 1079 if(btn == highlightWidget){
1068 highlightWidget = NULL; 1080 highlightWidget = NULL;
1069 btn->repaint(false); 1081 btn->repaint(false);
1070 } 1082 }
1071 } 1083 }
1072 } 1084 }
1073 else if(obj->inherits("QToolButton")){ 1085 else if(obj->inherits("QToolButton")){
1074 QToolButton *btn = (QToolButton *)btn; 1086 QToolButton *btn = (QToolButton *)btn;
1075 if(!btn->autoRaise()){ 1087 if(!btn->autoRaise()){
1076 if(btn->isEnabled()){ 1088 if(btn->isEnabled()){
1077 highlightWidget = btn; 1089 highlightWidget = btn;
1078 btn->repaint(false); 1090 btn->repaint(false);
1079 } 1091 }
1080 } 1092 }
1081 else if(ev->type() == QEvent::Leave){ 1093 else if(ev->type() == QEvent::Leave){
1082 QWidget *btn = (QWidget *)obj; 1094 QWidget *btn = (QWidget *)obj;
1083 if(btn == highlightWidget){ 1095 if(btn == highlightWidget){
1084 highlightWidget = NULL; 1096 highlightWidget = NULL;
1085 btn->repaint(false); 1097 btn->repaint(false);
1086 } 1098 }
1087 } 1099 }
1088 else 1100 else
1089 highlightWidget = NULL; 1101 highlightWidget = NULL;
1090 } 1102 }
1091 else if(obj->inherits("QScrollBar")){ 1103 else if(obj->inherits("QScrollBar")){
1092 QScrollBar *sb = (QScrollBar *)obj; 1104 QScrollBar *sb = (QScrollBar *)obj;
1093 if(ev->type() == QEvent::Enter){ 1105 if(ev->type() == QEvent::Enter){
1094 if(sb->isEnabled()){ 1106 if(sb->isEnabled()){
1095 highlightWidget = sb; 1107 highlightWidget = sb;
1096 sb->repaint(false); 1108 sb->repaint(false);
1097 } 1109 }
1098 } 1110 }
1099 else if(ev->type() == QEvent::Leave){ 1111 else if(ev->type() == QEvent::Leave){
1100 if(sb == highlightWidget && !sb->draggingSlider()){ 1112 if(sb == highlightWidget && !sb->draggingSlider()){
1101 highlightWidget = NULL; 1113 highlightWidget = NULL;
1102 sb->repaint(false); 1114 sb->repaint(false);
1103 } 1115 }
1104 } 1116 }
1105 else if(ev->type() == QEvent::MouseButtonRelease){ 1117 else if(ev->type() == QEvent::MouseButtonRelease){
1106 QMouseEvent *me = (QMouseEvent *)ev; 1118 QMouseEvent *me = (QMouseEvent *)ev;
1107 if(sb == highlightWidget && !sb->rect().contains(me->pos())){ 1119 if(sb == highlightWidget && !sb->rect().contains(me->pos())){
1108 highlightWidget = NULL; 1120 highlightWidget = NULL;
1109 sb->repaint(false); 1121 sb->repaint(false);
1110 } 1122 }
1111 } 1123 }
1112 } 1124 }
1113 else if(obj->inherits("QLineEdit")){ 1125 else if(obj->inherits("QLineEdit")){
1114 if(obj->parent() && obj->parent()->inherits("QComboBox")){ 1126 if(obj->parent() && obj->parent()->inherits("QComboBox")){
1115 QWidget *btn = (QComboBox *)obj->parent(); 1127 QWidget *btn = (QComboBox *)obj->parent();
1116 if(ev->type() == QEvent::Enter){ 1128 if(ev->type() == QEvent::Enter){
1117 if (btn->isEnabled()){ 1129 if (btn->isEnabled()){
1118 highlightWidget = btn; 1130 highlightWidget = btn;
1119 btn->repaint(false); 1131 btn->repaint(false);
1120 } 1132 }
1121 } 1133 }
1122 else if(ev->type() == QEvent::Leave){ 1134 else if(ev->type() == QEvent::Leave){
1123 if (btn == highlightWidget) 1135 if (btn == highlightWidget)
1124 highlightWidget = NULL; 1136 highlightWidget = NULL;
1125 btn->repaint(false); 1137 btn->repaint(false);
1126 } 1138 }
1127 } 1139 }
1128 } 1140 }
1129 else if(obj->inherits("QRadioButton") || obj->inherits("QCheckBox")){ 1141 else if(obj->inherits("QRadioButton") || obj->inherits("QCheckBox")){
1130 QButton *btn = (QButton *)obj; 1142 QButton *btn = (QButton *)obj;
1131 bool isRadio = obj->inherits("QRadioButton"); 1143 bool isRadio = obj->inherits("QRadioButton");
1132 if(ev->type() == QEvent::Paint){ 1144 if(ev->type() == QEvent::Paint){
1133 //if(btn->autoMask()) 1145 //if(btn->autoMask())
1134 btn->erase(); 1146 btn->erase();
1135 QPainter p; 1147 QPainter p;
1136 p.begin(btn); 1148 p.begin(btn);
1137 QFontMetrics fm = btn->fontMetrics(); 1149 QFontMetrics fm = btn->fontMetrics();
1138 QSize lsz = fm.size(ShowPrefix, btn->text()); 1150 QSize lsz = fm.size(ShowPrefix, btn->text());
1139 QSize sz = isRadio ? exclusiveIndicatorSize() 1151 QSize sz = isRadio ? exclusiveIndicatorSize()
1140 : indicatorSize(); 1152 : indicatorSize();
1141 1153
1142 if(btn->hasFocus()){ 1154 if(btn->hasFocus()){
1143 QRect r = QRect(0, 0, btn->width(), btn->height()); 1155 QRect r = QRect(0, 0, btn->width(), btn->height());
1144 p.setPen(btn->colorGroup().button().dark(140)); 1156 p.setPen(btn->colorGroup().button().dark(140));
1145 p.drawLine(r.x()+1, r.y(), r.right()-1, r.y()); 1157 p.drawLine(r.x()+1, r.y(), r.right()-1, r.y());
1146 p.drawLine(r.x(), r.y()+1, r.x(), r.bottom()-1); 1158 p.drawLine(r.x(), r.y()+1, r.x(), r.bottom()-1);
1147 p.drawLine(r.right(), r.y()+1, r.right(), r.bottom()-1); 1159 p.drawLine(r.right(), r.y()+1, r.right(), r.bottom()-1);
1148 p.drawLine(r.x()+1, r.bottom(), r.right()-1, r.bottom()); 1160 p.drawLine(r.x()+1, r.bottom(), r.right()-1, r.bottom());
1149 } 1161 }
1150 int x = 0; 1162 int x = 0;
1151 int y = (btn->height()-lsz.height()+fm.height()-sz.height())/2; 1163 int y = (btn->height()-lsz.height()+fm.height()-sz.height())/2;
1152 if(isRadio) 1164 if(isRadio)
1153 drawExclusiveIndicator(&p, x, y, sz.width(), sz.height(), 1165 drawExclusiveIndicator(&p, x, y, sz.width(), sz.height(),
1154 btn->colorGroup(), btn->isOn(), 1166 btn->colorGroup(), btn->isOn(),
1155 btn->isDown(), btn->isEnabled()); 1167 btn->isDown(), btn->isEnabled());
1156 else 1168 else
1157 drawIndicator(&p, x, y, sz.width(), sz.height(), 1169 drawIndicator(&p, x, y, sz.width(), sz.height(),
1158 btn->colorGroup(), btn->state(), btn->isDown(), 1170 btn->colorGroup(), btn->state(), btn->isDown(),
1159 btn->isEnabled()); 1171 btn->isEnabled());
1160 x = sz.width() + 6; 1172 x = sz.width() + 6;
1161 y = 0; 1173 y = 0;
1162 drawItem(&p, sz.width()+6+1, 0, btn->width()-(sz.width()+6+1), 1174 drawItem(&p, sz.width()+6+1, 0, btn->width()-(sz.width()+6+1),
1163 btn->height(), AlignLeft|AlignVCenter|ShowPrefix, 1175 btn->height(), AlignLeft|AlignVCenter|ShowPrefix,
1164 btn->colorGroup(), btn->isEnabled(), 1176 btn->colorGroup(), btn->isEnabled(),
1165 btn->pixmap(), btn->text()); 1177 btn->pixmap(), btn->text());
1166 p.end(); 1178 p.end();
1167 return(true); 1179 return(true);
1168 } 1180 }
1169 // for hover, just redraw the indicator (not the text) 1181 // for hover, just redraw the indicator (not the text)
1170 else if((ev->type() == QEvent::Enter && btn->isEnabled()) || 1182 else if((ev->type() == QEvent::Enter && btn->isEnabled()) ||
1171 (ev->type() == QEvent::Leave && btn == highlightWidget)){ 1183 (ev->type() == QEvent::Leave && btn == highlightWidget)){
1172 QButton *btn = (QButton *)obj; 1184 QButton *btn = (QButton *)obj;
1173 bool isRadio = obj->inherits("QRadioButton"); 1185 bool isRadio = obj->inherits("QRadioButton");
1174 1186
1175 if(ev->type() == QEvent::Enter) 1187 if(ev->type() == QEvent::Enter)
1176 highlightWidget = btn; 1188 highlightWidget = btn;
1177 else 1189 else
1178 highlightWidget = NULL; 1190 highlightWidget = NULL;
1179 QFontMetrics fm = btn->fontMetrics(); 1191 QFontMetrics fm = btn->fontMetrics();
1180 QSize lsz = fm.size(ShowPrefix, btn->text()); 1192 QSize lsz = fm.size(ShowPrefix, btn->text());
1181 QSize sz = isRadio ? exclusiveIndicatorSize() 1193 QSize sz = isRadio ? exclusiveIndicatorSize()
1182 : indicatorSize(); 1194 : indicatorSize();
1183 int x = 0; 1195 int x = 0;
1184 int y = (btn->height()-lsz.height()+fm.height()-sz.height())/2; 1196 int y = (btn->height()-lsz.height()+fm.height()-sz.height())/2;
1185 //if(btn->autoMask()) 1197 //if(btn->autoMask())
1186 // btn->erase(x+1, y+1, sz.width()-2, sz.height()-2); 1198 // btn->erase(x+1, y+1, sz.width()-2, sz.height()-2);
1187 QPainter p; 1199 QPainter p;
1188 p.begin(btn); 1200 p.begin(btn);
1189 if(isRadio) 1201 if(isRadio)
1190 drawExclusiveIndicator(&p, x, y, sz.width(), sz.height(), 1202 drawExclusiveIndicator(&p, x, y, sz.width(), sz.height(),
1191 btn->colorGroup(), btn->isOn(), 1203 btn->colorGroup(), btn->isOn(),
1192 btn->isDown(), btn->isEnabled()); 1204 btn->isDown(), btn->isEnabled());
1193 else 1205 else
1194 drawIndicator(&p, x, y, sz.width(), sz.height(), 1206 drawIndicator(&p, x, y, sz.width(), sz.height(),
1195 btn->colorGroup(), btn->state(), btn->isDown(), 1207 btn->colorGroup(), btn->state(), btn->isDown(),
1196 btn->isEnabled()); 1208 btn->isEnabled());
1197 p.end(); 1209 p.end();
1198 } 1210 }
1199 } 1211 }
1200 else if(obj->inherits("QHeader")){ 1212 else if(obj->inherits("QHeader")){
1201 QHeader *hw = (QHeader *)obj; 1213 QHeader *hw = (QHeader *)obj;
1202 if(ev->type() == QEvent::Enter){ 1214 if(ev->type() == QEvent::Enter){
1203 currentHeader = hw; 1215 currentHeader = hw;
1204 headerHoverID = -1; 1216 headerHoverID = -1;
1205 } 1217 }
1206 else if(ev->type() == QEvent::Leave){ 1218 else if(ev->type() == QEvent::Leave){
1207 currentHeader = NULL; 1219 currentHeader = NULL;
1208 if(headerHoverID != -1){ 1220 if(headerHoverID != -1){
1209 hw->repaint(hw->sectionPos(headerHoverID), 0, 1221 hw->repaint(hw->sectionPos(headerHoverID), 0,
1210 hw->sectionSize(headerHoverID), hw->height()); 1222 hw->sectionSize(headerHoverID), hw->height());
1211 } 1223 }
1212 headerHoverID = -1; 1224 headerHoverID = -1;
1213 } 1225 }
1214 else if(ev->type() == QEvent::MouseMove){ 1226 else if(ev->type() == QEvent::MouseMove){
1215 QMouseEvent *me = (QMouseEvent *)ev; 1227 QMouseEvent *me = (QMouseEvent *)ev;
1216 int oldHeader = headerHoverID; 1228 int oldHeader = headerHoverID;
1217 headerHoverID = hw->sectionAt(me->x()); 1229 headerHoverID = hw->sectionAt(me->x());
1218 if(oldHeader != headerHoverID){ 1230 if(oldHeader != headerHoverID){
1219 // reset old header 1231 // reset old header
1220 if(oldHeader != -1){ 1232 if(oldHeader != -1){
1221 hw->repaint(hw->sectionPos(oldHeader), 0, 1233 hw->repaint(hw->sectionPos(oldHeader), 0,
1222 hw->sectionSize(oldHeader), hw->height()); 1234 hw->sectionSize(oldHeader), hw->height());
1223 } 1235 }
1224 if(headerHoverID != -1){ 1236 if(headerHoverID != -1){
1225 hw->repaint(hw->sectionPos(headerHoverID), 0, 1237 hw->repaint(hw->sectionPos(headerHoverID), 0,
1226 hw->sectionSize(headerHoverID), hw->height()); 1238 hw->sectionSize(headerHoverID), hw->height());
1227 } 1239 }
1228 } 1240 }
1229 } 1241 }
1230 } 1242 }
1231 return(false); 1243 return(false);
1232} 1244}
1233 1245
1234void LiquidStyle::drawButton(QPainter *p, int x, int y, int w, int h, 1246void LiquidStyle::drawButton(QPainter *p, int x, int y, int w, int h,
1235 const QColorGroup &g, bool sunken, 1247 const QColorGroup &g, bool sunken,
1236 const QBrush *) 1248 const QBrush *)
1237{ 1249{
1238 drawRoundButton(p, sunken ? g.background() : g.button(), g.background(), 1250 drawRoundButton(p, sunken ? g.background() : g.button(), g.background(),
1239 x, y, w, h); 1251 x, y, w, h);
1240} 1252}
1241 1253
1242void LiquidStyle::drawToolButton(QPainter *p, int x, int y, int w, int h, 1254void LiquidStyle::drawToolButton(QPainter *p, int x, int y, int w, int h,
1243 const QColorGroup &g, bool sunken, 1255 const QColorGroup &g, bool sunken,
1244 const QBrush *) 1256 const QBrush *)
1245{ 1257{
1246 if(p->device()->devType() != QInternal::Widget){ 1258 if(p->device()->devType() != QInternal::Widget){
1247 // drawing into a temp pixmap, don't use mask 1259 // drawing into a temp pixmap, don't use mask
1248 QColor c = sunken ? g.button() : g.background(); 1260 QColor c = sunken ? g.button() : g.background();
1249 p->setPen(c.dark(130)); 1261 p->setPen(c.dark(130));
1250 p->drawRect(x, y, w, h); 1262 p->drawRect(x, y, w, h);
1251 p->setPen(c.light(105)); 1263 p->setPen(c.light(105));
1252 p->drawRect(x+1, y+1, w-2, h-2); 1264 p->drawRect(x+1, y+1, w-2, h-2);
1253 1265
1254 1266
1255 // fill 1267 // fill
1256 QPixmap *pix = bevelFillDict.find(c.rgb()); 1268 QPixmap *pix = bevelFillDict.find(c.rgb());
1257 if(!pix){ 1269 if(!pix){
1258 int h, s, v; 1270 int h, s, v;
1259 c.hsv(&h, &s, &v); 1271 c.hsv(&h, &s, &v);
1260 pix = new QPixmap(*bevelFillPix); 1272 pix = new QPixmap(*bevelFillPix);
1261 adjustHSV(*pix, h, s, v); 1273 adjustHSV(*pix, h, s, v);
1262 bevelFillDict.insert(c.rgb(), pix); 1274 bevelFillDict.insert(c.rgb(), pix);
1263 } 1275 }
1264 1276
1265 p->drawTiledPixmap(x+2, y+2, w-4, h-4, *pix); 1277 p->drawTiledPixmap(x+2, y+2, w-4, h-4, *pix);
1266 } 1278 }
1267 else{ 1279 else{
1268 drawClearBevel(p, x, y, w, h, sunken ? g.button() : 1280 drawClearBevel(p, x, y, w, h, sunken ? g.button() :
1269 highlightWidget == p->device() ? g.button().light(110) : 1281 highlightWidget == p->device() ? g.button().light(110) :
1270 g.background(), g.background()); 1282 g.background(), g.background());
1271 } 1283 }
1272} 1284}
1273 1285
1274void LiquidStyle::drawPushButton(QPushButton *btn, QPainter *p) 1286void LiquidStyle::drawPushButton(QPushButton *btn, QPainter *p)
1275{ 1287{
1276 QRect r = btn->rect(); 1288 QRect r = btn->rect();
1277 bool sunken = btn->isOn() || btn->isDown(); 1289 bool sunken = btn->isOn() || btn->isDown();
1278 QColorGroup g = btn->colorGroup(); 1290 QColorGroup g = btn->colorGroup();
1279 1291
1280 1292
1281 //int dw = buttonDefaultIndicatorWidth(); 1293 //int dw = buttonDefaultIndicatorWidth();
1282 if(btn->hasFocus() || btn->isDefault()){ 1294 if(btn->hasFocus() || btn->isDefault()){
1283 QColor c = btn->hasFocus() ? g.button().light(110) : g.background(); 1295 QColor c = btn->hasFocus() ? g.button().light(110) : g.background();
1284 QPixmap *pix = bevelFillDict.find(c.rgb()); 1296 QPixmap *pix = bevelFillDict.find(c.rgb());
1285 if(!pix){ 1297 if(!pix){
1286 int h, s, v; 1298 int h, s, v;
1287 c.hsv(&h, &s, &v); 1299 c.hsv(&h, &s, &v);
1288 pix = new QPixmap(*bevelFillPix); 1300 pix = new QPixmap(*bevelFillPix);
1289 adjustHSV(*pix, h, s, v); 1301 adjustHSV(*pix, h, s, v);
1290 bevelFillDict.insert(c.rgb(), pix); 1302 bevelFillDict.insert(c.rgb(), pix);
1291 } 1303 }
1292 p->setPen(c.dark(150)); 1304 p->setPen(c.dark(150));
1293 p->drawLine(r.x()+1, r.y(), r.right()-1, r.y()); 1305 p->drawLine(r.x()+1, r.y(), r.right()-1, r.y());
1294 p->drawLine(r.x(), r.y()+1, r.x(), r.bottom()-1); 1306 p->drawLine(r.x(), r.y()+1, r.x(), r.bottom()-1);
1295 p->drawLine(r.right(), r.y()+1, r.right(), r.bottom()-1); 1307 p->drawLine(r.right(), r.y()+1, r.right(), r.bottom()-1);
1296 p->drawLine(r.x()+1, r.bottom(), r.right()-1, r.bottom()); 1308 p->drawLine(r.x()+1, r.bottom(), r.right()-1, r.bottom());
1297 p->drawTiledPixmap(r.x()+1, r.y()+1, r.width()-2, r.height()-2, *pix); 1309 p->drawTiledPixmap(r.x()+1, r.y()+1, r.width()-2, r.height()-2, *pix);
1298 } 1310 }
1299 1311
1300 QColor newColor = btn == highlightWidget || sunken ? 1312 QColor newColor = btn == highlightWidget || sunken ?
1301 g.button().light(120) : g.button(); 1313 g.button().light(120) : g.button();
1302 1314
1303 drawRoundButton(p, newColor, g.background(), 1315 drawRoundButton(p, newColor, g.background(),
1304 r.x(), r.y(), r.width(), r.height(), !btn->autoMask(), 1316 r.x(), r.y(), r.width(), r.height(), !btn->autoMask(),
1305 sunken, btn->isDefault() || btn->autoDefault() || btn->hasFocus(), 1317 sunken, btn->isDefault() || btn->autoDefault() || btn->hasFocus(),
1306 btn->autoMask()); 1318 btn->autoMask());
1307} 1319}
1308 1320
1309void LiquidStyle::drawPushButtonLabel(QPushButton *btn, QPainter *p) 1321void LiquidStyle::drawPushButtonLabel(QPushButton *btn, QPainter *p)
1310{ 1322{
1311 int x1, y1, x2, y2, w, h; 1323 int x1, y1, x2, y2, w, h;
1312 btn->rect().coords(&x1, &y1, &x2, &y2); 1324 btn->rect().coords(&x1, &y1, &x2, &y2);
1313 w = btn->width(); 1325 w = btn->width();
1314 h = btn->height(); 1326 h = btn->height();
1315 1327
1316 bool act = btn->isOn() || btn->isDown(); 1328 bool act = btn->isOn() || btn->isDown();
1317 if(act){ 1329 if(act){
1318 ++x1, ++y1; 1330 ++x1, ++y1;
1319 } 1331 }
1320 1332
1321 // Draw iconset first, if any 1333 // Draw iconset first, if any
1322 if ( btn->iconSet() && !btn->iconSet()->isNull() ) 1334 if ( btn->iconSet() && !btn->iconSet()->isNull() )
1323 { 1335 {
1324 QIconSet::Mode mode = btn->isEnabled() 1336 QIconSet::Mode mode = btn->isEnabled()
1325 ? QIconSet::Normal : QIconSet::Disabled; 1337 ? QIconSet::Normal : QIconSet::Disabled;
1326 if ( mode == QIconSet::Normal && btn->hasFocus() ) 1338 if ( mode == QIconSet::Normal && btn->hasFocus() )
1327 mode = QIconSet::Active; 1339 mode = QIconSet::Active;
1328 QPixmap pixmap = btn->iconSet()->pixmap( QIconSet::Small, mode ); 1340 QPixmap pixmap = btn->iconSet()->pixmap( QIconSet::Small, mode );
1329 int pixw = pixmap.width(); 1341 int pixw = pixmap.width();
1330 int pixh = pixmap.height(); 1342 int pixh = pixmap.height();
1331 1343
1332 p->drawPixmap( x1+6, y1+h/2-pixh/2, pixmap ); 1344 p->drawPixmap( x1+6, y1+h/2-pixh/2, pixmap );
1333 x1 += pixw + 8; 1345 x1 += pixw + 8;
1334 w -= pixw + 8; 1346 w -= pixw + 8;
1335 } 1347 }
1336 1348
1337 if(act){ 1349 if(act){
1338 QFont font = btn->font(); 1350 QFont font = btn->font();
1339 font.setBold(true); 1351 font.setBold(true);
1340 p->setFont(font); 1352 p->setFont(font);
1341 QColor shadow(btn->colorGroup().button().dark(130)); 1353 QColor shadow(btn->colorGroup().button().dark(130));
1342 drawItem( p, x1+1, y1+1, w, h, 1354 drawItem( p, x1+1, y1+1, w, h,
1343 AlignCenter | ShowPrefix, btn->colorGroup(), btn->isEnabled(), 1355 AlignCenter | ShowPrefix, btn->colorGroup(), btn->isEnabled(),
1344 btn->pixmap(), btn->text(), -1, 1356 btn->pixmap(), btn->text(), -1,
1345 &shadow); 1357 &shadow);
1346 1358
1347 drawItem( p, x1, y1, w, h, 1359 drawItem( p, x1, y1, w, h,
1348 AlignCenter | ShowPrefix, btn->colorGroup(), btn->isEnabled(), 1360 AlignCenter | ShowPrefix, btn->colorGroup(), btn->isEnabled(),
1349 btn->pixmap(), btn->text(), -1, &btn->colorGroup().light()); 1361 btn->pixmap(), btn->text(), -1, &btn->colorGroup().light());
1350 } 1362 }
1351 else{ 1363 else{
1352 /* Too blurry 1364 /* Too blurry
1353 drawItem( p, x1+1, y1+1, w, h, 1365 drawItem( p, x1+1, y1+1, w, h,
1354 AlignCenter | ShowPrefix, btn->colorGroup(), btn->isEnabled(), 1366 AlignCenter | ShowPrefix, btn->colorGroup(), btn->isEnabled(),
1355 btn->pixmap(), btn->text(), -1, 1367 btn->pixmap(), btn->text(), -1,
1356 &btn->colorGroup().button().dark(115)); 1368 &btn->colorGroup().button().dark(115));
1357 */ 1369 */
1358 drawItem( p, x1, y1, w, h, 1370 drawItem( p, x1, y1, w, h,
1359 AlignCenter | ShowPrefix, 1371 AlignCenter | ShowPrefix,
1360 btn->colorGroup(), btn->isEnabled(), 1372 btn->colorGroup(), btn->isEnabled(),
1361 btn->pixmap(), btn->text(), -1, 1373 btn->pixmap(), btn->text(), -1,
1362 &btn->colorGroup().buttonText()); 1374 &btn->colorGroup().buttonText());
1363 } 1375 }
1364} 1376}
1365 1377
1366void LiquidStyle::drawButtonMask(QPainter *p, int x, int y, int w, int h) 1378void LiquidStyle::drawButtonMask(QPainter *p, int x, int y, int w, int h)
1367{ 1379{
1368 int x2 = x+w-1; 1380 int x2 = x+w-1;
1369 int y2 = y+h-1; 1381 int y2 = y+h-1;
1370 1382
1371 p->setPen(Qt::color1); 1383 p->setPen(Qt::color1);
1372 p->fillRect(x, y, w, h, Qt::color0); 1384 p->fillRect(x, y, w, h, Qt::color0);
1373 if(w < 21 || h < 21){ 1385 if(w < 21 || h < 21){
1374 // outer rect 1386 // outer rect
1375 p->drawLine(x, y+2, x, y2-2); // l 1387 p->drawLine(x, y+2, x, y2-2); // l
1376 p->drawLine(x2, y+2, x2, y2-2); // r 1388 p->drawLine(x2, y+2, x2, y2-2); // r
1377 p->drawLine(x+2, y, x2-2, y); // t 1389 p->drawLine(x+2, y, x2-2, y); // t
1378 p->drawLine(x+2, y2, x2-2, y2); // b 1390 p->drawLine(x+2, y2, x2-2, y2); // b
1379 p->drawLine(x+1, y+1, x2-1, y+1); // top second line 1391 p->drawLine(x+1, y+1, x2-1, y+1); // top second line
1380 p->drawLine(x+1, y2-1, x2-1, y2-1); // bottom second line 1392 p->drawLine(x+1, y2-1, x2-1, y2-1); // bottom second line
1381 p->fillRect(x+1, y+2, w-2, h-4, Qt::color1); 1393 p->fillRect(x+1, y+2, w-2, h-4, Qt::color1);
1382 } 1394 }
1383 else{ 1395 else{
1384 int x2 = x+w-1; 1396 int x2 = x+w-1;
1385 int y2 = y+h-1; 1397 int y2 = y+h-1;
1386 int bx2 = htmlBtnMaskBmp.width()-1; 1398 int bx2 = htmlBtnMaskBmp.width()-1;
1387 int by2 = htmlBtnMaskBmp.height()-1; 1399 int by2 = htmlBtnMaskBmp.height()-1;
1388 p->drawPixmap(0, 0, htmlBtnMaskBmp, 0, 0, 10, 10); // tl 1400 p->drawPixmap(0, 0, htmlBtnMaskBmp, 0, 0, 10, 10); // tl
1389 p->drawPixmap(x2-9, 0, htmlBtnMaskBmp, bx2-9, 0, 10, 10); // tr 1401 p->drawPixmap(x2-9, 0, htmlBtnMaskBmp, bx2-9, 0, 10, 10); // tr
1390 p->drawPixmap(0, y2-9, htmlBtnMaskBmp, 0, by2-9, 10, 10); // bl 1402 p->drawPixmap(0, y2-9, htmlBtnMaskBmp, 0, by2-9, 10, 10); // bl
1391 p->drawPixmap(x2-9, y2-9, htmlBtnMaskBmp, bx2-9, by2-9, 10, 10); // br 1403 p->drawPixmap(x2-9, y2-9, htmlBtnMaskBmp, bx2-9, by2-9, 10, 10); // br
1392 // fills 1404 // fills
1393 p->fillRect(10, 0, w-20, 10, Qt::color1); // top 1405 p->fillRect(10, 0, w-20, 10, Qt::color1); // top
1394 p->fillRect(10, y2-9, w-20, 10, Qt::color1); // bottom 1406 p->fillRect(10, y2-9, w-20, 10, Qt::color1); // bottom
1395 p->fillRect(0, 10, w, h-20, Qt::color1); // middle 1407 p->fillRect(0, 10, w, h-20, Qt::color1); // middle
1396 } 1408 }
1397} 1409}
1398 1410
1399void LiquidStyle::drawBevelButton(QPainter *p, int x, int y, int w, int h, 1411void LiquidStyle::drawBevelButton(QPainter *p, int x, int y, int w, int h,
1400 const QColorGroup &g, bool sunken, 1412 const QColorGroup &g, bool sunken,
1401 const QBrush */*fill*/) 1413 const QBrush */*fill*/)
1402{ 1414{
1403 if(currentHeader && p->device() == currentHeader){ 1415 if(currentHeader && p->device() == currentHeader){
1404 int id = currentHeader->sectionAt(x); 1416 int id = currentHeader->sectionAt(x);
1405 bool isHeaderHover = id != -1 && id == headerHoverID; 1417 bool isHeaderHover = id != -1 && id == headerHoverID;
1406 drawClearBevel(p, x, y, w, h, sunken ? 1418 drawClearBevel(p, x, y, w, h, sunken ?
1407 g.button() : isHeaderHover ? g.button().light(110) : 1419 g.button() : isHeaderHover ? g.button().light(110) :
1408 g.background(), g.background()); 1420 g.background(), g.background());
1409 } 1421 }
1410 else 1422 else
1411 drawClearBevel(p, x, y, w, h, sunken ? g.button() : g.background(), 1423 drawClearBevel(p, x, y, w, h, sunken ? g.button() : g.background(),
1412 g.background()); 1424 g.background());
1413} 1425}
1414 1426
1415QRect LiquidStyle::buttonRect(int x, int y, int w, int h) 1427QRect LiquidStyle::buttonRect(int x, int y, int w, int h)
1416{ 1428{
1417 return(QRect(x+5, y+5, w-10, h-10)); 1429 return(QRect(x+5, y+5, w-10, h-10));
1418} 1430}
1419 1431
1420void LiquidStyle::drawComboButton(QPainter *painter, int x, int y, int w, int h, 1432void LiquidStyle::drawComboButton(QPainter *painter, int x, int y, int w, int h,
1421 const QColorGroup &g, bool sunken, 1433 const QColorGroup &g, bool sunken,
1422 bool edit, bool, const QBrush *) 1434 bool edit, bool, const QBrush *)
1423{ 1435{
1424 bool isHover = highlightWidget == painter->device(); 1436 bool isHover = highlightWidget == painter->device();
1425 bool isMasked = false; 1437 bool isMasked = false;
1426 if(painter->device()->devType() == QInternal::Widget) 1438 if(painter->device()->devType() == QInternal::Widget)
1427 isMasked = ((QWidget*)painter->device())->autoMask(); 1439 isMasked = ((QWidget*)painter->device())->autoMask();
1428 // TODO: Do custom code, don't just call drawRoundButton into a pixmap 1440 // TODO: Do custom code, don't just call drawRoundButton into a pixmap
1429 QPixmap tmpPix(w, h); 1441 QPixmap tmpPix(w, h);
1430 QPainter p(&tmpPix); 1442 QPainter p(&tmpPix);
1431 1443
1432 drawRoundButton(&p, g.button(), g.background(), 0, 0, w, h, false, 1444 drawRoundButton(&p, g.button(), g.background(), 0, 0, w, h, false,
1433 sunken, false, isMasked); 1445 sunken, false, isMasked);
1434 if(!isHover){ 1446 if(!isHover){
1435 p.setClipRect(0, 0, w-17, h); 1447 p.setClipRect(0, 0, w-17, h);
1436 drawRoundButton(&p, g.background(), g.background(), 0, 0, w, h, false, 1448 drawRoundButton(&p, g.background(), g.background(), 0, 0, w, h, false,
1437 sunken, false, isMasked); 1449 sunken, false, isMasked);
1438 } 1450 }
1439 p.end(); 1451 p.end();
1440 int x2 = x+w-1; 1452 int x2 = x+w-1;
1441 int y2 = y+h-1; 1453 int y2 = y+h-1;
1442 int bx2 = btnMaskBmp.width()-1; 1454 int bx2 = btnMaskBmp.width()-1;
1443 int by2 = btnMaskBmp.height()-1; 1455 int by2 = btnMaskBmp.height()-1;
1444 QBitmap btnMask(w, h); 1456 QBitmap btnMask(w, h);
1445 QBitmap *mask = isMasked ? &htmlBtnMaskBmp : &btnMaskBmp; 1457 QBitmap *mask = isMasked ? &htmlBtnMaskBmp : &btnMaskBmp;
1446 p.begin(&btnMask); 1458 p.begin(&btnMask);
1447 p.fillRect(0, 0, w, h, Qt::color0); 1459 p.fillRect(0, 0, w, h, Qt::color0);
1448 p.drawPixmap(0, 0, *mask, 0, 0, 10, 10); // tl 1460 p.drawPixmap(0, 0, *mask, 0, 0, 10, 10); // tl
1449 p.drawPixmap(x2-9, 0, *mask, bx2-9, 0, 10, 10); // tr 1461 p.drawPixmap(x2-9, 0, *mask, bx2-9, 0, 10, 10); // tr
1450 p.drawPixmap(0, y2-9, *mask, 0, by2-9, 10, 10); // bl 1462 p.drawPixmap(0, y2-9, *mask, 0, by2-9, 10, 10); // bl
1451 p.drawPixmap(x2-9, y2-9, *mask, bx2-9, by2-9, 10, 10); // br 1463 p.drawPixmap(x2-9, y2-9, *mask, bx2-9, by2-9, 10, 10); // br
1452 // fills 1464 // fills
1453 p.fillRect(10, 0, w-20, 10, Qt::color1); // top 1465 p.fillRect(10, 0, w-20, 10, Qt::color1); // top
1454 p.fillRect(10, y2-9, w-20, 10, Qt::color1); // bottom 1466 p.fillRect(10, y2-9, w-20, 10, Qt::color1); // bottom
1455 p.fillRect(0, 10, w, h-20, Qt::color1); // middle 1467 p.fillRect(0, 10, w, h-20, Qt::color1); // middle
1456 p.end(); 1468 p.end();
1457 tmpPix.setMask(btnMask); 1469 tmpPix.setMask(btnMask);
1458 1470
1459 painter->drawPixmap(x, y, tmpPix); 1471 painter->drawPixmap(x, y, tmpPix);
1460 1472
1461 painter->setPen(g.button().dark(120)); 1473 painter->setPen(g.button().dark(120));
1462 painter->drawLine(x2-16, y+1, x2-16, y2-1); 1474 painter->drawLine(x2-16, y+1, x2-16, y2-1);
1463 1475
1464 if(edit){ 1476 if(edit){
1465 painter->setPen(g.mid()); 1477 painter->setPen(g.mid());
1466 painter->drawRect(x+8, y+2, w-25, h-4); 1478 painter->drawRect(x+8, y+2, w-25, h-4);
1467 } 1479 }
1468 int arrow_h = h / 3; 1480 int arrow_h = h / 3;
1469 int arrow_w = arrow_h; 1481 int arrow_w = arrow_h;
1470 int arrow_x = w - arrow_w - 6; 1482 int arrow_x = w - arrow_w - 6;
1471 int arrow_y = (h - arrow_h) / 2; 1483 int arrow_y = (h - arrow_h) / 2;
1472 drawArrow(painter, DownArrow, false, arrow_x, arrow_y, arrow_w, arrow_h, g, true); 1484 drawArrow(painter, DownArrow, false, arrow_x, arrow_y, arrow_w, arrow_h, g, true);
1473} 1485}
1474 1486
1475void LiquidStyle::drawComboButtonMask(QPainter *p, int x, int y, int w, int h) 1487void LiquidStyle::drawComboButtonMask(QPainter *p, int x, int y, int w, int h)
1476{ 1488{
1477 drawButtonMask(p, x, y, w, h); 1489 drawButtonMask(p, x, y, w, h);
1478} 1490}
1479 1491
1480QRect LiquidStyle::comboButtonRect(int x, int y, int w, int h) 1492QRect LiquidStyle::comboButtonRect(int x, int y, int w, int h)
1481{ 1493{
1482 //return(QRect(x+3, y+3, w - (h / 3) - 13, h-6)); 1494 //return(QRect(x+3, y+3, w - (h / 3) - 13, h-6));
1483 return(QRect(x+9, y+3, w - (h / 3) - 20, h-6)); 1495 return(QRect(x+9, y+3, w - (h / 3) - 20, h-6));
1484} 1496}
1485 1497
1486QRect LiquidStyle::comboButtonFocusRect(int x, int y, int w, int h) 1498QRect LiquidStyle::comboButtonFocusRect(int x, int y, int w, int h)
1487{ 1499{
1488 return(QRect(x+5, y+3, w-(h/3)-13, h-5)); 1500 return(QRect(x+5, y+3, w-(h/3)-13, h-5));
1489} 1501}
1490 1502
1491void LiquidStyle::drawScrollBarControls(QPainter *p, const QScrollBar *sb, 1503void LiquidStyle::drawScrollBarControls(QPainter *p, const QScrollBar *sb,
1492 int sliderStart, uint controls, 1504 int sliderStart, uint controls,
1493 uint activeControl) 1505 uint activeControl)
1494{ 1506{
1495 bool isHover = highlightWidget == p->device(); 1507 bool isHover = highlightWidget == p->device();
1496 int sliderMin, sliderMax, sliderLength, buttonDim; 1508 int sliderMin, sliderMax, sliderLength, buttonDim;
1497 scrollBarMetrics( sb, sliderMin, sliderMax, sliderLength, buttonDim ); 1509 scrollBarMetrics( sb, sliderMin, sliderMax, sliderLength, buttonDim );
1498 1510
1499 if (sliderStart > sliderMax) 1511 if (sliderStart > sliderMax)
1500 sliderStart = sliderMax; 1512 sliderStart = sliderMax;
1501 1513
1502 bool horiz = sb->orientation() == QScrollBar::Horizontal; 1514 bool horiz = sb->orientation() == QScrollBar::Horizontal;
1503 QColorGroup g = sb->colorGroup(); 1515 QColorGroup g = sb->colorGroup();
1504 QRect addB, subHC, subB; 1516 QRect addB, subHC, subB;
1505 QRect addPageR, subPageR, sliderR; 1517 QRect addPageR, subPageR, sliderR;
1506 int addX, addY, subX, subY; 1518 int addX, addY, subX, subY;
1507 int len = horiz ? sb->width() : sb->height(); 1519 int len = horiz ? sb->width() : sb->height();
1508 int extent = horiz ? sb->height() : sb->width(); 1520 int extent = horiz ? sb->height() : sb->width();
1509 1521
1510 // a few apps (ie: KSpread), are broken and use a hardcoded scrollbar 1522 // a few apps (ie: KSpread), are broken and use a hardcoded scrollbar
1511 // extent of 16. Luckily, most apps (ie: Kate), seem fixed by now. 1523 // extent of 16. Luckily, most apps (ie: Kate), seem fixed by now.
1512 bool brokenApp; 1524 bool brokenApp;
1513 if(extent == 16) 1525 if(extent == 16)
1514 brokenApp = true; 1526 brokenApp = true;
1515 else 1527 else
1516 brokenApp = false; 1528 brokenApp = false;
1517 1529
1518 if (horiz) { 1530 if (horiz) {
1519 subY = addY = ( extent - buttonDim ) / 2; 1531 subY = addY = ( extent - buttonDim ) / 2;
1520 subX = 0; 1532 subX = 0;
1521 addX = len - buttonDim; 1533 addX = len - buttonDim;
1522 if(sbBuffer.size() != sb->size()) 1534 if(sbBuffer.size() != sb->size())
1523 sbBuffer.resize(sb->size()); 1535 sbBuffer.resize(sb->size());
1524 } 1536 }
1525 else { 1537 else {
1526 subX = addX = ( extent - buttonDim ) / 2; 1538 subX = addX = ( extent - buttonDim ) / 2;
1527 subY = 0; 1539 subY = 0;
1528 addY = len - buttonDim; 1540 addY = len - buttonDim;
1529 if(sbBuffer.size() != sb->size()) 1541 if(sbBuffer.size() != sb->size())
1530 sbBuffer.resize(sb->size()); 1542 sbBuffer.resize(sb->size());
1531 } 1543 }
1532 subB.setRect( subX,subY,0,0); // buttonDim,buttonDim ); 1544 subB.setRect( subX,subY,0,0); // buttonDim,buttonDim );
1533 addB.setRect( addX,addY,buttonDim,buttonDim ); 1545 addB.setRect( addX,addY,buttonDim,buttonDim );
1534 if(horiz) 1546 if(horiz)
1535 subHC.setRect(addX-buttonDim,addY,buttonDim,buttonDim ); 1547 subHC.setRect(addX-buttonDim,addY,buttonDim,buttonDim );
1536 else 1548 else
1537 subHC.setRect(addX,addY-buttonDim,buttonDim,buttonDim ); 1549 subHC.setRect(addX,addY-buttonDim,buttonDim,buttonDim );
1538 1550
1539 int sliderEnd = sliderStart + sliderLength; 1551 int sliderEnd = sliderStart + sliderLength;
1540 int sliderW = extent; 1552 int sliderW = extent;
1541 1553
1542 if (horiz) { 1554 if (horiz) {
1543 subPageR.setRect( subB.right() + 1, 0, 1555 subPageR.setRect( subB.right() + 1, 0,
1544 sliderStart - subB.right() - 1 , sliderW ); 1556 sliderStart - subB.right() - 1 , sliderW );
1545 addPageR.setRect( sliderEnd, 0, addX - sliderEnd - buttonDim, sliderW ); 1557 addPageR.setRect( sliderEnd, 0, addX - sliderEnd - buttonDim, sliderW );
1546 sliderR .setRect( sliderStart, 0, sliderLength, sliderW ); 1558 sliderR .setRect( sliderStart, 0, sliderLength, sliderW );
1547 } 1559 }
1548 else { 1560 else {
1549 subPageR.setRect( 0, subB.bottom() + 1, sliderW, 1561 subPageR.setRect( 0, subB.bottom() + 1, sliderW,
1550 sliderStart - subB.bottom() - 1 ); 1562 sliderStart - subB.bottom() - 1 );
1551 addPageR.setRect( 0, sliderEnd, sliderW, addY - buttonDim - sliderEnd); 1563 addPageR.setRect( 0, sliderEnd, sliderW, addY - buttonDim - sliderEnd);
1552 sliderR .setRect( 0, sliderStart, sliderW, sliderLength ); 1564 sliderR .setRect( 0, sliderStart, sliderW, sliderLength );
1553 } 1565 }
1554 1566
1555 bool maxed = sb->maxValue() == sb->minValue(); 1567 bool maxed = sb->maxValue() == sb->minValue();
1556 1568
1557 QPainter painter; 1569 QPainter painter;
1558 if(!horiz){ 1570 if(!horiz){
1559 painter.begin(&sbBuffer); 1571 painter.begin(&sbBuffer);
1560 QRect bgR(0, subB.bottom()+1, sb->width(), (len-(buttonDim*2))+1); 1572 QRect bgR(0, subB.bottom()+1, sb->width(), (len-(buttonDim*2))+1);
1561 if(sliderR.height() >= 8){ 1573 if(sliderR.height() >= 8){
1562 painter.drawPixmap(bgR.x()+1, bgR.y(), *vsbSliderFillPix, 0, 0, 1574 painter.drawPixmap(bgR.x()+1, bgR.y(), *vsbSliderFillPix, 0, 0,
1563 13, 8); 1575 13, 8);
1564 painter.drawPixmap(bgR.x()+1, bgR.y(), *getPixmap(VSBSliderTopBg)); 1576 painter.drawPixmap(bgR.x()+1, bgR.y(), *getPixmap(VSBSliderTopBg));
1565 painter.drawTiledPixmap(bgR.x()+1, bgR.y()+8, 13, 1577 painter.drawTiledPixmap(bgR.x()+1, bgR.y()+8, 13,
1566 bgR.height()-16, *getPixmap(VSBSliderMidBg)); 1578 bgR.height()-16, *getPixmap(VSBSliderMidBg));
1567 painter.drawPixmap(bgR.x()+1, bgR.bottom()-8, *vsbSliderFillPix, 1579 painter.drawPixmap(bgR.x()+1, bgR.bottom()-8, *vsbSliderFillPix,
1568 0, 0, 13, 8); 1580 0, 0, 13, 8);
1569 painter.drawPixmap(bgR.x()+1, bgR.bottom()-8, *getPixmap(VSBSliderBtmBg)); 1581 painter.drawPixmap(bgR.x()+1, bgR.bottom()-8, *getPixmap(VSBSliderBtmBg));
1570 } 1582 }
1571 else{ 1583 else{
1572 painter.drawTiledPixmap(bgR.x()+1, bgR.y(), 13, bgR.height(), 1584 painter.drawTiledPixmap(bgR.x()+1, bgR.y(), 13, bgR.height(),
1573 *getPixmap(VSBSliderMidBg)); 1585 *getPixmap(VSBSliderMidBg));
1574 painter.setPen(g.background().dark(210)); 1586 painter.setPen(g.background().dark(210));
1575 painter.drawRect(bgR.x()+1, bgR.y(), 13, bgR.height()-1); 1587 painter.drawRect(bgR.x()+1, bgR.y(), 13, bgR.height()-1);
1576 painter.setPen(g.mid()); 1588 painter.setPen(g.mid());
1577 painter.drawPoint(bgR.x()+1, bgR.y()); 1589 painter.drawPoint(bgR.x()+1, bgR.y());
1578 painter.drawPoint(bgR.x()+13, bgR.y()); 1590 painter.drawPoint(bgR.x()+13, bgR.y());
1579 painter.drawPoint(bgR.x()+1, bgR.bottom()-1); 1591 painter.drawPoint(bgR.x()+1, bgR.bottom()-1);
1580 painter.drawPoint(bgR.x()+13, bgR.bottom()-1); 1592 painter.drawPoint(bgR.x()+13, bgR.bottom()-1);
1581 } 1593 }
1582 if(controls & Slider){ 1594 if(controls & Slider){
1583 if(sliderR.height() >= 16){ 1595 if(sliderR.height() >= 16){
1584 painter.drawPixmap(sliderR.x()+1, sliderR.y(), 1596 painter.drawPixmap(sliderR.x()+1, sliderR.y(),
1585 isHover ? *getPixmap(VSBSliderTopHover): 1597 isHover ? *getPixmap(VSBSliderTopHover):
1586 *getPixmap(VSBSliderTop)); 1598 *getPixmap(VSBSliderTop));
1587 painter.drawTiledPixmap(sliderR.x()+1, sliderR.y()+8, 13, 1599 painter.drawTiledPixmap(sliderR.x()+1, sliderR.y()+8, 13,
1588 sliderR.height()-16, isHover ? 1600 sliderR.height()-16, isHover ?
1589 *getPixmap(VSBSliderMidHover) : 1601 *getPixmap(VSBSliderMidHover) :
1590 *getPixmap(VSBSliderMid)); 1602 *getPixmap(VSBSliderMid));
1591 painter.drawPixmap(sliderR.x()+1, sliderR.bottom()-8, 1603 painter.drawPixmap(sliderR.x()+1, sliderR.bottom()-8,
1592 isHover ? *getPixmap(VSBSliderBtmHover) : 1604 isHover ? *getPixmap(VSBSliderBtmHover) :
1593 *getPixmap(VSBSliderBtm)); 1605 *getPixmap(VSBSliderBtm));
1594 } 1606 }
1595 else if(sliderR.height() >= 8){ 1607 else if(sliderR.height() >= 8){
1596 int m = sliderR.height()/2; 1608 int m = sliderR.height()/2;
1597 painter.drawPixmap(sliderR.x()+1, sliderR.y(), 1609 painter.drawPixmap(sliderR.x()+1, sliderR.y(),
1598 isHover ? *getPixmap(VSBSliderTopHover): 1610 isHover ? *getPixmap(VSBSliderTopHover):
1599 *getPixmap(VSBSliderTop), 0, 0, 13, m); 1611 *getPixmap(VSBSliderTop), 0, 0, 13, m);
1600 painter.drawPixmap(sliderR.x()+1, sliderR.y()+m, 1612 painter.drawPixmap(sliderR.x()+1, sliderR.y()+m,
1601 isHover ? *getPixmap(VSBSliderBtmHover): 1613 isHover ? *getPixmap(VSBSliderBtmHover):
1602 *getPixmap(VSBSliderBtm), 0, 8-m, 13, m); 1614 *getPixmap(VSBSliderBtm), 0, 8-m, 13, m);
1603 } 1615 }
1604 else{ 1616 else{
1605 painter.setPen(g.button().dark(210)); 1617 painter.setPen(g.button().dark(210));
1606 drawRoundRect(&painter, sliderR.x()+1, sliderR.y(), 1618 drawRoundRect(&painter, sliderR.x()+1, sliderR.y(),
1607 13, sliderR.height()); 1619 13, sliderR.height());
1608 painter.drawTiledPixmap(sliderR.x()+2, sliderR.y()+1, 1620 painter.drawTiledPixmap(sliderR.x()+2, sliderR.y()+1,
1609 11, sliderR.height()-2, 1621 11, sliderR.height()-2,
1610 isHover ? *getPixmap(VSBSliderMidHover) : 1622 isHover ? *getPixmap(VSBSliderMidHover) :
1611 *getPixmap(VSBSliderMid), 1, 0); 1623 *getPixmap(VSBSliderMid), 1, 0);
1612 } 1624 }
1613 } 1625 }
1614 painter.setPen(g.mid()); 1626 painter.setPen(g.mid());
1615 painter.drawLine(bgR.x(), bgR.y(), bgR.x(), bgR.bottom()); 1627 painter.drawLine(bgR.x(), bgR.y(), bgR.x(), bgR.bottom());
1616 painter.drawLine(bgR.right(), bgR.y(), bgR.right(), bgR.bottom()); 1628 painter.drawLine(bgR.right(), bgR.y(), bgR.right(), bgR.bottom());
1617 if(brokenApp && (controls & Slider)){ 1629 if(brokenApp && (controls & Slider)){
1618 painter.setPen(g.background()); 1630 painter.setPen(g.background());
1619 painter.drawLine(bgR.right()-1, bgR.y(), bgR.right()-1, 1631 painter.drawLine(bgR.right()-1, bgR.y(), bgR.right()-1,
1620 bgR.bottom()); 1632 bgR.bottom());
1621 } 1633 }
1622 painter.end(); 1634 painter.end();
1623 } 1635 }
1624 else{ 1636 else{
1625 painter.begin(&sbBuffer); 1637 painter.begin(&sbBuffer);
1626 QRect bgR(subB.right()+1, 0, (len-(buttonDim*2))+1, sb->height()); 1638 QRect bgR(subB.right()+1, 0, (len-(buttonDim*2))+1, sb->height());
1627 if(sliderR.width() >= 8){ 1639 if(sliderR.width() >= 8){
1628 painter.drawPixmap(bgR.x(), bgR.y()+1, *vsbSliderFillPix, 0, 0, 1640 painter.drawPixmap(bgR.x(), bgR.y()+1, *vsbSliderFillPix, 0, 0,
1629 8, 13); 1641 8, 13);
1630 painter.drawPixmap(bgR.x(), bgR.y()+1, *getPixmap(HSBSliderTopBg)); 1642 painter.drawPixmap(bgR.x(), bgR.y()+1, *getPixmap(HSBSliderTopBg));
1631 painter.drawTiledPixmap(bgR.x()+8, bgR.y()+1, bgR.width()-16, 1643 painter.drawTiledPixmap(bgR.x()+8, bgR.y()+1, bgR.width()-16,
1632 13, *getPixmap(HSBSliderMidBg)); 1644 13, *getPixmap(HSBSliderMidBg));
1633 painter.drawPixmap(bgR.right()-8, bgR.y()+1, *vsbSliderFillPix, 1645 painter.drawPixmap(bgR.right()-8, bgR.y()+1, *vsbSliderFillPix,
1634 0, 0, 8, 13); 1646 0, 0, 8, 13);
1635 painter.drawPixmap(bgR.right()-8, bgR.y()+1, *getPixmap(HSBSliderBtmBg)); 1647 painter.drawPixmap(bgR.right()-8, bgR.y()+1, *getPixmap(HSBSliderBtmBg));
1636 } 1648 }
1637 else{ 1649 else{
1638 painter.drawTiledPixmap(bgR.x(), bgR.y()+1, bgR.width(), 13, 1650 painter.drawTiledPixmap(bgR.x(), bgR.y()+1, bgR.width(), 13,
1639 *getPixmap(HSBSliderMidBg)); 1651 *getPixmap(HSBSliderMidBg));
1640 painter.setPen(g.background().dark(210)); 1652 painter.setPen(g.background().dark(210));
1641 painter.drawRect(bgR.x(), bgR.y()+1, bgR.width()-1, 13); 1653 painter.drawRect(bgR.x(), bgR.y()+1, bgR.width()-1, 13);
1642 painter.setPen(g.mid()); 1654 painter.setPen(g.mid());
1643 painter.drawPoint(bgR.x(), bgR.y()+1); 1655 painter.drawPoint(bgR.x(), bgR.y()+1);
1644 painter.drawPoint(bgR.x(), bgR.bottom()-1); 1656 painter.drawPoint(bgR.x(), bgR.bottom()-1);
1645 painter.drawPoint(bgR.right()-1, bgR.y()+1); 1657 painter.drawPoint(bgR.right()-1, bgR.y()+1);
1646 painter.drawPoint(bgR.right()-1, bgR.bottom()-1); 1658 painter.drawPoint(bgR.right()-1, bgR.bottom()-1);
1647 } 1659 }
1648 if(controls & Slider){ 1660 if(controls & Slider){
1649 if(sliderR.width() >= 16){ 1661 if(sliderR.width() >= 16){
1650 painter.drawPixmap(sliderR.x(), sliderR.y()+1, 1662 painter.drawPixmap(sliderR.x(), sliderR.y()+1,
1651 isHover ? *getPixmap(HSBSliderTopHover) : 1663 isHover ? *getPixmap(HSBSliderTopHover) :
1652 *getPixmap(HSBSliderTop)); 1664 *getPixmap(HSBSliderTop));
1653 painter.drawTiledPixmap(sliderR.x()+8, sliderR.y()+1, sliderR.width()-16, 1665 painter.drawTiledPixmap(sliderR.x()+8, sliderR.y()+1, sliderR.width()-16,
1654 13, isHover ? *getPixmap(HSBSliderMidHover) : 1666 13, isHover ? *getPixmap(HSBSliderMidHover) :
1655 *getPixmap(HSBSliderMid)); 1667 *getPixmap(HSBSliderMid));
1656 painter.drawPixmap(sliderR.right()-8, sliderR.y()+1, isHover ? 1668 painter.drawPixmap(sliderR.right()-8, sliderR.y()+1, isHover ?
1657 *getPixmap(HSBSliderBtmHover) : 1669 *getPixmap(HSBSliderBtmHover) :
1658 *getPixmap(HSBSliderBtm)); 1670 *getPixmap(HSBSliderBtm));
1659 } 1671 }
1660 else if(sliderR.width() >= 8){ 1672 else if(sliderR.width() >= 8){
1661 int m = sliderR.width()/2; 1673 int m = sliderR.width()/2;
1662 painter.drawPixmap(sliderR.x(), sliderR.y()+1, 1674 painter.drawPixmap(sliderR.x(), sliderR.y()+1,
1663 isHover ? *getPixmap(HSBSliderTopHover) : 1675 isHover ? *getPixmap(HSBSliderTopHover) :
1664 *getPixmap(HSBSliderTop), 0, 0, m, 13); 1676 *getPixmap(HSBSliderTop), 0, 0, m, 13);
1665 painter.drawPixmap(sliderR.right()-8, sliderR.y()+1, isHover ? 1677 painter.drawPixmap(sliderR.right()-8, sliderR.y()+1, isHover ?
1666 *getPixmap(HSBSliderBtmHover) : 1678 *getPixmap(HSBSliderBtmHover) :
1667 *getPixmap(HSBSliderBtm), 8-m, 0, m, 13); 1679 *getPixmap(HSBSliderBtm), 8-m, 0, m, 13);
1668 } 1680 }
1669 else{ 1681 else{
1670 painter.setPen(g.button().dark(210)); 1682 painter.setPen(g.button().dark(210));
1671 drawRoundRect(&painter, sliderR.x(), sliderR.y()+1, 1683 drawRoundRect(&painter, sliderR.x(), sliderR.y()+1,
1672 sliderR.width(), 13); 1684 sliderR.width(), 13);
1673 painter.drawTiledPixmap(sliderR.x()+1, sliderR.y()+2, 1685 painter.drawTiledPixmap(sliderR.x()+1, sliderR.y()+2,
1674 sliderR.width()-2, 11, isHover ? 1686 sliderR.width()-2, 11, isHover ?
1675 *getPixmap(HSBSliderMidHover) : 1687 *getPixmap(HSBSliderMidHover) :
1676 *getPixmap(HSBSliderMid), 0, 1); 1688 *getPixmap(HSBSliderMid), 0, 1);
1677 } 1689 }
1678 } 1690 }
1679 painter.setPen(g.mid()); 1691 painter.setPen(g.mid());
1680 painter.drawLine(bgR.x(), bgR.y(), bgR.right(), bgR.y()); 1692 painter.drawLine(bgR.x(), bgR.y(), bgR.right(), bgR.y());
1681 painter.drawLine(bgR.x(), bgR.bottom(), bgR.right(), bgR.bottom()); 1693 painter.drawLine(bgR.x(), bgR.bottom(), bgR.right(), bgR.bottom());
1682 if(brokenApp && (controls & Slider)){ 1694 if(brokenApp && (controls & Slider)){
1683 painter.setPen(g.background()); 1695 painter.setPen(g.background());
1684 painter.drawLine(bgR.x(), bgR.bottom()-1, bgR.right(), 1696 painter.drawLine(bgR.x(), bgR.bottom()-1, bgR.right(),
1685 bgR.bottom()-1); 1697 bgR.bottom()-1);
1686 } 1698 }
1687 painter.end(); 1699 painter.end();
1688 } 1700 }
1689 1701
1690 if ( controls & AddLine ) { 1702 if ( controls & AddLine ) {
1691 drawSBButton(p, addB, g, activeControl == AddLine); 1703 drawSBButton(p, addB, g, activeControl == AddLine);
1692 drawArrow( p, horiz ? RightArrow : DownArrow, 1704 drawArrow( p, horiz ? RightArrow : DownArrow,
1693 false, addB.x()+4, addB.y()+4, 1705 false, addB.x()+4, addB.y()+4,
1694 addB.width()-8, addB.height()-8, g, !maxed); 1706 addB.width()-8, addB.height()-8, g, !maxed);
1695 } 1707 }
1696 if ( controls & SubLine ) { 1708 if ( controls & SubLine ) {
1697 // drawSBButton(p, subB, g, activeControl == SubLine); 1709 // drawSBButton(p, subB, g, activeControl == SubLine);
1698 // drawArrow( p, horiz ? LeftArrow : UpArrow, 1710 // drawArrow( p, horiz ? LeftArrow : UpArrow,
1699 // false, subB.x()+4, subB.y()+4, 1711 // false, subB.x()+4, subB.y()+4,
1700 // subB.width()-8, subB.height()-8, g, !maxed); 1712 // subB.width()-8, subB.height()-8, g, !maxed);
1701 drawSBButton(p, subHC, g, activeControl == SubLine); 1713 drawSBButton(p, subHC, g, activeControl == SubLine);
1702 drawArrow( p, horiz ? LeftArrow : UpArrow, 1714 drawArrow( p, horiz ? LeftArrow : UpArrow,
1703 false, subHC.x()+4, subHC.y()+4, 1715 false, subHC.x()+4, subHC.y()+4,
1704 subHC.width()-8, subHC.height()-8, g, !maxed); 1716 subHC.width()-8, subHC.height()-8, g, !maxed);
1705 } 1717 }
1706 1718
1707 if(controls & AddPage){ 1719 if(controls & AddPage){
1708 if(addPageR.width()){ 1720 if(addPageR.width()){
1709 p->drawPixmap(addPageR.x(), addPageR.y(), sbBuffer, 1721 p->drawPixmap(addPageR.x(), addPageR.y(), sbBuffer,
1710 addPageR.x(), addPageR.y(), addPageR.width(), 1722 addPageR.x(), addPageR.y(), addPageR.width(),
1711 addPageR.height()); 1723 addPageR.height());
1712 } 1724 }
1713 } 1725 }
1714 if(controls & SubPage){ 1726 if(controls & SubPage){
1715 if(subPageR.height()){ 1727 if(subPageR.height()){
1716 p->drawPixmap(subPageR.x(), subPageR.y(), sbBuffer, 1728 p->drawPixmap(subPageR.x(), subPageR.y(), sbBuffer,
1717 subPageR.x(), subPageR.y(), subPageR.width(), 1729 subPageR.x(), subPageR.y(), subPageR.width(),
1718 subPageR.height()); 1730 subPageR.height());
1719 } 1731 }
1720 } 1732 }
1721 if ( controls & Slider ) { 1733 if ( controls & Slider ) {
1722 p->drawPixmap(sliderR.x(), sliderR.y(), sbBuffer, 1734 p->drawPixmap(sliderR.x(), sliderR.y(), sbBuffer,
1723 sliderR.x(), sliderR.y(), sliderR.width(), 1735 sliderR.x(), sliderR.y(), sliderR.width(),
1724 sliderR.height()); 1736 sliderR.height());
1725 } 1737 }
1726} 1738}
1727 1739
1728void LiquidStyle::drawSBButton(QPainter *p, const QRect &r, const QColorGroup &g, 1740void LiquidStyle::drawSBButton(QPainter *p, const QRect &r, const QColorGroup &g,
1729 bool down, bool /*fast*/) 1741 bool down, bool /*fast*/)
1730{ 1742{
1731 p->setPen(g.mid()); 1743 p->setPen(g.mid());
1732 p->drawRect(r); 1744 p->drawRect(r);
1733 QColor c(down ? g.button() : g.background()); 1745 QColor c(down ? g.button() : g.background());
1734 QPixmap *pix = bevelFillDict.find(c.rgb()); 1746 QPixmap *pix = bevelFillDict.find(c.rgb());
1735 if(!pix){ 1747 if(!pix){
1736 int h, s, v; 1748 int h, s, v;
1737 c.hsv(&h, &s, &v); 1749 c.hsv(&h, &s, &v);
1738 pix = new QPixmap(*bevelFillPix); 1750 pix = new QPixmap(*bevelFillPix);
1739 adjustHSV(*pix, h, s, v); 1751 adjustHSV(*pix, h, s, v);
1740 bevelFillDict.insert(c.rgb(), pix); 1752 bevelFillDict.insert(c.rgb(), pix);
1741 } 1753 }
1742 p->drawTiledPixmap(r.x()+1, r.y()+1, r.width()-2, r.height()-2, *pix); 1754 p->drawTiledPixmap(r.x()+1, r.y()+1, r.width()-2, r.height()-2, *pix);
1743 1755
1744} 1756}
1745 1757
1746void LiquidStyle::drawSBDeco(QPainter *p, const QRect &r, const QColorGroup &g, 1758void LiquidStyle::drawSBDeco(QPainter *p, const QRect &r, const QColorGroup &g,
1747 bool horiz) 1759 bool horiz)
1748{ 1760{
1749 if(horiz){ 1761 if(horiz){
1750 if(r.width() >= 15){ 1762 if(r.width() >= 15){
1751 int y = r.y()+3; 1763 int y = r.y()+3;
1752 int x = r.x() + (r.width()-7)/2; 1764 int x = r.x() + (r.width()-7)/2;
1753 int y2 = r.bottom()-3; 1765 int y2 = r.bottom()-3;
1754 p->setPen(g.light()); 1766 p->setPen(g.light());
1755 p->drawLine(x, y, x, y2); 1767 p->drawLine(x, y, x, y2);
1756 p->drawLine(x+3, y, x+3, y2); 1768 p->drawLine(x+3, y, x+3, y2);
1757 p->drawLine(x+6, y, x+6, y2); 1769 p->drawLine(x+6, y, x+6, y2);
1758 1770
1759 p->setPen(g.mid()); 1771 p->setPen(g.mid());
1760 p->drawLine(x+1, y, x+1, y2); 1772 p->drawLine(x+1, y, x+1, y2);
1761 p->drawLine(x+4, y, x+4, y2); 1773 p->drawLine(x+4, y, x+4, y2);
1762 p->drawLine(x+7, y, x+7, y2); 1774 p->drawLine(x+7, y, x+7, y2);
1763 } 1775 }
1764 } 1776 }
1765 else{ 1777 else{
1766 if(r.height() >= 15){ 1778 if(r.height() >= 15){
1767 int x = r.x()+3; 1779 int x = r.x()+3;
1768 int y = r.y() + (r.height()-7)/2; 1780 int y = r.y() + (r.height()-7)/2;
1769 int x2 = r.right()-3; 1781 int x2 = r.right()-3;
1770 p->setPen(g.light()); 1782 p->setPen(g.light());
1771 p->drawLine(x, y, x2, y); 1783 p->drawLine(x, y, x2, y);
1772 p->drawLine(x, y+3, x2, y+3); 1784 p->drawLine(x, y+3, x2, y+3);
1773 p->drawLine(x, y+6, x2, y+6); 1785 p->drawLine(x, y+6, x2, y+6);
1774 1786
1775 p->setPen(g.mid()); 1787 p->setPen(g.mid());
1776 p->drawLine(x, y+1, x2, y+1); 1788 p->drawLine(x, y+1, x2, y+1);
1777 p->drawLine(x, y+4, x2, y+4); 1789 p->drawLine(x, y+4, x2, y+4);
1778 p->drawLine(x, y+7, x2, y+7); 1790 p->drawLine(x, y+7, x2, y+7);
1779 } 1791 }
1780 } 1792 }
1781 1793
1782} 1794}
1783 1795
1784 1796
1785void LiquidStyle::scrollBarMetrics(const QScrollBar *sb, int &sliderMin, 1797void LiquidStyle::scrollBarMetrics(const QScrollBar *sb, int &sliderMin,
1786 int &sliderMax, int &sliderLength, 1798 int &sliderMax, int &sliderLength,
1787 int &buttonDim) 1799 int &buttonDim)
1788{ 1800{
1789 1801
1790 int maxLength; 1802 int maxLength;
1791 int b = 0; 1803 int b = 0;
1792 bool horiz = sb->orientation() == QScrollBar::Horizontal; 1804 bool horiz = sb->orientation() == QScrollBar::Horizontal;
1793 int length = horiz ? sb->width() : sb->height(); 1805 int length = horiz ? sb->width() : sb->height();
1794 int extent = horiz ? sb->height() : sb->width(); 1806 int extent = horiz ? sb->height() : sb->width();
1795 1807
1796 if ( length > ( extent - b*2 - 1 )*2 + b*2 ) 1808 if ( length > ( extent - b*2 - 1 )*2 + b*2 )
1797 buttonDim = extent - b*2; 1809 buttonDim = extent - b*2;
1798 else 1810 else
1799 buttonDim = ( length - b*2 )/2 - 1; 1811 buttonDim = ( length - b*2 )/2 - 1;
1800 1812
1801 sliderMin = b + 0; // buttonDim; 1813 sliderMin = b + 0; // buttonDim;
1802 maxLength = length - b*2 - buttonDim*2; // 3; 1814 maxLength = length - b*2 - buttonDim*2; // 3;
1803 1815
1804 if ( sb->maxValue() == sb->minValue() ) { 1816 if ( sb->maxValue() == sb->minValue() ) {
1805 sliderLength = maxLength; 1817 sliderLength = maxLength;
1806 } else { 1818 } else {
1807 sliderLength = (sb->pageStep()*maxLength)/ 1819 sliderLength = (sb->pageStep()*maxLength)/
1808 (sb->maxValue()-sb->minValue()+sb->pageStep()); 1820 (sb->maxValue()-sb->minValue()+sb->pageStep());
1809 uint range = sb->maxValue()-sb->minValue(); 1821 uint range = sb->maxValue()-sb->minValue();
1810 if ( sliderLength < 9 || range > INT_MAX/2 ) 1822 if ( sliderLength < 9 || range > INT_MAX/2 )
1811 sliderLength = 9; 1823 sliderLength = 9;
1812 if ( sliderLength > maxLength ) 1824 if ( sliderLength > maxLength )
1813 sliderLength = maxLength; 1825 sliderLength = maxLength;
1814 } 1826 }
1815 sliderMax = sliderMin + maxLength - sliderLength; 1827 sliderMax = sliderMin + maxLength - sliderLength;
1816 1828
1817} 1829}
1818 1830
1819QStyle::ScrollControl LiquidStyle::scrollBarPointOver(const QScrollBar *sb, 1831QStyle::ScrollControl LiquidStyle::scrollBarPointOver(const QScrollBar *sb,
1820 int sliderStart, 1832 int sliderStart,
1821 const QPoint &p) 1833 const QPoint &p)
1822{ 1834{
1823 if ( !sb->rect().contains( p ) ) 1835 if ( !sb->rect().contains( p ) )
1824 return NoScroll; 1836 return NoScroll;
1825 int sliderMin, sliderMax, sliderLength, buttonDim, pos; 1837 int sliderMin, sliderMax, sliderLength, buttonDim, pos;
1826 scrollBarMetrics( sb, sliderMin, sliderMax, sliderLength, buttonDim ); 1838 scrollBarMetrics( sb, sliderMin, sliderMax, sliderLength, buttonDim );
1827 pos = (sb->orientation() == QScrollBar::Horizontal)? p.x() : p.y(); 1839 pos = (sb->orientation() == QScrollBar::Horizontal)? p.x() : p.y();
1828 if ( pos < sliderMin ) 1840 if ( pos < sliderMin )
1829 return SubLine; 1841 return SubLine;
1830 if ( pos < sliderStart ) 1842 if ( pos < sliderStart )
1831 return SubPage; 1843 return SubPage;
1832 if ( pos < sliderStart + sliderLength ) 1844 if ( pos < sliderStart + sliderLength )
1833 return Slider; 1845 return Slider;
1834 if ( pos < sliderMax + sliderLength) 1846 if ( pos < sliderMax + sliderLength)
1835 return AddPage; 1847 return AddPage;
1836 if(pos > sliderMax + sliderLength + 16) 1848 if(pos > sliderMax + sliderLength + 16)
1837 return AddLine; 1849 return AddLine;
1838 1850
1839 return SubLine; 1851 return SubLine;
1840} 1852}
1841 1853
1842#define QCOORDARRLEN(x) sizeof(x)/(sizeof(QCOORD)*2) 1854#define QCOORDARRLEN(x) sizeof(x)/(sizeof(QCOORD)*2)
1843 1855
1844 1856
1845QSize LiquidStyle::exclusiveIndicatorSize() const 1857QSize LiquidStyle::exclusiveIndicatorSize() const
1846{ 1858{
1847 return(QSize(16, 16)); 1859 return(QSize(16, 16));
1848} 1860}
1849 1861
1850void LiquidStyle::drawExclusiveIndicator(QPainter *p, int x, int y, int /*w*/, 1862void LiquidStyle::drawExclusiveIndicator(QPainter *p, int x, int y, int /*w*/,
1851 int /*h*/, const QColorGroup &/*g*/, bool on, 1863 int /*h*/, const QColorGroup &/*g*/, bool on,
1852 bool down, bool) 1864 bool down, bool)
1853{ 1865{
1854 bool isHover = highlightWidget == p->device(); 1866 bool isHover = highlightWidget == p->device();
1855 bool isMasked = p->device() && p->device()->devType() == QInternal::Widget 1867 bool isMasked = p->device() && p->device()->devType() == QInternal::Widget
1856 && ((QWidget*)p->device())->autoMask(); 1868 && ((QWidget*)p->device())->autoMask();
1857 1869
1858 if(isMasked){ 1870 if(isMasked){
1859 if(on || down){ 1871 if(on || down){
1860 p->drawPixmap(x, y, isHover ? *getPixmap(HTMLRadioDownHover) : 1872 p->drawPixmap(x, y, isHover ? *getPixmap(HTMLRadioDownHover) :
1861 *getPixmap(HTMLRadioDown)); 1873 *getPixmap(HTMLRadioDown));
1862 } 1874 }
1863 else 1875 else
1864 p->drawPixmap(x, y, isHover ? *getPixmap(HTMLRadioHover) : 1876 p->drawPixmap(x, y, isHover ? *getPixmap(HTMLRadioHover) :
1865 *getPixmap(HTMLRadio)); 1877 *getPixmap(HTMLRadio));
1866 1878
1867 } 1879 }
1868 else{ 1880 else{
1869 if(on || down){ 1881 if(on || down){
1870 p->drawPixmap(x, y, isHover ? *getPixmap(RadioOnHover) : 1882 p->drawPixmap(x, y, isHover ? *getPixmap(RadioOnHover) :
1871 *getPixmap(RadioOn)); 1883 *getPixmap(RadioOn));
1872 } 1884 }
1873 else 1885 else
1874 p->drawPixmap(x, y, isHover ? *getPixmap(RadioOffHover) : 1886 p->drawPixmap(x, y, isHover ? *getPixmap(RadioOffHover) :
1875 *getPixmap(RadioOff)); 1887 *getPixmap(RadioOff));
1876 } 1888 }
1877} 1889}
1878 1890
1879void LiquidStyle::drawExclusiveIndicatorMask(QPainter *p, int x, int y, int w, 1891void LiquidStyle::drawExclusiveIndicatorMask(QPainter *p, int x, int y, int w,
1880 int h, bool) 1892 int h, bool)
1881{ 1893{
1882 p->fillRect(x, y, w, h, Qt::color0); 1894 p->fillRect(x, y, w, h, Qt::color0);
1883 p->setPen(Qt::color1); 1895 p->setPen(Qt::color1);
1884 p->drawPixmap(x, y, *getPixmap(RadioOn)->mask()); 1896 p->drawPixmap(x, y, *getPixmap(RadioOn)->mask());
1885} 1897}
1886 1898
1887 1899
1888QSize LiquidStyle::indicatorSize() const 1900QSize LiquidStyle::indicatorSize() const
1889{ 1901{
1890 return(QSize(20, 22)); 1902 return(QSize(20, 22));
1891} 1903}
1892 1904
1893void LiquidStyle::drawIndicator(QPainter *p, int x, int y, int /*w*/, int /*h*/, 1905void LiquidStyle::drawIndicator(QPainter *p, int x, int y, int /*w*/, int /*h*/,
1894 const QColorGroup &/*g*/, int state, bool /*down*/, bool) 1906 const QColorGroup &/*g*/, int state, bool /*down*/, bool)
1895{ 1907{
1896 bool isHover = highlightWidget == p->device(); 1908 bool isHover = highlightWidget == p->device();
1897 bool isMasked = p->device() && p->device()->devType() == QInternal::Widget 1909 bool isMasked = p->device() && p->device()->devType() == QInternal::Widget
1898 && ((QWidget*)p->device())->autoMask(); 1910 && ((QWidget*)p->device())->autoMask();
1899 if(isMasked){ 1911 if(isMasked){
1900 if(state != QButton::Off){ 1912 if(state != QButton::Off){
1901 p->drawPixmap(x, y, isHover ? *getPixmap(HTMLCBDownHover) : 1913 p->drawPixmap(x, y, isHover ? *getPixmap(HTMLCBDownHover) :
1902 *getPixmap(HTMLCBDown)); 1914 *getPixmap(HTMLCBDown));
1903 } 1915 }
1904 else 1916 else
1905 p->drawPixmap(x, y, isHover ? *getPixmap(HTMLCBHover) : 1917 p->drawPixmap(x, y, isHover ? *getPixmap(HTMLCBHover) :
1906 *getPixmap(HTMLCB)); 1918 *getPixmap(HTMLCB));
1907 1919
1908 } 1920 }
1909 else{ 1921 else{
1910 if(state != QButton::Off){ 1922 if(state != QButton::Off){
1911 p->drawPixmap(x, y, isHover ? *getPixmap(CBDownHover) : 1923 p->drawPixmap(x, y, isHover ? *getPixmap(CBDownHover) :
1912 *getPixmap(CBDown)); 1924 *getPixmap(CBDown));
1913 /* Todo - tristate 1925 /* Todo - tristate
1914 if(state == QButton::On){ 1926 if(state == QButton::On){
1915 p->setPen(Qt::black); 1927 p->setPen(Qt::black);
1916 p->drawPixmap(3, 3, xBmp); 1928 p->drawPixmap(3, 3, xBmp);
1917 } 1929 }
1918 else{ 1930 else{
1919 p->setPen(g.dark()); 1931 p->setPen(g.dark());
1920 p->drawRect(x+2, y+2, w-4, h-4); 1932 p->drawRect(x+2, y+2, w-4, h-4);
1921 p->setPen(Qt::black); 1933 p->setPen(Qt::black);
1922 p->drawLine(x+3, (y+h)/2-2, x+w-4, (y+h)/2-2); 1934 p->drawLine(x+3, (y+h)/2-2, x+w-4, (y+h)/2-2);
1923 p->drawLine(x+3, (y+h)/2, x+w-4, (y+h)/2); 1935 p->drawLine(x+3, (y+h)/2, x+w-4, (y+h)/2);
1924 p->drawLine(x+3, (y+h)/2+2, x+w-4, (y+h)/2+2); 1936 p->drawLine(x+3, (y+h)/2+2, x+w-4, (y+h)/2+2);
1925 }*/ 1937 }*/
1926 } 1938 }
1927 else 1939 else
1928 p->drawPixmap(x, y, isHover ? *getPixmap(CBHover) : *getPixmap(CB)); 1940 p->drawPixmap(x, y, isHover ? *getPixmap(CBHover) : *getPixmap(CB));
1929 } 1941 }
1930} 1942}
1931 1943
1932void LiquidStyle::drawIndicatorMask(QPainter *p, int x, int y, int /*w*/, int /*h*/, 1944void LiquidStyle::drawIndicatorMask(QPainter *p, int x, int y, int /*w*/, int /*h*/,
1933 int /*state*/) 1945 int /*state*/)
1934{ 1946{
1935 // needed for some reason by KHtml, even tho it's all filled ;P 1947 // needed for some reason by KHtml, even tho it's all filled ;P
1936 p->drawPixmap(x, y, *getPixmap(HTMLCB)->mask()); 1948 p->drawPixmap(x, y, *getPixmap(HTMLCB)->mask());
1937 1949
1938} 1950}
1939 1951
1940void LiquidStyle::drawSlider(QPainter *p, int x, int y, int w, int h, 1952void LiquidStyle::drawSlider(QPainter *p, int x, int y, int w, int h,
1941 const QColorGroup &/*g*/, Orientation orient, 1953 const QColorGroup &/*g*/, Orientation orient,
1942 bool, bool) 1954 bool, bool)
1943{ 1955{
1944 QWidget *parent = (QWidget *)p->device(); 1956 QWidget *parent = (QWidget *)p->device();
1945 p->setBrushOrigin(parent->pos()); 1957 p->setBrushOrigin(parent->pos());
1946 parent->erase(x, y, w, h); 1958 parent->erase(x, y, w, h);
1947 p->drawPixmap(x, y, orient == Qt::Horizontal ? *getPixmap(HSlider) : 1959 p->drawPixmap(x, y, orient == Qt::Horizontal ? *getPixmap(HSlider) :
1948 *getPixmap(VSlider)); 1960 *getPixmap(VSlider));
1949} 1961}
1950 1962
1951void LiquidStyle::drawSliderMask(QPainter *p, int x, int y, int /*w*/, int /*h*/, 1963void LiquidStyle::drawSliderMask(QPainter *p, int x, int y, int /*w*/, int /*h*/,