-rw-r--r-- | noncore/styles/web/webstyle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/styles/web/webstyle.cpp b/noncore/styles/web/webstyle.cpp index 10d9791..cd3cf08 100644 --- a/noncore/styles/web/webstyle.cpp +++ b/noncore/styles/web/webstyle.cpp | |||
@@ -1,293 +1,293 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2001 Rik Hemsley (rikkus) <rik@kde.org> | 2 | * Copyright (C) 2001 Rik Hemsley (rikkus) <rik@kde.org> |
3 | * | 3 | * |
4 | * This library is free software; you can redistribute it and/or | 4 | * This library is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU Library General Public | 5 | * modify it under the terms of the GNU Library General Public |
6 | * License as published by the Free Software Foundation; either | 6 | * License as published by the Free Software Foundation; either |
7 | * version 2 of the License, or (at your option) any later version. | 7 | * version 2 of the License, or (at your option) any later version. |
8 | * | 8 | * |
9 | * This library is distributed in the hope that it will be useful, | 9 | * This library is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | * Library General Public License for more details. | 12 | * Library General Public License for more details. |
13 | * | 13 | * |
14 | * You should have received a copy of the GNU Library General Public License | 14 | * You should have received a copy of the GNU Library General Public License |
15 | * along with this library; see the file COPYING.LIB. If not, write to | 15 | * along with this library; see the file COPYING.LIB. If not, write to |
16 | * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 16 | * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
17 | * Boston, MA 02111-1307, USA. | 17 | * Boston, MA 02111-1307, USA. |
18 | */ | 18 | */ |
19 | 19 | ||
20 | #ifndef INCLUDE_MENUITEM_DEF | 20 | #ifndef INCLUDE_MENUITEM_DEF |
21 | #define INCLUDE_MENUITEM_DEF | 21 | #define INCLUDE_MENUITEM_DEF |
22 | #endif | 22 | #endif |
23 | 23 | ||
24 | #include <qmenudata.h> | 24 | #include <qmenudata.h> |
25 | #include <qpalette.h> | 25 | #include <qpalette.h> |
26 | #include <qbitmap.h> | 26 | #include <qbitmap.h> |
27 | #include <qtabbar.h> | 27 | #include <qtabbar.h> |
28 | #include <qpointarray.h> | 28 | #include <qpointarray.h> |
29 | #include <qscrollbar.h> | 29 | #include <qscrollbar.h> |
30 | #include <qframe.h> | 30 | #include <qframe.h> |
31 | #include <qpushbutton.h> | 31 | #include <qpushbutton.h> |
32 | #include <qdrawutil.h> | 32 | #include <qdrawutil.h> |
33 | #include <qpainter.h> | 33 | #include <qpainter.h> |
34 | 34 | ||
35 | #include "webstyle.h" | 35 | #include "webstyle.h" |
36 | 36 | ||
37 | static const int _indicatorSize = 13; | 37 | static const int _indicatorSize = 9; |
38 | static QButton * _highlightedButton = 0; | 38 | static QButton * _highlightedButton = 0; |
39 | static const int _scrollBarExtent = 12; | 39 | static const int _scrollBarExtent = 12; |
40 | 40 | ||
41 | static QFrame * _currentFrame = 0; | 41 | static QFrame * _currentFrame = 0; |
42 | static int _savedFrameLineWidth; | 42 | static int _savedFrameLineWidth; |
43 | static int _savedFrameMidLineWidth; | 43 | static int _savedFrameMidLineWidth; |
44 | static ulong _savedFrameStyle; | 44 | static ulong _savedFrameStyle; |
45 | 45 | ||
46 | static QColor contrastingForeground(const QColor & fg, const QColor & bg) | 46 | static QColor contrastingForeground(const QColor & fg, const QColor & bg) |
47 | { | 47 | { |
48 | int h, s, vbg, vfg; | 48 | int h, s, vbg, vfg; |
49 | 49 | ||
50 | bg.hsv(&h, &s, &vbg); | 50 | bg.hsv(&h, &s, &vbg); |
51 | fg.hsv(&h, &s, &vfg); | 51 | fg.hsv(&h, &s, &vfg); |
52 | 52 | ||
53 | int diff(vbg - vfg); | 53 | int diff(vbg - vfg); |
54 | 54 | ||
55 | if ((diff > -72) && (diff < 72)) | 55 | if ((diff > -72) && (diff < 72)) |
56 | { | 56 | { |
57 | return (vbg < 128) ? Qt::white : Qt::black; | 57 | return (vbg < 128) ? Qt::white : Qt::black; |
58 | } | 58 | } |
59 | else | 59 | else |
60 | { | 60 | { |
61 | return fg; | 61 | return fg; |
62 | } | 62 | } |
63 | } | 63 | } |
64 | 64 | ||
65 | // Gotta keep it separated. | 65 | // Gotta keep it separated. |
66 | 66 | ||
67 | static void | 67 | static void |
68 | scrollBarControlsMetrics | 68 | scrollBarControlsMetrics |
69 | ( | 69 | ( |
70 | const QScrollBar * sb, | 70 | const QScrollBar * sb, |
71 | int sliderStart, | 71 | int sliderStart, |
72 | int /* sliderMin */, | 72 | int /* sliderMin */, |
73 | int sliderMax, | 73 | int sliderMax, |
74 | int sliderLength, | 74 | int sliderLength, |
75 | int buttonDim, | 75 | int buttonDim, |
76 | QRect & rSub, | 76 | QRect & rSub, |
77 | QRect & rAdd, | 77 | QRect & rAdd, |
78 | QRect & rSubPage, | 78 | QRect & rSubPage, |
79 | QRect & rAddPage, | 79 | QRect & rAddPage, |
80 | QRect & rSlider | 80 | QRect & rSlider |
81 | ) | 81 | ) |
82 | { | 82 | { |
83 | bool horizontal = sb->orientation() == QScrollBar::Horizontal; | 83 | bool horizontal = sb->orientation() == QScrollBar::Horizontal; |
84 | 84 | ||
85 | int len = horizontal ? sb->width() : sb->height(); | 85 | int len = horizontal ? sb->width() : sb->height(); |
86 | 86 | ||
87 | int extent = horizontal ? sb->height() : sb->width(); | 87 | int extent = horizontal ? sb->height() : sb->width(); |
88 | 88 | ||
89 | QColorGroup g = sb->colorGroup(); | 89 | QColorGroup g = sb->colorGroup(); |
90 | 90 | ||
91 | if (sliderStart > sliderMax) | 91 | if (sliderStart > sliderMax) |
92 | sliderStart = sliderMax; | 92 | sliderStart = sliderMax; |
93 | 93 | ||
94 | int sliderEnd = sliderStart + sliderLength; | 94 | int sliderEnd = sliderStart + sliderLength; |
95 | 95 | ||
96 | int addX, addY; | 96 | int addX, addY; |
97 | int subX, subY; | 97 | int subX, subY; |
98 | int subPageX, subPageY, subPageW, subPageH; | 98 | int subPageX, subPageY, subPageW, subPageH; |
99 | int addPageX, addPageY, addPageW, addPageH; | 99 | int addPageX, addPageY, addPageW, addPageH; |
100 | int sliderX, sliderY, sliderW, sliderH; | 100 | int sliderX, sliderY, sliderW, sliderH; |
101 | 101 | ||
102 | if (horizontal) | 102 | if (horizontal) |
103 | { | 103 | { |
104 | subY = 0; | 104 | subY = 0; |
105 | addY = 0; | 105 | addY = 0; |
106 | subX = 0; | 106 | subX = 0; |
107 | addX = buttonDim; | 107 | addX = buttonDim; |
108 | 108 | ||
109 | subPageX = buttonDim * 2; | 109 | subPageX = buttonDim * 2; |
110 | subPageY = 0; | 110 | subPageY = 0; |
111 | subPageW = sliderStart - 1; | 111 | subPageW = sliderStart - 1; |
112 | subPageH = extent; | 112 | subPageH = extent; |
113 | 113 | ||
114 | addPageX = sliderEnd; | 114 | addPageX = sliderEnd; |
115 | addPageY = 0; | 115 | addPageY = 0; |
116 | addPageW = len - sliderEnd; | 116 | addPageW = len - sliderEnd; |
117 | addPageH = extent; | 117 | addPageH = extent; |
118 | 118 | ||
119 | sliderX = sliderStart; | 119 | sliderX = sliderStart; |
120 | sliderY = 0; | 120 | sliderY = 0; |
121 | sliderW = sliderLength; | 121 | sliderW = sliderLength; |
122 | sliderH = extent; | 122 | sliderH = extent; |
123 | } | 123 | } |
124 | else | 124 | else |
125 | { | 125 | { |
126 | subX = 0; | 126 | subX = 0; |
127 | addX = 0; | 127 | addX = 0; |
128 | subY = len - buttonDim * 2; | 128 | subY = len - buttonDim * 2; |
129 | addY = len - buttonDim; | 129 | addY = len - buttonDim; |
130 | 130 | ||
131 | subPageX = 0; | 131 | subPageX = 0; |
132 | subPageY = 0; | 132 | subPageY = 0; |
133 | subPageW = extent; | 133 | subPageW = extent; |
134 | subPageH = sliderStart; | 134 | subPageH = sliderStart; |
135 | 135 | ||
136 | addPageX = 0; | 136 | addPageX = 0; |
137 | addPageY = sliderEnd; | 137 | addPageY = sliderEnd; |
138 | addPageW = extent; | 138 | addPageW = extent; |
139 | addPageH = subY - sliderEnd; | 139 | addPageH = subY - sliderEnd; |
140 | 140 | ||
141 | sliderX = 0; | 141 | sliderX = 0; |
142 | sliderY = sliderStart; | 142 | sliderY = sliderStart; |
143 | sliderW = extent; | 143 | sliderW = extent; |
144 | sliderH = sliderLength; | 144 | sliderH = sliderLength; |
145 | } | 145 | } |
146 | 146 | ||
147 | rSub .setRect( subX, subY, buttonDim, buttonDim); | 147 | rSub .setRect( subX, subY, buttonDim, buttonDim); |
148 | rAdd .setRect( addX, addY, buttonDim, buttonDim); | 148 | rAdd .setRect( addX, addY, buttonDim, buttonDim); |
149 | rSubPage .setRect(subPageX, subPageY, subPageW, subPageH); | 149 | rSubPage .setRect(subPageX, subPageY, subPageW, subPageH); |
150 | rAddPage .setRect(addPageX, addPageY, addPageW, addPageH); | 150 | rAddPage .setRect(addPageX, addPageY, addPageW, addPageH); |
151 | rSlider .setRect( sliderX, sliderY, sliderW, sliderH); | 151 | rSlider .setRect( sliderX, sliderY, sliderW, sliderH); |
152 | } | 152 | } |
153 | 153 | ||
154 | // Rounded rects my way. | 154 | // Rounded rects my way. |
155 | 155 | ||
156 | static void | 156 | static void |
157 | drawFunkyRect | 157 | drawFunkyRect |
158 | ( | 158 | ( |
159 | QPainter * p, | 159 | QPainter * p, |
160 | int x, | 160 | int x, |
161 | int y, | 161 | int y, |
162 | int w, | 162 | int w, |
163 | int h, | 163 | int h, |
164 | bool small | 164 | bool small |
165 | ) | 165 | ) |
166 | { | 166 | { |
167 | p->translate(x, y); | 167 | p->translate(x, y); |
168 | 168 | ||
169 | if (small) | 169 | if (small) |
170 | { | 170 | { |
171 | p->drawLine( 2, 0, w - 3, 0 ); | 171 | p->drawLine( 2, 0, w - 3, 0 ); |
172 | p->drawLine( w - 1, 2, w - 1, h - 3 ); | 172 | p->drawLine( w - 1, 2, w - 1, h - 3 ); |
173 | p->drawLine( w - 3, h - 1, 2, h - 1 ); | 173 | p->drawLine( w - 3, h - 1, 2, h - 1 ); |
174 | p->drawLine( 0, h - 3, 0, 2 ); | 174 | p->drawLine( 0, h - 3, 0, 2 ); |
175 | 175 | ||
176 | // Use an array of points so that there's only one round-trip with the | 176 | // Use an array of points so that there's only one round-trip with the |
177 | // X server. | 177 | // X server. |
178 | 178 | ||
179 | QCOORD pointList[] = | 179 | QCOORD pointList[] = |
180 | { | 180 | { |
181 | 1, 1, | 181 | 1, 1, |
182 | w - 2, 1, | 182 | w - 2, 1, |
183 | w - 2, h - 2, | 183 | w - 2, h - 2, |
184 | 1, h - 2 | 184 | 1, h - 2 |
185 | }; | 185 | }; |
186 | 186 | ||
187 | p->drawPoints(QPointArray(4, pointList)); | 187 | p->drawPoints(QPointArray(4, pointList)); |
188 | } | 188 | } |
189 | else | 189 | else |
190 | { | 190 | { |
191 | p->drawLine( 3, 0, w - 4, 0 ); | 191 | p->drawLine( 3, 0, w - 4, 0 ); |
192 | p->drawLine( w - 1, 3, w - 1, h - 4 ); | 192 | p->drawLine( w - 1, 3, w - 1, h - 4 ); |
193 | p->drawLine( w - 4, h - 1, 3, h - 1 ); | 193 | p->drawLine( w - 4, h - 1, 3, h - 1 ); |
194 | p->drawLine( 0, h - 4, 0, 3 ); | 194 | p->drawLine( 0, h - 4, 0, 3 ); |
195 | 195 | ||
196 | QCOORD pointList[] = | 196 | QCOORD pointList[] = |
197 | { | 197 | { |
198 | 1, 2, | 198 | 1, 2, |
199 | 2, 1, | 199 | 2, 1, |
200 | w - 3, 1, | 200 | w - 3, 1, |
201 | w - 2, 2, | 201 | w - 2, 2, |
202 | w - 2, h - 3, | 202 | w - 2, h - 3, |
203 | w - 3, h - 2, | 203 | w - 3, h - 2, |
204 | 2, h - 2, | 204 | 2, h - 2, |
205 | 1, h - 3 | 205 | 1, h - 3 |
206 | }; | 206 | }; |
207 | 207 | ||
208 | p->drawPoints(QPointArray(8, pointList)); | 208 | p->drawPoints(QPointArray(8, pointList)); |
209 | } | 209 | } |
210 | 210 | ||
211 | p->translate(-x, -y); | 211 | p->translate(-x, -y); |
212 | } | 212 | } |
213 | 213 | ||
214 | WebStyle::WebStyle() | 214 | WebStyle::WebStyle() |
215 | : QWindowsStyle() | 215 | : QWindowsStyle() |
216 | { | 216 | { |
217 | setButtonDefaultIndicatorWidth(1); | 217 | setButtonDefaultIndicatorWidth(1); |
218 | setScrollBarExtent(_scrollBarExtent, _scrollBarExtent); | 218 | setScrollBarExtent(_scrollBarExtent, _scrollBarExtent); |
219 | setButtonMargin( 3 ); | 219 | setButtonMargin( 3 ); |
220 | setSliderThickness(_scrollBarExtent ); | 220 | setSliderThickness(_scrollBarExtent ); |
221 | } | 221 | } |
222 | 222 | ||
223 | WebStyle::~WebStyle() | 223 | WebStyle::~WebStyle() |
224 | { | 224 | { |
225 | // Empty. | 225 | // Empty. |
226 | } | 226 | } |
227 | 227 | ||
228 | void | 228 | void |
229 | WebStyle::polish(QApplication *) | 229 | WebStyle::polish(QApplication *) |
230 | { | 230 | { |
231 | // Empty. | 231 | // Empty. |
232 | } | 232 | } |
233 | 233 | ||
234 | void | 234 | void |
235 | WebStyle::polish(QPalette &) | 235 | WebStyle::polish(QPalette &) |
236 | { | 236 | { |
237 | // Empty. | 237 | // Empty. |
238 | } | 238 | } |
239 | 239 | ||
240 | void | 240 | void |
241 | WebStyle::unPolish(QApplication *) | 241 | WebStyle::unPolish(QApplication *) |
242 | { | 242 | { |
243 | // Empty. | 243 | // Empty. |
244 | } | 244 | } |
245 | 245 | ||
246 | void | 246 | void |
247 | WebStyle::polish(QWidget * w) | 247 | WebStyle::polish(QWidget * w) |
248 | { | 248 | { |
249 | if (w->inherits("QPushButton")) | 249 | if (w->inherits("QPushButton")) |
250 | w->installEventFilter(this); | 250 | w->installEventFilter(this); |
251 | 251 | ||
252 | else if (w->inherits("QGroupBox") || w->inherits("QFrame")) | 252 | else if (w->inherits("QGroupBox") || w->inherits("QFrame")) |
253 | { | 253 | { |
254 | QFrame * f(static_cast<QFrame *>(w)); | 254 | QFrame * f(static_cast<QFrame *>(w)); |
255 | 255 | ||
256 | if (f->frameStyle() != QFrame::NoFrame) | 256 | if (f->frameStyle() != QFrame::NoFrame) |
257 | { | 257 | { |
258 | _currentFrame = f; | 258 | _currentFrame = f; |
259 | 259 | ||
260 | _savedFrameLineWidth = f->lineWidth(); | 260 | _savedFrameLineWidth = f->lineWidth(); |
261 | _savedFrameMidLineWidth = f->midLineWidth(); | 261 | _savedFrameMidLineWidth = f->midLineWidth(); |
262 | _savedFrameStyle = f->frameStyle(); | 262 | _savedFrameStyle = f->frameStyle(); |
263 | 263 | ||
264 | if (f->frameShape() == QFrame::HLine || f->frameShape() == QFrame::VLine) | 264 | if (f->frameShape() == QFrame::HLine || f->frameShape() == QFrame::VLine) |
265 | { | 265 | { |
266 | f->setMidLineWidth(1); | 266 | f->setMidLineWidth(1); |
267 | f->setFrameStyle(f->frameShape() | QFrame::Plain); | 267 | f->setFrameStyle(f->frameShape() | QFrame::Plain); |
268 | } | 268 | } |
269 | else | 269 | else |
270 | { | 270 | { |
271 | f->setLineWidth(1); | 271 | f->setLineWidth(1); |
272 | f->setFrameStyle(QFrame::Box | QFrame::Plain); | 272 | f->setFrameStyle(QFrame::Box | QFrame::Plain); |
273 | } | 273 | } |
274 | } | 274 | } |
275 | } | 275 | } |
276 | } | 276 | } |
277 | 277 | ||
278 | void | 278 | void |
279 | WebStyle::unPolish(QWidget * w) | 279 | WebStyle::unPolish(QWidget * w) |
280 | { | 280 | { |
281 | if (w->inherits("QPushButton")) | 281 | if (w->inherits("QPushButton")) |
282 | w->removeEventFilter(this); | 282 | w->removeEventFilter(this); |
283 | 283 | ||
284 | else if (w == _currentFrame) | 284 | else if (w == _currentFrame) |
285 | { | 285 | { |
286 | QFrame * f(static_cast<QFrame *>(w)); | 286 | QFrame * f(static_cast<QFrame *>(w)); |
287 | 287 | ||
288 | f->setLineWidth(_savedFrameLineWidth); | 288 | f->setLineWidth(_savedFrameLineWidth); |
289 | f->setMidLineWidth(_savedFrameMidLineWidth); | 289 | f->setMidLineWidth(_savedFrameMidLineWidth); |
290 | f->setFrameStyle(_savedFrameStyle); | 290 | f->setFrameStyle(_savedFrameStyle); |
291 | } | 291 | } |
292 | } | 292 | } |
293 | 293 | ||
@@ -468,513 +468,513 @@ WebStyle::drawScrollBarControls | |||
468 | p->drawRect(rAdd); | 468 | p->drawRect(rAdd); |
469 | 469 | ||
470 | Qt::ArrowType t = | 470 | Qt::ArrowType t = |
471 | sb->orientation() == Horizontal ? Qt::RightArrow : Qt::DownArrow; | 471 | sb->orientation() == Horizontal ? Qt::RightArrow : Qt::DownArrow; |
472 | 472 | ||
473 | // Is it me or is KStyle::drawArrow broken ? | 473 | // Is it me or is KStyle::drawArrow broken ? |
474 | 474 | ||
475 | drawArrow | 475 | drawArrow |
476 | ( | 476 | ( |
477 | p, | 477 | p, |
478 | t, | 478 | t, |
479 | true, // FIXME - down ? | 479 | true, // FIXME - down ? |
480 | rAdd.x(), | 480 | rAdd.x(), |
481 | rAdd.y(), | 481 | rAdd.y(), |
482 | rAdd.width(), | 482 | rAdd.width(), |
483 | rAdd.height(), | 483 | rAdd.height(), |
484 | g, | 484 | g, |
485 | true // FIXME - enabled ? | 485 | true // FIXME - enabled ? |
486 | ); | 486 | ); |
487 | } | 487 | } |
488 | 488 | ||
489 | if (controls & SubLine && rSub.isValid()) | 489 | if (controls & SubLine && rSub.isValid()) |
490 | { | 490 | { |
491 | bool active(activeControl & SubLine); | 491 | bool active(activeControl & SubLine); |
492 | 492 | ||
493 | QColor c(active ? g.highlight() : g.dark()); | 493 | QColor c(active ? g.highlight() : g.dark()); |
494 | 494 | ||
495 | p->setPen(c); | 495 | p->setPen(c); |
496 | p->setBrush(g.button()); | 496 | p->setBrush(g.button()); |
497 | p->drawRect(rSub); | 497 | p->drawRect(rSub); |
498 | 498 | ||
499 | Qt::ArrowType t = | 499 | Qt::ArrowType t = |
500 | sb->orientation() == Horizontal ? Qt::LeftArrow : Qt::UpArrow; | 500 | sb->orientation() == Horizontal ? Qt::LeftArrow : Qt::UpArrow; |
501 | 501 | ||
502 | drawArrow | 502 | drawArrow |
503 | ( | 503 | ( |
504 | p, | 504 | p, |
505 | t, | 505 | t, |
506 | true, // FIXME - down ? | 506 | true, // FIXME - down ? |
507 | rSub.x(), | 507 | rSub.x(), |
508 | rSub.y(), | 508 | rSub.y(), |
509 | rSub.width(), | 509 | rSub.width(), |
510 | rSub.height(), | 510 | rSub.height(), |
511 | g, | 511 | g, |
512 | true // FIXME - enabled ? | 512 | true // FIXME - enabled ? |
513 | ); | 513 | ); |
514 | } | 514 | } |
515 | 515 | ||
516 | if (controls & SubPage && rSubPage.isValid()) | 516 | if (controls & SubPage && rSubPage.isValid()) |
517 | { | 517 | { |
518 | p->setPen(g.mid()); | 518 | p->setPen(g.mid()); |
519 | p->setBrush(g.base()); | 519 | p->setBrush(g.base()); |
520 | p->drawRect(rSubPage); | 520 | p->drawRect(rSubPage); |
521 | } | 521 | } |
522 | 522 | ||
523 | if (controls & AddPage && rAddPage.isValid()) | 523 | if (controls & AddPage && rAddPage.isValid()) |
524 | { | 524 | { |
525 | p->setPen(g.mid()); | 525 | p->setPen(g.mid()); |
526 | p->setBrush(g.base()); | 526 | p->setBrush(g.base()); |
527 | p->drawRect(rAddPage); | 527 | p->drawRect(rAddPage); |
528 | } | 528 | } |
529 | 529 | ||
530 | if (controls & Slider && rSlider.isValid()) | 530 | if (controls & Slider && rSlider.isValid()) |
531 | { | 531 | { |
532 | p->setPen(activeControl & Slider ? g.highlight() : g.dark()); | 532 | p->setPen(activeControl & Slider ? g.highlight() : g.dark()); |
533 | 533 | ||
534 | p->setBrush(g.button()); | 534 | p->setBrush(g.button()); |
535 | p->drawRect(rSlider); | 535 | p->drawRect(rSlider); |
536 | 536 | ||
537 | p->setBrush(g.light()); | 537 | p->setBrush(g.light()); |
538 | p->setPen(g.dark()); | 538 | p->setPen(g.dark()); |
539 | 539 | ||
540 | if (sliderLength > _scrollBarExtent * 2) | 540 | if (sliderLength > _scrollBarExtent * 2) |
541 | { | 541 | { |
542 | int ellipseSize = | 542 | int ellipseSize = |
543 | Horizontal == sb->orientation() | 543 | Horizontal == sb->orientation() |
544 | ? | 544 | ? |
545 | rSlider.height() - 4 | 545 | rSlider.height() - 4 |
546 | : | 546 | : |
547 | rSlider.width() - 4 | 547 | rSlider.width() - 4 |
548 | ; | 548 | ; |
549 | 549 | ||
550 | QPoint center(rSlider.center()); | 550 | QPoint center(rSlider.center()); |
551 | 551 | ||
552 | if (Horizontal == sb->orientation()) | 552 | if (Horizontal == sb->orientation()) |
553 | { | 553 | { |
554 | p->drawEllipse | 554 | p->drawEllipse |
555 | ( | 555 | ( |
556 | center.x() - ellipseSize / 2, rSlider.y() + 2, | 556 | center.x() - ellipseSize / 2, rSlider.y() + 2, |
557 | ellipseSize, ellipseSize | 557 | ellipseSize, ellipseSize |
558 | ); | 558 | ); |
559 | } | 559 | } |
560 | else | 560 | else |
561 | { | 561 | { |
562 | p->drawEllipse | 562 | p->drawEllipse |
563 | ( | 563 | ( |
564 | rSlider.x() + 2, center.y() - ellipseSize / 2, | 564 | rSlider.x() + 2, center.y() - ellipseSize / 2, |
565 | ellipseSize, ellipseSize | 565 | ellipseSize, ellipseSize |
566 | ); | 566 | ); |
567 | } | 567 | } |
568 | } | 568 | } |
569 | } | 569 | } |
570 | 570 | ||
571 | p->restore(); | 571 | p->restore(); |
572 | } | 572 | } |
573 | 573 | ||
574 | QStyle::ScrollControl | 574 | QStyle::ScrollControl |
575 | WebStyle::scrollBarPointOver | 575 | WebStyle::scrollBarPointOver |
576 | ( | 576 | ( |
577 | const QScrollBar * sb, | 577 | const QScrollBar * sb, |
578 | int sliderStart, | 578 | int sliderStart, |
579 | const QPoint & point | 579 | const QPoint & point |
580 | ) | 580 | ) |
581 | { | 581 | { |
582 | if (!sb->rect().contains(point)) | 582 | if (!sb->rect().contains(point)) |
583 | return NoScroll; | 583 | return NoScroll; |
584 | 584 | ||
585 | int sliderMin, sliderMax, sliderLength, buttonDim; | 585 | int sliderMin, sliderMax, sliderLength, buttonDim; |
586 | 586 | ||
587 | scrollBarMetrics(sb, sliderMin, sliderMax, sliderLength, buttonDim); | 587 | scrollBarMetrics(sb, sliderMin, sliderMax, sliderLength, buttonDim); |
588 | 588 | ||
589 | if (sb->orientation() == QScrollBar::Horizontal) | 589 | if (sb->orientation() == QScrollBar::Horizontal) |
590 | { | 590 | { |
591 | int x = point.x(); | 591 | int x = point.x(); |
592 | 592 | ||
593 | if (x <= buttonDim) | 593 | if (x <= buttonDim) |
594 | return SubLine; | 594 | return SubLine; |
595 | 595 | ||
596 | else if (x <= buttonDim * 2) | 596 | else if (x <= buttonDim * 2) |
597 | return AddLine; | 597 | return AddLine; |
598 | 598 | ||
599 | else if (x < sliderStart) | 599 | else if (x < sliderStart) |
600 | return SubPage; | 600 | return SubPage; |
601 | 601 | ||
602 | else if (x < sliderStart+sliderLength) | 602 | else if (x < sliderStart+sliderLength) |
603 | return Slider; | 603 | return Slider; |
604 | 604 | ||
605 | return AddPage; | 605 | return AddPage; |
606 | } | 606 | } |
607 | else | 607 | else |
608 | { | 608 | { |
609 | int y = point.y(); | 609 | int y = point.y(); |
610 | 610 | ||
611 | if (y < sliderStart) | 611 | if (y < sliderStart) |
612 | return SubPage; | 612 | return SubPage; |
613 | 613 | ||
614 | else if (y < sliderStart + sliderLength) | 614 | else if (y < sliderStart + sliderLength) |
615 | return Slider; | 615 | return Slider; |
616 | 616 | ||
617 | else if (y < sliderMax + sliderLength) | 617 | else if (y < sliderMax + sliderLength) |
618 | return AddPage; | 618 | return AddPage; |
619 | 619 | ||
620 | else if (y < sliderMax + sliderLength + buttonDim) | 620 | else if (y < sliderMax + sliderLength + buttonDim) |
621 | return SubLine; | 621 | return SubLine; |
622 | 622 | ||
623 | return AddLine; | 623 | return AddLine; |
624 | } | 624 | } |
625 | } | 625 | } |
626 | 626 | ||
627 | void | 627 | void |
628 | WebStyle::scrollBarMetrics | 628 | WebStyle::scrollBarMetrics |
629 | ( | 629 | ( |
630 | const QScrollBar * sb, | 630 | const QScrollBar * sb, |
631 | int & sliderMin, | 631 | int & sliderMin, |
632 | int & sliderMax, | 632 | int & sliderMax, |
633 | int & sliderLength, | 633 | int & sliderLength, |
634 | int & buttonDim | 634 | int & buttonDim |
635 | ) | 635 | ) |
636 | { | 636 | { |
637 | // return QWindowsStyle::scrollBarMetrics(sb, sliderMin, sliderMax, | 637 | // return QWindowsStyle::scrollBarMetrics(sb, sliderMin, sliderMax, |
638 | // sliderLength, buttonDim ); | 638 | // sliderLength, buttonDim ); |
639 | int maxlen; | 639 | int maxlen; |
640 | 640 | ||
641 | bool horizontal = sb->orientation() == QScrollBar::Horizontal; | 641 | bool horizontal = sb->orientation() == QScrollBar::Horizontal; |
642 | 642 | ||
643 | int len = (horizontal) ? sb->width() : sb->height(); | 643 | int len = (horizontal) ? sb->width() : sb->height(); |
644 | 644 | ||
645 | int extent = (horizontal) ? sb->height() : sb->width(); | 645 | int extent = (horizontal) ? sb->height() : sb->width(); |
646 | 646 | ||
647 | if (len > (extent - 1) * 2) | 647 | if (len > (extent - 1) * 2) |
648 | buttonDim = extent; | 648 | buttonDim = extent; |
649 | else | 649 | else |
650 | buttonDim = len / 2 - 1; | 650 | buttonDim = len / 2 - 1; |
651 | 651 | ||
652 | if (horizontal) | 652 | if (horizontal) |
653 | sliderMin = buttonDim * 2; | 653 | sliderMin = buttonDim * 2; |
654 | else | 654 | else |
655 | sliderMin = 1; | 655 | sliderMin = 1; |
656 | 656 | ||
657 | maxlen = len - buttonDim * 2 - 1; | 657 | maxlen = len - buttonDim * 2 - 1; |
658 | 658 | ||
659 | int div = QMAX(1, (sb->maxValue() - sb->minValue() + sb->pageStep() ) ); | 659 | int div = QMAX(1, (sb->maxValue() - sb->minValue() + sb->pageStep() ) ); |
660 | 660 | ||
661 | sliderLength = | 661 | sliderLength = |
662 | (sb->pageStep() * maxlen) / div; | 662 | (sb->pageStep() * maxlen) / div; |
663 | 663 | ||
664 | if (sliderLength < _scrollBarExtent) | 664 | if (sliderLength < _scrollBarExtent) |
665 | sliderLength = _scrollBarExtent; | 665 | sliderLength = _scrollBarExtent; |
666 | 666 | ||
667 | if (sliderLength > maxlen) | 667 | if (sliderLength > maxlen) |
668 | sliderLength = maxlen; | 668 | sliderLength = maxlen; |
669 | 669 | ||
670 | sliderMax = sliderMin + maxlen - sliderLength; | 670 | sliderMax = sliderMin + maxlen - sliderLength; |
671 | } | 671 | } |
672 | 672 | ||
673 | QSize | 673 | QSize |
674 | WebStyle::indicatorSize() const | 674 | WebStyle::indicatorSize() const |
675 | { | 675 | { |
676 | return QSize(_indicatorSize, _indicatorSize); | 676 | return QSize(_indicatorSize, _indicatorSize); |
677 | } | 677 | } |
678 | 678 | ||
679 | void | 679 | void |
680 | WebStyle::drawIndicator | 680 | WebStyle::drawIndicator |
681 | ( | 681 | ( |
682 | QPainter * p, | 682 | QPainter * p, |
683 | int x, | 683 | int x, |
684 | int y, | 684 | int y, |
685 | int w, | 685 | int w, |
686 | int h, | 686 | int h, |
687 | const QColorGroup & g, | 687 | const QColorGroup & g, |
688 | int state, | 688 | int state, |
689 | bool down, | 689 | bool down, |
690 | bool enabled | 690 | bool enabled |
691 | ) | 691 | ) |
692 | { | 692 | { |
693 | p->save(); | 693 | p->save(); |
694 | 694 | ||
695 | p->fillRect(x, y, w, h, g.background()); | 695 | p->fillRect(x, y, w, h, g.background()); |
696 | 696 | ||
697 | if (enabled) | 697 | if (enabled) |
698 | { | 698 | { |
699 | p->setPen(down ? g.highlight() : contrastingForeground(g.dark(), g.background())); | 699 | p->setPen(down ? g.highlight() : contrastingForeground(g.dark(), g.background())); |
700 | } | 700 | } |
701 | else | 701 | else |
702 | { | 702 | { |
703 | g.mid(); | 703 | g.mid(); |
704 | } | 704 | } |
705 | 705 | ||
706 | p->drawRect(x, y, w, h); | 706 | p->drawRect(x, y, w, h); |
707 | 707 | ||
708 | if (state != QButton::Off) | 708 | if (state != QButton::Off) |
709 | { | 709 | { |
710 | p->fillRect(x + 2, y + 2, w - 4, h - 4, enabled ? g.highlight() : g.mid()); | 710 | p->fillRect(x + 2, y + 2, w - 4, h - 4, enabled ? g.highlight() : g.mid()); |
711 | 711 | ||
712 | if (state == QButton::NoChange) | 712 | if (state == QButton::NoChange) |
713 | { | 713 | { |
714 | p->fillRect(x + 4, y + 4, w - 8, h - 8, g.background()); | 714 | p->fillRect(x + 4, y + 4, w - 8, h - 8, g.background()); |
715 | } | 715 | } |
716 | } | 716 | } |
717 | 717 | ||
718 | p->restore(); | 718 | p->restore(); |
719 | } | 719 | } |
720 | 720 | ||
721 | QSize | 721 | QSize |
722 | WebStyle::exclusiveIndicatorSize() const | 722 | WebStyle::exclusiveIndicatorSize() const |
723 | { | 723 | { |
724 | return QSize(_indicatorSize, _indicatorSize); | 724 | return QSize(_indicatorSize+2, _indicatorSize+2); |
725 | } | 725 | } |
726 | 726 | ||
727 | void | 727 | void |
728 | WebStyle::drawExclusiveIndicator | 728 | WebStyle::drawExclusiveIndicator |
729 | ( | 729 | ( |
730 | QPainter * p, | 730 | QPainter * p, |
731 | int x, | 731 | int x, |
732 | int y, | 732 | int y, |
733 | int w, | 733 | int w, |
734 | int h, | 734 | int h, |
735 | const QColorGroup & g, | 735 | const QColorGroup & g, |
736 | bool on, | 736 | bool on, |
737 | bool down, | 737 | bool down, |
738 | bool enabled | 738 | bool enabled |
739 | ) | 739 | ) |
740 | { | 740 | { |
741 | p->save(); | 741 | p->save(); |
742 | 742 | ||
743 | p->fillRect(x, y, w, h, g.background()); | 743 | p->fillRect(x, y, w, h, g.background()); |
744 | 744 | ||
745 | if (enabled) | 745 | if (enabled) |
746 | { | 746 | { |
747 | p->setPen(down ? g.highlight() : contrastingForeground(g.dark(), g.background())); | 747 | p->setPen(down ? g.highlight() : contrastingForeground(g.dark(), g.background())); |
748 | } | 748 | } |
749 | else | 749 | else |
750 | { | 750 | { |
751 | p->setPen(g.mid()); | 751 | p->setPen(g.mid()); |
752 | } | 752 | } |
753 | 753 | ||
754 | p->setBrush(g.brush(QColorGroup::Background)); | 754 | p->setBrush(g.brush(QColorGroup::Background)); |
755 | 755 | ||
756 | // Avoid misshapen ellipses. Qt or X bug ? Who knows... | 756 | // Avoid misshapen ellipses. Qt or X bug ? Who knows... |
757 | 757 | ||
758 | if (0 == w % 2) | 758 | if (0 == w % 2) |
759 | --w; | 759 | --w; |
760 | 760 | ||
761 | if (0 == h % 2) | 761 | if (0 == h % 2) |
762 | --h; | 762 | --h; |
763 | 763 | ||
764 | p->drawEllipse(x, y, w, h); | 764 | p->drawEllipse(x, y, w, h); |
765 | 765 | ||
766 | if (on) | 766 | if (on) |
767 | { | 767 | { |
768 | p->setPen(enabled ? g.highlight() : g.mid()); | 768 | p->setPen(enabled ? g.highlight() : g.mid()); |
769 | p->setBrush(enabled ? g.highlight() : g.mid()); | 769 | p->setBrush(enabled ? g.highlight() : g.mid()); |
770 | p->drawEllipse(x + 3, y + 3, w - 6, h - 6); | 770 | p->drawEllipse(x + 3, y + 3, w - 6, h - 6); |
771 | } | 771 | } |
772 | 772 | ||
773 | p->restore(); | 773 | p->restore(); |
774 | } | 774 | } |
775 | 775 | ||
776 | void | 776 | void |
777 | WebStyle::drawIndicatorMask | 777 | WebStyle::drawIndicatorMask |
778 | ( | 778 | ( |
779 | QPainter * p, | 779 | QPainter * p, |
780 | int x, | 780 | int x, |
781 | int y, | 781 | int y, |
782 | int w, | 782 | int w, |
783 | int h, | 783 | int h, |
784 | int /* state */ | 784 | int /* state */ |
785 | ) | 785 | ) |
786 | { | 786 | { |
787 | p->fillRect(x, y, w, h, Qt::color1); | 787 | p->fillRect(x, y, w, h, Qt::color1); |
788 | } | 788 | } |
789 | 789 | ||
790 | void | 790 | void |
791 | WebStyle::drawExclusiveIndicatorMask | 791 | WebStyle::drawExclusiveIndicatorMask |
792 | ( | 792 | ( |
793 | QPainter * p, | 793 | QPainter * p, |
794 | int x, | 794 | int x, |
795 | int y, | 795 | int y, |
796 | int w, | 796 | int w, |
797 | int h, | 797 | int h, |
798 | bool /* on */ | 798 | bool /* on */ |
799 | ) | 799 | ) |
800 | { | 800 | { |
801 | if (0 == w % 2) | 801 | if (0 == w % 2) |
802 | --w; | 802 | --w; |
803 | 803 | ||
804 | if (0 == h % 2) | 804 | if (0 == h % 2) |
805 | --h; | 805 | --h; |
806 | 806 | ||
807 | p->setPen(Qt::color1); | 807 | p->setPen(Qt::color1); |
808 | p->setBrush(Qt::color1); | 808 | p->setBrush(Qt::color1); |
809 | p->drawEllipse(x, y, w, h); | 809 | p->drawEllipse(x, y, w, h); |
810 | } | 810 | } |
811 | 811 | ||
812 | void | 812 | void |
813 | WebStyle::drawComboButton | 813 | WebStyle::drawComboButton |
814 | ( | 814 | ( |
815 | QPainter * p, | 815 | QPainter * p, |
816 | int x, | 816 | int x, |
817 | int y, | 817 | int y, |
818 | int w, | 818 | int w, |
819 | int h, | 819 | int h, |
820 | const QColorGroup & g, | 820 | const QColorGroup & g, |
821 | bool sunken, | 821 | bool sunken, |
822 | bool editable, | 822 | bool editable, |
823 | bool enabled, | 823 | bool enabled, |
824 | const QBrush * fill | 824 | const QBrush * fill |
825 | ) | 825 | ) |
826 | { | 826 | { |
827 | p->save(); | 827 | p->save(); |
828 | 828 | ||
829 | p->setPen(NoPen); | 829 | p->setPen(NoPen); |
830 | p->setBrush(0 == fill ? g.brush(QColorGroup::Background) : *fill); | 830 | p->setBrush(0 == fill ? g.brush(QColorGroup::Background) : *fill); |
831 | p->drawRect(x, y, w, h); | 831 | p->drawRect(x, y, w, h); |
832 | 832 | ||
833 | if (enabled) | 833 | if (enabled) |
834 | { | 834 | { |
835 | if (sunken) | 835 | if (sunken) |
836 | p->setPen(contrastingForeground(g.highlight(), g.background())); | 836 | p->setPen(contrastingForeground(g.highlight(), g.background())); |
837 | else | 837 | else |
838 | p->setPen(contrastingForeground(g.mid(), g.background())); | 838 | p->setPen(contrastingForeground(g.mid(), g.background())); |
839 | } | 839 | } |
840 | else | 840 | else |
841 | { | 841 | { |
842 | p->setPen(contrastingForeground(g.mid(), g.background())); | 842 | p->setPen(contrastingForeground(g.mid(), g.background())); |
843 | } | 843 | } |
844 | 844 | ||
845 | drawFunkyRect(p, x, y, w, h, true); | 845 | drawFunkyRect(p, x, y, w, h, true); |
846 | 846 | ||
847 | p->drawPoint(w - 10, h - 6); | 847 | p->drawPoint(w - 10, h - 6); |
848 | p->drawPoint(w - 9, h - 6); | 848 | p->drawPoint(w - 9, h - 6); |
849 | p->drawPoint(w - 8, h - 6); | 849 | p->drawPoint(w - 8, h - 6); |
850 | p->drawPoint(w - 7, h - 6); | 850 | p->drawPoint(w - 7, h - 6); |
851 | p->drawPoint(w - 6, h - 6); | 851 | p->drawPoint(w - 6, h - 6); |
852 | 852 | ||
853 | p->drawPoint(w - 9, h - 7); | 853 | p->drawPoint(w - 9, h - 7); |
854 | p->drawPoint(w - 8, h - 7); | 854 | p->drawPoint(w - 8, h - 7); |
855 | p->drawPoint(w - 7, h - 7); | 855 | p->drawPoint(w - 7, h - 7); |
856 | p->drawPoint(w - 6, h - 7); | 856 | p->drawPoint(w - 6, h - 7); |
857 | 857 | ||
858 | p->drawPoint(w - 8, h - 8); | 858 | p->drawPoint(w - 8, h - 8); |
859 | p->drawPoint(w - 7, h - 8); | 859 | p->drawPoint(w - 7, h - 8); |
860 | p->drawPoint(w - 6, h - 8); | 860 | p->drawPoint(w - 6, h - 8); |
861 | 861 | ||
862 | p->drawPoint(w - 7, h - 9); | 862 | p->drawPoint(w - 7, h - 9); |
863 | p->drawPoint(w - 6, h - 9); | 863 | p->drawPoint(w - 6, h - 9); |
864 | 864 | ||
865 | p->drawPoint(w - 6, h - 10); | 865 | p->drawPoint(w - 6, h - 10); |
866 | 866 | ||
867 | if (editable) | 867 | if (editable) |
868 | p->fillRect(comboButtonFocusRect(x, y, w, h), Qt::red); | 868 | p->fillRect(comboButtonFocusRect(x, y, w, h), Qt::red); |
869 | 869 | ||
870 | p->restore(); | 870 | p->restore(); |
871 | } | 871 | } |
872 | 872 | ||
873 | QRect | 873 | QRect |
874 | WebStyle::comboButtonRect(int x, int y, int w, int h) | 874 | WebStyle::comboButtonRect(int x, int y, int w, int h) |
875 | { | 875 | { |
876 | return QRect(x + 2, y + 2, w - 20, h - 4); | 876 | return QRect(x + 2, y + 2, w - 20, h - 4); |
877 | } | 877 | } |
878 | 878 | ||
879 | QRect | 879 | QRect |
880 | WebStyle::comboButtonFocusRect(int x, int y, int w, int h) | 880 | WebStyle::comboButtonFocusRect(int x, int y, int w, int h) |
881 | { | 881 | { |
882 | return QRect(x + 2, y + 2, w - 20, h - 4); | 882 | return QRect(x + 2, y + 2, w - 20, h - 4); |
883 | } | 883 | } |
884 | 884 | ||
885 | int | 885 | int |
886 | WebStyle::sliderLength() const | 886 | WebStyle::sliderLength() const |
887 | { | 887 | { |
888 | return 13; | 888 | return 13; |
889 | } | 889 | } |
890 | 890 | ||
891 | void | 891 | void |
892 | WebStyle::drawSliderGroove | 892 | WebStyle::drawSliderGroove |
893 | ( | 893 | ( |
894 | QPainter * p, | 894 | QPainter * p, |
895 | int x, | 895 | int x, |
896 | int y, | 896 | int y, |
897 | int w, | 897 | int w, |
898 | int h, | 898 | int h, |
899 | const QColorGroup & g, | 899 | const QColorGroup & g, |
900 | QCOORD /* c */, | 900 | QCOORD /* c */, |
901 | Orientation o | 901 | Orientation o |
902 | ) | 902 | ) |
903 | { | 903 | { |
904 | p->save(); | 904 | p->save(); |
905 | 905 | ||
906 | p->setPen(QPen(g.dark(), 0, Qt::DotLine)); | 906 | p->setPen(QPen(g.dark(), 0, Qt::DotLine)); |
907 | 907 | ||
908 | if( o == Qt::Horizontal ) | 908 | if( o == Qt::Horizontal ) |
909 | p->drawLine(x, y + h / 2, w, y + h / 2); | 909 | p->drawLine(x, y + h / 2, w, y + h / 2); |
910 | else | 910 | else |
911 | if( o == Qt::Vertical ) | 911 | if( o == Qt::Vertical ) |
912 | p->drawLine(x + w / 2, y, x + w / 2, h); | 912 | p->drawLine(x + w / 2, y, x + w / 2, h); |
913 | 913 | ||
914 | p->restore(); | 914 | p->restore(); |
915 | } | 915 | } |
916 | 916 | ||
917 | void | 917 | void |
918 | WebStyle::drawArrow | 918 | WebStyle::drawArrow |
919 | ( | 919 | ( |
920 | QPainter * p, | 920 | QPainter * p, |
921 | Qt::ArrowType type, | 921 | Qt::ArrowType type, |
922 | bool down, | 922 | bool down, |
923 | int x, | 923 | int x, |
924 | int y, | 924 | int y, |
925 | int w, | 925 | int w, |
926 | int h, | 926 | int h, |
927 | const QColorGroup & g, | 927 | const QColorGroup & g, |
928 | bool enabled, | 928 | bool enabled, |
929 | const QBrush * fill | 929 | const QBrush * fill |
930 | ) | 930 | ) |
931 | { | 931 | { |
932 | QWindowsStyle::drawArrow(p, type, down, x, y, w, h, g, enabled, fill); | 932 | QWindowsStyle::drawArrow(p, type, down, x, y, w, h, g, enabled, fill); |
933 | } | 933 | } |
934 | 934 | ||
935 | void | 935 | void |
936 | WebStyle::drawSlider | 936 | WebStyle::drawSlider |
937 | ( | 937 | ( |
938 | QPainter * p, | 938 | QPainter * p, |
939 | int x, | 939 | int x, |
940 | int y, | 940 | int y, |
941 | int w, | 941 | int w, |
942 | int h, | 942 | int h, |
943 | const QColorGroup & g, | 943 | const QColorGroup & g, |
944 | Orientation o, | 944 | Orientation o, |
945 | bool /* tickAbove */, | 945 | bool /* tickAbove */, |
946 | bool /* tickBelow */ | 946 | bool /* tickBelow */ |
947 | ) | 947 | ) |
948 | { | 948 | { |
949 | p->save(); | 949 | p->save(); |
950 | 950 | ||
951 | p->fillRect(x + 1, y + 1, w - 2, h - 2, g.background()); | 951 | p->fillRect(x + 1, y + 1, w - 2, h - 2, g.background()); |
952 | p->setPen(g.dark()); | 952 | p->setPen(g.dark()); |
953 | p->setBrush(g.light()); | 953 | p->setBrush(g.light()); |
954 | 954 | ||
955 | int sl = sliderLength(); | 955 | int sl = sliderLength(); |
956 | 956 | ||
957 | if( o == Qt::Horizontal ) | 957 | if( o == Qt::Horizontal ) |
958 | p->drawEllipse(x, y + h / 2 - sl / 2, sl, sl); | 958 | p->drawEllipse(x, y + h / 2 - sl / 2, sl, sl); |
959 | else | 959 | else |
960 | if( o == Qt::Vertical ) | 960 | if( o == Qt::Vertical ) |
961 | p->drawEllipse(x + w / 2 - sl / 2, y, sl, sl); | 961 | p->drawEllipse(x + w / 2 - sl / 2, y, sl, sl); |
962 | 962 | ||
963 | p->restore(); | 963 | p->restore(); |
964 | } | 964 | } |
965 | 965 | ||
966 | void | 966 | void |
967 | WebStyle::drawPopupMenuItem | 967 | WebStyle::drawPopupMenuItem |
968 | ( | 968 | ( |
969 | QPainter * p, | 969 | QPainter * p, |
970 | bool checkable, | 970 | bool checkable, |
971 | int maxpmw, | 971 | int maxpmw, |
972 | int tab, | 972 | int tab, |
973 | QMenuItem * mi, | 973 | QMenuItem * mi, |
974 | const QPalette & pal, | 974 | const QPalette & pal, |
975 | bool act, | 975 | bool act, |
976 | bool enabled, | 976 | bool enabled, |
977 | int x, | 977 | int x, |
978 | int y, | 978 | int y, |
979 | int w, | 979 | int w, |
980 | int h | 980 | int h |