summaryrefslogtreecommitdiff
path: root/library/qpestyle.cpp
authorchicken <chicken>2004-03-01 18:10:37 (UTC)
committer chicken <chicken>2004-03-01 18:10:37 (UTC)
commit7fd20d139e2d9bc37ce22bbdb07f4ebc54903f91 (patch) (unidiff)
tree15ef5e3d00c5476ea98ca36ba6c8392eb02e53c8 /library/qpestyle.cpp
parent5b4e342004537f84fa53911a46cd00d810378da7 (diff)
downloadopie-7fd20d139e2d9bc37ce22bbdb07f4ebc54903f91.zip
opie-7fd20d139e2d9bc37ce22bbdb07f4ebc54903f91.tar.gz
opie-7fd20d139e2d9bc37ce22bbdb07f4ebc54903f91.tar.bz2
fix includes
Diffstat (limited to 'library/qpestyle.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/qpestyle.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/library/qpestyle.cpp b/library/qpestyle.cpp
index 665910c..b61ada4 100644
--- a/library/qpestyle.cpp
+++ b/library/qpestyle.cpp
@@ -1,793 +1,790 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#include "qpestyle.h" 21#include "qpestyle.h"
22#include <qpe/qpeapplication.h>
23#include <qpushbutton.h>
24 22
25#include <qpainter.h>
26 23
27#define QCOORDARRLEN(x) sizeof(x)/(sizeof(QCOORD)*2) 24#define QCOORDARRLEN(x) sizeof(x)/(sizeof(QCOORD)*2)
28 25
29#if QT_VERSION >= 300 26#if QT_VERSION >= 300
30 27
31#include <qdrawutil.h> 28#include <qdrawutil.h>
32#include <qcombobox.h> 29#include <qcombobox.h>
33#include <qtabbar.h> 30#include <qtabbar.h>
34 31
35QPEStyle::QPEStyle() 32QPEStyle::QPEStyle()
36{ 33{
37} 34}
38 35
39QPEStyle::~QPEStyle() 36QPEStyle::~QPEStyle()
40{ 37{
41} 38}
42 39
43void QPEStyle::drawPrimitive( PrimitiveElement pe, QPainter *p, const QRect &r, 40void QPEStyle::drawPrimitive( PrimitiveElement pe, QPainter *p, const QRect &r,
44 const QColorGroup &cg, SFlags flags, const QStyleOption &data) const 41 const QColorGroup &cg, SFlags flags, const QStyleOption &data) const
45{ 42{
46 switch ( pe ) { 43 switch ( pe ) {
47 case PE_ButtonTool: 44 case PE_ButtonTool:
48 { 45 {
49 QColorGroup mycg = cg; 46 QColorGroup mycg = cg;
50 if ( flags & Style_On ) { 47 if ( flags & Style_On ) {
51 QBrush fill( cg.mid(), Dense4Pattern ); 48 QBrush fill( cg.mid(), Dense4Pattern );
52 mycg.setBrush( QColorGroup::Button, fill ); 49 mycg.setBrush( QColorGroup::Button, fill );
53 } 50 }
54 drawPrimitive( PE_ButtonBevel, p, r, mycg, flags, data ); 51 drawPrimitive( PE_ButtonBevel, p, r, mycg, flags, data );
55 break; 52 break;
56 } 53 }
57 case PE_ButtonCommand: 54 case PE_ButtonCommand:
58 case PE_ButtonDefault: 55 case PE_ButtonDefault:
59 case PE_ButtonBevel: 56 case PE_ButtonBevel:
60 case PE_HeaderSection: 57 case PE_HeaderSection:
61 { 58 {
62 QPen oldPen = p->pen(); 59 QPen oldPen = p->pen();
63 p->fillRect( r.x()+1, r.y()+1, r.width()-2, r.height()-2, cg.brush(QColorGroup::Button) ); 60 p->fillRect( r.x()+1, r.y()+1, r.width()-2, r.height()-2, cg.brush(QColorGroup::Button) );
64 61
65 int x2 = r.right(); 62 int x2 = r.right();
66 int y2 = r.bottom(); 63 int y2 = r.bottom();
67 64
68 if ( flags & (Style_Sunken | Style_Down | Style_On) ) 65 if ( flags & (Style_Sunken | Style_Down | Style_On) )
69 p->setPen( cg.dark() ); 66 p->setPen( cg.dark() );
70 else 67 else
71 p->setPen( cg.light() ); 68 p->setPen( cg.light() );
72 p->drawLine( r.x(), r.y()+1, r.x(), y2-1 ); 69 p->drawLine( r.x(), r.y()+1, r.x(), y2-1 );
73 p->drawLine( r.x()+1, r.y(), x2-1, r.y() ); 70 p->drawLine( r.x()+1, r.y(), x2-1, r.y() );
74 71
75 if ( flags & (Style_Sunken | Style_Down | Style_On) ) 72 if ( flags & (Style_Sunken | Style_Down | Style_On) )
76 p->setPen( cg.light() ); 73 p->setPen( cg.light() );
77 else 74 else
78 p->setPen( cg.dark() ); 75 p->setPen( cg.dark() );
79 p->drawLine( x2, r.y()+1, x2, y2-1 ); 76 p->drawLine( x2, r.y()+1, x2, y2-1 );
80 p->drawLine( r.x()+1, y2, x2-1, y2 ); 77 p->drawLine( r.x()+1, y2, x2-1, y2 );
81 p->setPen( oldPen ); 78 p->setPen( oldPen );
82 break; 79 break;
83 } 80 }
84 case PE_FocusRect: 81 case PE_FocusRect:
85 break; 82 break;
86 case PE_Indicator: 83 case PE_Indicator:
87 { 84 {
88 QColorGroup mycg( cg ); 85 QColorGroup mycg( cg );
89 QBrush fill; 86 QBrush fill;
90 if ( flags & Style_Down ) 87 if ( flags & Style_Down )
91 fill = cg.brush( QColorGroup::Button ); 88 fill = cg.brush( QColorGroup::Button );
92 else 89 else
93 fill = cg.brush( (flags&Style_Enabled) ? QColorGroup::Base : QColorGroup::Background ); 90 fill = cg.brush( (flags&Style_Enabled) ? QColorGroup::Base : QColorGroup::Background );
94 mycg.setBrush( QColorGroup::Button, fill ); 91 mycg.setBrush( QColorGroup::Button, fill );
95 if ( flags&Style_Enabled ) 92 if ( flags&Style_Enabled )
96 flags |= Style_Sunken; 93 flags |= Style_Sunken;
97 drawPrimitive( PE_ButtonBevel, p, r, mycg, flags ); 94 drawPrimitive( PE_ButtonBevel, p, r, mycg, flags );
98 if ( flags & Style_On ) { 95 if ( flags & Style_On ) {
99 QPointArray a( 7*2 ); 96 QPointArray a( 7*2 );
100 int i, xx, yy; 97 int i, xx, yy;
101 xx = r.x()+3; 98 xx = r.x()+3;
102 yy = r.y()+5; 99 yy = r.y()+5;
103 for ( i=0; i<3; i++ ) { 100 for ( i=0; i<3; i++ ) {
104 a.setPoint( 2*i, xx, yy ); 101 a.setPoint( 2*i, xx, yy );
105 a.setPoint( 2*i+1, xx, yy+2 ); 102 a.setPoint( 2*i+1, xx, yy+2 );
106 xx++; yy++; 103 xx++; yy++;
107 } 104 }
108 yy -= 2; 105 yy -= 2;
109 for ( i=3; i<7; i++ ) { 106 for ( i=3; i<7; i++ ) {
110 a.setPoint( 2*i, xx, yy ); 107 a.setPoint( 2*i, xx, yy );
111 a.setPoint( 2*i+1, xx, yy+2 ); 108 a.setPoint( 2*i+1, xx, yy+2 );
112 xx++; yy--; 109 xx++; yy--;
113 } 110 }
114 if ( flags & Style_NoChange ) { 111 if ( flags & Style_NoChange ) {
115 p->setPen( mycg.dark() ); 112 p->setPen( mycg.dark() );
116 } else { 113 } else {
117 p->setPen( mycg.text() ); 114 p->setPen( mycg.text() );
118 } 115 }
119 p->drawLineSegments( a ); 116 p->drawLineSegments( a );
120 } 117 }
121 break; 118 break;
122 } 119 }
123 case PE_ExclusiveIndicator: 120 case PE_ExclusiveIndicator:
124 { 121 {
125 static const QCOORD pts1[] = { // dark lines 122 static const QCOORD pts1[] = { // dark lines
126 1,9, 1,8, 0,7, 0,4, 1,3, 1,2, 2,1, 3,1, 4,0, 7,0, 8,1, 9,1 }; 123 1,9, 1,8, 0,7, 0,4, 1,3, 1,2, 2,1, 3,1, 4,0, 7,0, 8,1, 9,1 };
127 static const QCOORD pts4[] = { // white lines 124 static const QCOORD pts4[] = { // white lines
128 2,10, 3,10, 4,11, 7,11, 8,10, 9,10, 10,9, 10,8, 11,7, 125 2,10, 3,10, 4,11, 7,11, 8,10, 9,10, 10,9, 10,8, 11,7,
129 11,4, 10,3, 10,2 }; 126 11,4, 10,3, 10,2 };
130 static const QCOORD pts5[] = { // inner fill 127 static const QCOORD pts5[] = { // inner fill
131 4,2, 7,2, 9,4, 9,7, 7,9, 4,9, 2,7, 2,4 }; 128 4,2, 7,2, 9,4, 9,7, 7,9, 4,9, 2,7, 2,4 };
132 129
133 int x, y, w, h; 130 int x, y, w, h;
134 r.rect( &x, &y, &w, &h ); 131 r.rect( &x, &y, &w, &h );
135 p->eraseRect( x, y, w, h ); 132 p->eraseRect( x, y, w, h );
136 QPointArray a( QCOORDARRLEN(pts1), pts1 ); 133 QPointArray a( QCOORDARRLEN(pts1), pts1 );
137 a.translate( x, y ); 134 a.translate( x, y );
138 p->setPen( cg.dark() ); 135 p->setPen( cg.dark() );
139 p->drawPolyline( a ); 136 p->drawPolyline( a );
140 a.setPoints( QCOORDARRLEN(pts4), pts4 ); 137 a.setPoints( QCOORDARRLEN(pts4), pts4 );
141 a.translate( x, y ); 138 a.translate( x, y );
142 p->setPen( cg.light() ); 139 p->setPen( cg.light() );
143 p->drawPolyline( a ); 140 p->drawPolyline( a );
144 a.setPoints( QCOORDARRLEN(pts5), pts5 ); 141 a.setPoints( QCOORDARRLEN(pts5), pts5 );
145 a.translate( x, y ); 142 a.translate( x, y );
146 QColor fillColor = ( flags&Style_Down || !(flags&Style_Enabled) ) ? cg.button() : cg.base(); 143 QColor fillColor = ( flags&Style_Down || !(flags&Style_Enabled) ) ? cg.button() : cg.base();
147 p->setPen( fillColor ); 144 p->setPen( fillColor );
148 p->setBrush( fillColor ) ; 145 p->setBrush( fillColor ) ;
149 p->drawPolygon( a ); 146 p->drawPolygon( a );
150 if ( flags&Style_On ) { 147 if ( flags&Style_On ) {
151 p->setPen( NoPen ); 148 p->setPen( NoPen );
152 p->setBrush( cg.text() ); 149 p->setBrush( cg.text() );
153 p->drawRect( x+5, y+4, 2, 4 ); 150 p->drawRect( x+5, y+4, 2, 4 );
154 p->drawRect( x+4, y+5, 4, 2 ); 151 p->drawRect( x+4, y+5, 4, 2 );
155 } 152 }
156 break; 153 break;
157 } 154 }
158 default: 155 default:
159 QWindowsStyle::drawPrimitive( pe, p, r, cg, flags, data ); 156 QWindowsStyle::drawPrimitive( pe, p, r, cg, flags, data );
160 break; 157 break;
161 } 158 }
162} 159}
163 160
164void QPEStyle::drawControl( ControlElement ce, QPainter *p, 161void QPEStyle::drawControl( ControlElement ce, QPainter *p,
165 const QWidget *widget, const QRect &r, 162 const QWidget *widget, const QRect &r,
166 const QColorGroup &cg, SFlags how, const QStyleOption &data) const 163 const QColorGroup &cg, SFlags how, const QStyleOption &data) const
167{ 164{
168 switch ( ce ) { 165 switch ( ce ) {
169 case CE_PushButton: 166 case CE_PushButton:
170 { 167 {
171 const QPushButton *btn = (QPushButton*)widget; 168 const QPushButton *btn = (QPushButton*)widget;
172 SFlags flags; 169 SFlags flags;
173 flags = Style_Default; 170 flags = Style_Default;
174 if ( btn->isDown() ) 171 if ( btn->isDown() )
175 flags |= Style_Down; 172 flags |= Style_Down;
176 if ( btn->isOn() ) 173 if ( btn->isOn() )
177 flags |= Style_On; 174 flags |= Style_On;
178 if ( btn->isEnabled() ) 175 if ( btn->isEnabled() )
179 flags |= Style_Enabled; 176 flags |= Style_Enabled;
180 if ( btn->isDefault() ) 177 if ( btn->isDefault() )
181 flags |= Style_Default; 178 flags |= Style_Default;
182 if (! btn->isFlat() && !(flags & Style_Down)) 179 if (! btn->isFlat() && !(flags & Style_Down))
183 flags |= Style_Raised; 180 flags |= Style_Raised;
184 p->setPen( cg.foreground() ); 181 p->setPen( cg.foreground() );
185 p->setBrush( QBrush(cg.button(), NoBrush) ); 182 p->setBrush( QBrush(cg.button(), NoBrush) );
186 QColorGroup mycg( cg ); 183 QColorGroup mycg( cg );
187 if ( flags & Style_On ) { 184 if ( flags & Style_On ) {
188 QBrush fill = QBrush( cg.mid(), Dense4Pattern ); 185 QBrush fill = QBrush( cg.mid(), Dense4Pattern );
189 mycg.setBrush( QColorGroup::Button, fill ); 186 mycg.setBrush( QColorGroup::Button, fill );
190 } 187 }
191 drawPrimitive( PE_ButtonBevel, p, r, mycg, flags, data ); 188 drawPrimitive( PE_ButtonBevel, p, r, mycg, flags, data );
192 break; 189 break;
193 } 190 }
194 case CE_TabBarTab: 191 case CE_TabBarTab:
195 { 192 {
196 if ( !widget || !widget->parentWidget() ) 193 if ( !widget || !widget->parentWidget() )
197 break; 194 break;
198 195
199 const QTabBar *tb = (const QTabBar *) widget; 196 const QTabBar *tb = (const QTabBar *) widget;
200 bool selected = how & Style_Selected; 197 bool selected = how & Style_Selected;
201 198
202 QRect r2(r); 199 QRect r2(r);
203 if ( tb->shape() == QTabBar::RoundedAbove ) { 200 if ( tb->shape() == QTabBar::RoundedAbove ) {
204 p->setPen( cg.light() ); 201 p->setPen( cg.light() );
205 p->drawLine( r2.left(), r2.bottom(), r2.right(), r2.bottom() ); 202 p->drawLine( r2.left(), r2.bottom(), r2.right(), r2.bottom() );
206 if ( r2.left() == 0 ) 203 if ( r2.left() == 0 )
207 p->drawPoint( tb->rect().bottomLeft() ); 204 p->drawPoint( tb->rect().bottomLeft() );
208 else { 205 else {
209 p->setPen( cg.light() ); 206 p->setPen( cg.light() );
210 p->drawLine( r2.left(), r2.bottom(), r2.right(), r2.bottom() ); 207 p->drawLine( r2.left(), r2.bottom(), r2.right(), r2.bottom() );
211 } 208 }
212 209
213 if ( selected ) { 210 if ( selected ) {
214 p->setPen( cg.background() ); 211 p->setPen( cg.background() );
215 p->drawLine( r2.left()+2, r2.top()+1, r2.right()-2, r2.top()+1 ); 212 p->drawLine( r2.left()+2, r2.top()+1, r2.right()-2, r2.top()+1 );
216 p->fillRect( QRect( r2.left()+1, r2.top()+2, r2.width()-2, r2.height()-2), 213 p->fillRect( QRect( r2.left()+1, r2.top()+2, r2.width()-2, r2.height()-2),
217 cg.brush( QColorGroup::Background )); 214 cg.brush( QColorGroup::Background ));
218 } else { 215 } else {
219 r2.setRect( r2.left() + 2, r2.top() + 2, 216 r2.setRect( r2.left() + 2, r2.top() + 2,
220 r2.width() - 4, r2.height() - 2 ); 217 r2.width() - 4, r2.height() - 2 );
221 p->setPen( cg.button() ); 218 p->setPen( cg.button() );
222 p->drawLine( r2.left()+2, r2.top()+1, r2.right()-2, r2.top()+1 ); 219 p->drawLine( r2.left()+2, r2.top()+1, r2.right()-2, r2.top()+1 );
223 p->fillRect( QRect( r2.left()+1, r2.top()+2, r2.width()-2, r2.height()-3), 220 p->fillRect( QRect( r2.left()+1, r2.top()+2, r2.width()-2, r2.height()-3),
224 cg.brush( QColorGroup::Button )); 221 cg.brush( QColorGroup::Button ));
225 222
226 //do shading; will not work for pixmap brushes 223 //do shading; will not work for pixmap brushes
227 QColor bg = cg.button(); 224 QColor bg = cg.button();
228 // int h,s,v; 225 // int h,s,v;
229 // bg.hsv( &h, &s, &v ); 226 // bg.hsv( &h, &s, &v );
230 int n = r2.height()/2; 227 int n = r2.height()/2;
231 int dark = 100; 228 int dark = 100;
232 for ( int i = 1; i < n; i++ ) { 229 for ( int i = 1; i < n; i++ ) {
233 dark = (dark * (100+(i*15)/n) )/100; 230 dark = (dark * (100+(i*15)/n) )/100;
234 p->setPen( bg.dark( dark ) ); 231 p->setPen( bg.dark( dark ) );
235 int y = r2.bottom()-n+i; 232 int y = r2.bottom()-n+i;
236 int x1 = r2.left()+1; 233 int x1 = r2.left()+1;
237 int x2 = r2.right()-1; 234 int x2 = r2.right()-1;
238 p->drawLine( x1, y, x2, y ); 235 p->drawLine( x1, y, x2, y );
239 } 236 }
240 } 237 }
241 238
242 p->setPen( cg.light() ); 239 p->setPen( cg.light() );
243 p->drawLine( r2.left(), r2.bottom()-1, r2.left(), r2.top() + 2 ); 240 p->drawLine( r2.left(), r2.bottom()-1, r2.left(), r2.top() + 2 );
244 p->drawPoint( r2.left()+1, r2.top() + 1 ); 241 p->drawPoint( r2.left()+1, r2.top() + 1 );
245 p->drawLine( r2.left()+2, r2.top(), 242 p->drawLine( r2.left()+2, r2.top(),
246 r2.right() - 2, r2.top() ); 243 r2.right() - 2, r2.top() );
247 244
248 p->setPen( cg.dark() ); 245 p->setPen( cg.dark() );
249 p->drawPoint( r2.right() - 1, r2.top() + 1 ); 246 p->drawPoint( r2.right() - 1, r2.top() + 1 );
250 p->drawLine( r2.right(), r2.top() + 2, r2.right(), r2.bottom() - 1); 247 p->drawLine( r2.right(), r2.top() + 2, r2.right(), r2.bottom() - 1);
251 } else if ( tb->shape() == QTabBar::RoundedBelow ) { 248 } else if ( tb->shape() == QTabBar::RoundedBelow ) {
252 if ( selected ) { 249 if ( selected ) {
253 p->setPen( cg.background() ); 250 p->setPen( cg.background() );
254 p->drawLine( r2.left()+2, r2.bottom()-1, r2.right()-2, r2.bottom()-1 ); 251 p->drawLine( r2.left()+2, r2.bottom()-1, r2.right()-2, r2.bottom()-1 );
255 p->fillRect( QRect( r2.left()+1, r2.top(), r2.width()-2, r2.height()-2), 252 p->fillRect( QRect( r2.left()+1, r2.top(), r2.width()-2, r2.height()-2),
256 tb->palette().normal().brush( QColorGroup::Background )); 253 tb->palette().normal().brush( QColorGroup::Background ));
257 } else { 254 } else {
258 p->setPen( cg.dark() ); 255 p->setPen( cg.dark() );
259 p->drawLine( r2.left(), r2.top(), 256 p->drawLine( r2.left(), r2.top(),
260 r2.right(), r2.top() ); 257 r2.right(), r2.top() );
261 r2.setRect( r2.left() + 2, r2.top(), 258 r2.setRect( r2.left() + 2, r2.top(),
262 r2.width() - 4, r2.height() - 2 ); 259 r2.width() - 4, r2.height() - 2 );
263 p->setPen( cg.button() ); 260 p->setPen( cg.button() );
264 p->drawLine( r2.left()+2, r2.bottom()-1, r2.right()-2, r2.bottom()-1 ); 261 p->drawLine( r2.left()+2, r2.bottom()-1, r2.right()-2, r2.bottom()-1 );
265 p->fillRect( QRect( r2.left()+1, r2.top()+1, r2.width()-2, r2.height()-3), 262 p->fillRect( QRect( r2.left()+1, r2.top()+1, r2.width()-2, r2.height()-3),
266 tb->palette().normal().brush( QColorGroup::Button )); 263 tb->palette().normal().brush( QColorGroup::Button ));
267 } 264 }
268 265
269 p->setPen( cg.dark() ); 266 p->setPen( cg.dark() );
270 p->drawLine( r2.right(), r2.top(), 267 p->drawLine( r2.right(), r2.top(),
271 r2.right(), r2.bottom() - 2 ); 268 r2.right(), r2.bottom() - 2 );
272 p->drawPoint( r2.right() - 1, r2.bottom() - 1 ); 269 p->drawPoint( r2.right() - 1, r2.bottom() - 1 );
273 p->drawLine( r2.right() - 2, r2.bottom(), 270 p->drawLine( r2.right() - 2, r2.bottom(),
274 r2.left() + 2, r2.bottom() ); 271 r2.left() + 2, r2.bottom() );
275 272
276 p->setPen( cg.light() ); 273 p->setPen( cg.light() );
277 p->drawLine( r2.left(), r2.top()+1, 274 p->drawLine( r2.left(), r2.top()+1,
278 r2.left(), r2.bottom() - 2 ); 275 r2.left(), r2.bottom() - 2 );
279 p->drawPoint( r2.left() + 1, r2.bottom() - 1 ); 276 p->drawPoint( r2.left() + 1, r2.bottom() - 1 );
280 if ( r2.left() == 0 ) 277 if ( r2.left() == 0 )
281 p->drawPoint( tb->rect().topLeft() ); 278 p->drawPoint( tb->rect().topLeft() );
282 279
283 } else { 280 } else {
284 QCommonStyle::drawControl( ce, p, widget, r, cg, how, data ); 281 QCommonStyle::drawControl( ce, p, widget, r, cg, how, data );
285 } 282 }
286 break; 283 break;
287 } 284 }
288 default: 285 default:
289 QWindowsStyle::drawControl( ce, p, widget, r, cg, how, data ); 286 QWindowsStyle::drawControl( ce, p, widget, r, cg, how, data );
290 break; 287 break;
291 } 288 }
292} 289}
293 290
294void QPEStyle::drawComplexControl( ComplexControl control, QPainter *p, 291void QPEStyle::drawComplexControl( ComplexControl control, QPainter *p,
295 const QWidget *widget, const QRect &r, 292 const QWidget *widget, const QRect &r,
296 const QColorGroup &cg, SFlags how, 293 const QColorGroup &cg, SFlags how,
297 SCFlags sub, SCFlags subActive, const QStyleOption &data) const 294 SCFlags sub, SCFlags subActive, const QStyleOption &data) const
298{ 295{
299 switch ( control ) { 296 switch ( control ) {
300 case CC_ComboBox: 297 case CC_ComboBox:
301 if ( sub & SC_ComboBoxArrow ) { 298 if ( sub & SC_ComboBoxArrow ) {
302 SFlags flags = Style_Default; 299 SFlags flags = Style_Default;
303 300
304 drawPrimitive( PE_ButtonBevel, p, r, cg, flags, data ); 301 drawPrimitive( PE_ButtonBevel, p, r, cg, flags, data );
305 302
306 QRect ar = 303 QRect ar =
307 QStyle::visualRect( querySubControlMetrics( CC_ComboBox, widget, 304 QStyle::visualRect( querySubControlMetrics( CC_ComboBox, widget,
308 SC_ComboBoxArrow ), widget ); 305 SC_ComboBoxArrow ), widget );
309 306
310 if ( subActive == SC_ComboBoxArrow ) { 307 if ( subActive == SC_ComboBoxArrow ) {
311 p->setPen( cg.dark() ); 308 p->setPen( cg.dark() );
312 p->setBrush( cg.brush( QColorGroup::Button ) ); 309 p->setBrush( cg.brush( QColorGroup::Button ) );
313 p->drawRect( ar ); 310 p->drawRect( ar );
314 } 311 }
315 312
316 ar.addCoords( 2, 2, -2, -2 ); 313 ar.addCoords( 2, 2, -2, -2 );
317 if ( widget->isEnabled() ) 314 if ( widget->isEnabled() )
318 flags |= Style_Enabled; 315 flags |= Style_Enabled;
319 316
320 if ( subActive & Style_Sunken ) { 317 if ( subActive & Style_Sunken ) {
321 flags |= Style_Sunken; 318 flags |= Style_Sunken;
322 } 319 }
323 drawPrimitive( PE_ArrowDown, p, ar, cg, flags ); 320 drawPrimitive( PE_ArrowDown, p, ar, cg, flags );
324 } 321 }
325 322
326 if ( sub & SC_ComboBoxEditField ) { 323 if ( sub & SC_ComboBoxEditField ) {
327 const QComboBox * cb = (const QComboBox *) widget; 324 const QComboBox * cb = (const QComboBox *) widget;
328 QRect re = 325 QRect re =
329 QStyle::visualRect( querySubControlMetrics( CC_ComboBox, widget, 326 QStyle::visualRect( querySubControlMetrics( CC_ComboBox, widget,
330 SC_ComboBoxEditField ), widget ); 327 SC_ComboBoxEditField ), widget );
331 if ( cb->hasFocus() && !cb->editable() ) 328 if ( cb->hasFocus() && !cb->editable() )
332 p->fillRect( re.x(), re.y(), re.width(), re.height(), 329 p->fillRect( re.x(), re.y(), re.width(), re.height(),
333 cg.brush( QColorGroup::Highlight ) ); 330 cg.brush( QColorGroup::Highlight ) );
334 331
335 if ( cb->hasFocus() ) { 332 if ( cb->hasFocus() ) {
336 p->setPen( cg.highlightedText() ); 333 p->setPen( cg.highlightedText() );
337 p->setBackgroundColor( cg.highlight() ); 334 p->setBackgroundColor( cg.highlight() );
338 335
339 } else { 336 } else {
340 p->setPen( cg.text() ); 337 p->setPen( cg.text() );
341 p->setBackgroundColor( cg.background() ); 338 p->setBackgroundColor( cg.background() );
342 } 339 }
343 340
344 if ( cb->hasFocus() && !cb->editable() ) { 341 if ( cb->hasFocus() && !cb->editable() ) {
345 QRect re = 342 QRect re =
346 QStyle::visualRect( subRect( SR_ComboBoxFocusRect, cb ), widget ); 343 QStyle::visualRect( subRect( SR_ComboBoxFocusRect, cb ), widget );
347 drawPrimitive( PE_FocusRect, p, re, cg, Style_FocusAtBorder, QStyleOption(cg.highlight())); 344 drawPrimitive( PE_FocusRect, p, re, cg, Style_FocusAtBorder, QStyleOption(cg.highlight()));
348 } 345 }
349 } 346 }
350 break; 347 break;
351 default: 348 default:
352 QWindowsStyle::drawComplexControl( control, p, widget, r, cg, how, 349 QWindowsStyle::drawComplexControl( control, p, widget, r, cg, how,
353 sub, subActive, data ); 350 sub, subActive, data );
354 break; 351 break;
355 } 352 }
356} 353}
357 354
358int QPEStyle::pixelMetric( PixelMetric metric, const QWidget *widget ) const 355int QPEStyle::pixelMetric( PixelMetric metric, const QWidget *widget ) const
359{ 356{
360 int ret; 357 int ret;
361 switch( metric ) { 358 switch( metric ) {
362 case PM_ButtonMargin: 359 case PM_ButtonMargin:
363 ret = 2; 360 ret = 2;
364 break; 361 break;
365 case PM_DefaultFrameWidth: 362 case PM_DefaultFrameWidth:
366 ret = 1; 363 ret = 1;
367 break; 364 break;
368 case PM_ButtonDefaultIndicator: 365 case PM_ButtonDefaultIndicator:
369 ret = 2; 366 ret = 2;
370 break; 367 break;
371 case PM_ButtonShiftHorizontal: 368 case PM_ButtonShiftHorizontal:
372 case PM_ButtonShiftVertical: 369 case PM_ButtonShiftVertical:
373 ret = -1; 370 ret = -1;
374 break; 371 break;
375 case PM_IndicatorWidth: 372 case PM_IndicatorWidth:
376 ret = 15; 373 ret = 15;
377 break; 374 break;
378 case PM_IndicatorHeight: 375 case PM_IndicatorHeight:
379 ret = 13; 376 ret = 13;
380 break; 377 break;
381 case PM_ExclusiveIndicatorHeight: 378 case PM_ExclusiveIndicatorHeight:
382 case PM_ExclusiveIndicatorWidth: 379 case PM_ExclusiveIndicatorWidth:
383 ret = 15; 380 ret = 15;
384 break; 381 break;
385 case PM_ScrollBarExtent: 382 case PM_ScrollBarExtent:
386 ret = 13; 383 ret = 13;
387 break; 384 break;
388 case PM_SliderLength: 385 case PM_SliderLength:
389 ret = 12; 386 ret = 12;
390 break; 387 break;
391 default: 388 default:
392 ret = QWindowsStyle::pixelMetric( metric, widget ); 389 ret = QWindowsStyle::pixelMetric( metric, widget );
393 break; 390 break;
394 } 391 }
395 return ret; 392 return ret;
396} 393}
397 394
398QSize QPEStyle::sizeFromContents( ContentsType contents, const QWidget *widget, 395QSize QPEStyle::sizeFromContents( ContentsType contents, const QWidget *widget,
399 const QSize &contentsSize, const QStyleOption &data) const 396 const QSize &contentsSize, const QStyleOption &data) const
400{ 397{
401 QSize sz(contentsSize); 398 QSize sz(contentsSize);
402 399
403 switch ( contents ) { 400 switch ( contents ) {
404 case CT_PopupMenuItem: 401 case CT_PopupMenuItem:
405 { 402 {
406 if ( !widget || data.isDefault() ) 403 if ( !widget || data.isDefault() )
407 break; 404 break;
408 sz = QWindowsStyle::sizeFromContents( contents, widget, contentsSize, data ); 405 sz = QWindowsStyle::sizeFromContents( contents, widget, contentsSize, data );
409 sz = QSize( sz.width(), sz.height()-2 ); 406 sz = QSize( sz.width(), sz.height()-2 );
410 break; 407 break;
411 } 408 }
412 default: 409 default:
413 sz = QWindowsStyle::sizeFromContents( contents, widget, contentsSize, data ); 410 sz = QWindowsStyle::sizeFromContents( contents, widget, contentsSize, data );
414 break; 411 break;
415 } 412 }
416 413
417 return sz; 414 return sz;
418} 415}
419 416
420#else 417#else
421 418
422#include <qfontmetrics.h> 419#include <qfontmetrics.h>
423#include <qpalette.h> 420#include <qpalette.h>
424#include <qdrawutil.h> 421#include <qdrawutil.h>
425#include <qscrollbar.h> 422#include <qscrollbar.h>
426#include <qbutton.h> 423#include <qbutton.h>
427#include <qframe.h> 424#include <qframe.h>
428#include <qtabbar.h> 425#include <qtabbar.h>
429 426
430#define INCLUDE_MENUITEM_DEF 427#define INCLUDE_MENUITEM_DEF
431#include <qmenudata.h> 428#include <qmenudata.h>
432 429
433QPEStyle::QPEStyle() 430QPEStyle::QPEStyle()
434{ 431{
435#if QT_VERSION < 300 432#if QT_VERSION < 300
436 setButtonMargin(buttonMargin()); 433 setButtonMargin(buttonMargin());
437 setScrollBarExtent(scrollBarExtent().width(),scrollBarExtent().height()); 434 setScrollBarExtent(scrollBarExtent().width(),scrollBarExtent().height());
438#endif 435#endif
439} 436}
440 437
441QPEStyle::~QPEStyle() 438QPEStyle::~QPEStyle()
442{ 439{
443} 440}
444 441
445int QPEStyle::buttonMargin() const 442int QPEStyle::buttonMargin() const
446{ 443{
447 return 2; 444 return 2;
448} 445}
449 446
450QSize QPEStyle::scrollBarExtent() const 447QSize QPEStyle::scrollBarExtent() const
451{ 448{
452 return QSize(13,13); 449 return QSize(13,13);
453} 450}
454 451
455void QPEStyle::polish ( QPalette & ) 452void QPEStyle::polish ( QPalette & )
456{ 453{
457} 454}
458 455
459void QPEStyle::polish( QWidget *w ) 456void QPEStyle::polish( QWidget *w )
460{ 457{
461 if ( w->inherits( "QListBox" ) || 458 if ( w->inherits( "QListBox" ) ||
462 w->inherits( "QListView" ) || 459 w->inherits( "QListView" ) ||
463 w->inherits( "QPopupMenu" ) || 460 w->inherits( "QPopupMenu" ) ||
464 w->inherits( "QSpinBox" ) ) { 461 w->inherits( "QSpinBox" ) ) {
465 QFrame *f = (QFrame *)w; 462 QFrame *f = (QFrame *)w;
466 f->setFrameShape( QFrame::StyledPanel ); 463 f->setFrameShape( QFrame::StyledPanel );
467 f->setLineWidth( 1 ); 464 f->setLineWidth( 1 );
468 } 465 }
469} 466}
470 467
471void QPEStyle::unPolish( QWidget *w ) 468void QPEStyle::unPolish( QWidget *w )
472{ 469{
473 if ( w->inherits( "QListBox" ) || 470 if ( w->inherits( "QListBox" ) ||
474 w->inherits( "QListView" ) || 471 w->inherits( "QListView" ) ||
475 w->inherits( "QPopupMenu" ) || 472 w->inherits( "QPopupMenu" ) ||
476 w->inherits( "QSpinBox" ) ) { 473 w->inherits( "QSpinBox" ) ) {
477 QFrame *f = (QFrame *)w; 474 QFrame *f = (QFrame *)w;
478 f->setFrameShape( QFrame::StyledPanel ); 475 f->setFrameShape( QFrame::StyledPanel );
479 f->setLineWidth( 2 ); 476 f->setLineWidth( 2 );
480 } 477 }
481} 478}
482 479
483int QPEStyle::defaultFrameWidth() const 480int QPEStyle::defaultFrameWidth() const
484{ 481{
485 return 1; 482 return 1;
486} 483}
487 484
488void QPEStyle::drawPanel ( QPainter * p, int x, int y, int w, int h, 485void QPEStyle::drawPanel ( QPainter * p, int x, int y, int w, int h,
489 const QColorGroup &g, bool sunken, int lineWidth, const QBrush * fill ) 486 const QColorGroup &g, bool sunken, int lineWidth, const QBrush * fill )
490{ 487{
491 qDrawShadePanel( p, QRect(x, y, w, h), g, sunken, lineWidth, fill ); 488 qDrawShadePanel( p, QRect(x, y, w, h), g, sunken, lineWidth, fill );
492} 489}
493 490
494void QPEStyle::drawButton( QPainter *p, int x, int y, int w, int h, 491void QPEStyle::drawButton( QPainter *p, int x, int y, int w, int h,
495 const QColorGroup &g, bool sunken, const QBrush* fill ) 492 const QColorGroup &g, bool sunken, const QBrush* fill )
496{ 493{
497 QPen oldPen = p->pen(); 494 QPen oldPen = p->pen();
498 if ( sunken ) 495 if ( sunken )
499 p->setPen( g.dark() ); 496 p->setPen( g.dark() );
500 else 497 else
501 p->setPen( g.light() ); 498 p->setPen( g.light() );
502 499
503 int x2 = x+w-1; 500 int x2 = x+w-1;
504 int y2 = y+h-1; 501 int y2 = y+h-1;
505 502
506 p->drawLine( x, y, x, y2 ); 503 p->drawLine( x, y, x, y2 );
507 p->drawLine( x, y, x2, y ); 504 p->drawLine( x, y, x2, y );
508 505
509 if ( sunken ) 506 if ( sunken )
510 p->setPen( g.light() ); 507 p->setPen( g.light() );
511 else 508 else
512 p->setPen( g.dark() ); 509 p->setPen( g.dark() );
513 510
514 p->drawLine( x2, y, x2, y2 ); 511 p->drawLine( x2, y, x2, y2 );
515 p->drawLine( x, y2, x2, y2 ); 512 p->drawLine( x, y2, x2, y2 );
516 p->setPen( oldPen ); 513 p->setPen( oldPen );
517 514
518 p->fillRect( x+1, y+1, w-2, h-2, fill?(*fill):g.brush(QColorGroup::Button) ); 515 p->fillRect( x+1, y+1, w-2, h-2, fill?(*fill):g.brush(QColorGroup::Button) );
519} 516}
520 517
521void QPEStyle::drawButtonMask ( QPainter * p, int x, int y, int w, int h ) 518void QPEStyle::drawButtonMask ( QPainter * p, int x, int y, int w, int h )
522{ 519{
523 p->fillRect( x, y, w, h, color1 ); 520 p->fillRect( x, y, w, h, color1 );
524} 521}
525 522
526void QPEStyle::drawBevelButton( QPainter *p, int x, int y, int w, int h, 523void QPEStyle::drawBevelButton( QPainter *p, int x, int y, int w, int h,
527 const QColorGroup &g, bool sunken, const QBrush* fill ) 524 const QColorGroup &g, bool sunken, const QBrush* fill )
528{ 525{
529 drawButton( p, x, y, w, h, g, sunken, fill ); 526 drawButton( p, x, y, w, h, g, sunken, fill );
530} 527}
531 528
532QRect QPEStyle::comboButtonRect( int x, int y, int w, int h) 529QRect QPEStyle::comboButtonRect( int x, int y, int w, int h)
533{ 530{
534 return QRect(x+1, y+1, w-2-14, h-2); 531 return QRect(x+1, y+1, w-2-14, h-2);
535} 532}
536 533
537 534
538QRect QPEStyle::comboButtonFocusRect( int x, int y, int w, int h) 535QRect QPEStyle::comboButtonFocusRect( int x, int y, int w, int h)
539{ 536{
540 return QRect(x+2, y+2, w-4-14, h-4); 537 return QRect(x+2, y+2, w-4-14, h-4);
541} 538}
542 539
543void QPEStyle::drawComboButton( QPainter *p, int x, int y, int w, int h, 540void QPEStyle::drawComboButton( QPainter *p, int x, int y, int w, int h,
544 const QColorGroup &g, bool sunken, 541 const QColorGroup &g, bool sunken,
545 bool /*editable*/, 542 bool /*editable*/,
546 bool enabled, 543 bool enabled,
547 const QBrush *fill ) 544 const QBrush *fill )
548{ 545{
549 drawBevelButton( p, x, y, w, h, g, FALSE, fill ); 546 drawBevelButton( p, x, y, w, h, g, FALSE, fill );
550 drawBevelButton( p, x+w-14, y, 14, h, g, sunken, fill ); 547 drawBevelButton( p, x+w-14, y, 14, h, g, sunken, fill );
551 drawArrow( p, QStyle::DownArrow, sunken, 548 drawArrow( p, QStyle::DownArrow, sunken,
552 x+w-14+ 2, y+ 2, 14- 4, h- 4, g, enabled, 549 x+w-14+ 2, y+ 2, 14- 4, h- 4, g, enabled,
553 &g.brush( QColorGroup::Button ) ); 550 &g.brush( QColorGroup::Button ) );
554 551
555} 552}
556 553
557 554
558void QPEStyle::drawExclusiveIndicator ( QPainter * p, int x, int y, int w, 555void QPEStyle::drawExclusiveIndicator ( QPainter * p, int x, int y, int w,
559 int h, const QColorGroup & g, bool on, bool down, bool enabled ) 556 int h, const QColorGroup & g, bool on, bool down, bool enabled )
560{ 557{
561 static const QCOORD pts1[] = { // dark lines 558 static const QCOORD pts1[] = { // dark lines
562 1,9, 1,8, 0,7, 0,4, 1,3, 1,2, 2,1, 3,1, 4,0, 7,0, 8,1, 9,1 }; 559 1,9, 1,8, 0,7, 0,4, 1,3, 1,2, 2,1, 3,1, 4,0, 7,0, 8,1, 9,1 };
563 static const QCOORD pts4[] = { // white lines 560 static const QCOORD pts4[] = { // white lines
564 2,10, 3,10, 4,11, 7,11, 8,10, 9,10, 10,9, 10,8, 11,7, 561 2,10, 3,10, 4,11, 7,11, 8,10, 9,10, 10,9, 10,8, 11,7,
565 11,4, 10,3, 10,2 }; 562 11,4, 10,3, 10,2 };
566 static const QCOORD pts5[] = { // inner fill 563 static const QCOORD pts5[] = { // inner fill
567 4,2, 7,2, 9,4, 9,7, 7,9, 4,9, 2,7, 2,4 }; 564 4,2, 7,2, 9,4, 9,7, 7,9, 4,9, 2,7, 2,4 };
568 565
569 p->eraseRect( x, y, w, h ); 566 p->eraseRect( x, y, w, h );
570 QPointArray a( QCOORDARRLEN(pts1), pts1 ); 567 QPointArray a( QCOORDARRLEN(pts1), pts1 );
571 a.translate( x, y ); 568 a.translate( x, y );
572 p->setPen( g.dark() ); 569 p->setPen( g.dark() );
573 p->drawPolyline( a ); 570 p->drawPolyline( a );
574 a.setPoints( QCOORDARRLEN(pts4), pts4 ); 571 a.setPoints( QCOORDARRLEN(pts4), pts4 );
575 a.translate( x, y ); 572 a.translate( x, y );
576 p->setPen( g.light() ); 573 p->setPen( g.light() );
577 p->drawPolyline( a ); 574 p->drawPolyline( a );
578 a.setPoints( QCOORDARRLEN(pts5), pts5 ); 575 a.setPoints( QCOORDARRLEN(pts5), pts5 );
579 a.translate( x, y ); 576 a.translate( x, y );
580 QColor fillColor = ( down || !enabled ) ? g.button() : g.base(); 577 QColor fillColor = ( down || !enabled ) ? g.button() : g.base();
581 p->setPen( fillColor ); 578 p->setPen( fillColor );
582 p->setBrush( fillColor ) ; 579 p->setBrush( fillColor ) ;
583 p->drawPolygon( a ); 580 p->drawPolygon( a );
584 if ( on ) { 581 if ( on ) {
585 p->setPen( NoPen ); 582 p->setPen( NoPen );
586 p->setBrush( g.text() ); 583 p->setBrush( g.text() );
587 p->drawRect( x+5, y+4, 2, 4 ); 584 p->drawRect( x+5, y+4, 2, 4 );
588 p->drawRect( x+4, y+5, 4, 2 ); 585 p->drawRect( x+4, y+5, 4, 2 );
589 } 586 }
590} 587}
591 588
592void QPEStyle::drawIndicator ( QPainter * p, int x, int y, int w, int h, 589void QPEStyle::drawIndicator ( QPainter * p, int x, int y, int w, int h,
593 const QColorGroup & g, int state, bool down, bool enabled ) 590 const QColorGroup & g, int state, bool down, bool enabled )
594{ 591{
595 592
596 QBrush fill; 593 QBrush fill;
597 if ( state == QButton::NoChange ) { 594 if ( state == QButton::NoChange ) {
598 QBrush b = p->brush(); 595 QBrush b = p->brush();
599 QColor c = p->backgroundColor(); 596 QColor c = p->backgroundColor();
600 p->setBackgroundMode( TransparentMode ); 597 p->setBackgroundMode( TransparentMode );
601 p->setBackgroundColor( green ); 598 p->setBackgroundColor( green );
602 fill = QBrush(g.base(), Dense4Pattern); 599 fill = QBrush(g.base(), Dense4Pattern);
603 p->setBackgroundColor( c ); 600 p->setBackgroundColor( c );
604 p->setBrush( b ); 601 p->setBrush( b );
605 } else if ( down ) 602 } else if ( down )
606 fill = g.brush( QColorGroup::Button ); 603 fill = g.brush( QColorGroup::Button );
607 else 604 else
608 fill = g.brush( enabled ? QColorGroup::Base : QColorGroup::Background ); 605 fill = g.brush( enabled ? QColorGroup::Base : QColorGroup::Background );
609 drawPanel( p, x, y, w, h, g, TRUE, 1, &fill ); 606 drawPanel( p, x, y, w, h, g, TRUE, 1, &fill );
610 if ( state != QButton::Off ) { 607 if ( state != QButton::Off ) {
611 QPointArray a( 7*2 ); 608 QPointArray a( 7*2 );
612 int i, xx, yy; 609 int i, xx, yy;
613 xx = x+3; 610 xx = x+3;
614 yy = y+5; 611 yy = y+5;
615 for ( i=0; i<3; i++ ) { 612 for ( i=0; i<3; i++ ) {
616 a.setPoint( 2*i, xx, yy ); 613 a.setPoint( 2*i, xx, yy );
617 a.setPoint( 2*i+1, xx, yy+2 ); 614 a.setPoint( 2*i+1, xx, yy+2 );
618 xx++; yy++; 615 xx++; yy++;
619 } 616 }
620 yy -= 2; 617 yy -= 2;
621 for ( i=3; i<7; i++ ) { 618 for ( i=3; i<7; i++ ) {
622 a.setPoint( 2*i, xx, yy ); 619 a.setPoint( 2*i, xx, yy );
623 a.setPoint( 2*i+1, xx, yy+2 ); 620 a.setPoint( 2*i+1, xx, yy+2 );
624 xx++; yy--; 621 xx++; yy--;
625 } 622 }
626 if ( state == QButton::NoChange ) { 623 if ( state == QButton::NoChange ) {
627 p->setPen( g.dark() ); 624 p->setPen( g.dark() );
628 } else { 625 } else {
629 p->setPen( g.text() ); 626 p->setPen( g.text() );
630 } 627 }
631 p->drawLineSegments( a ); 628 p->drawLineSegments( a );
632 } 629 }
633} 630}
634 631
635 #define HORIZONTAL(sb->orientation() == QScrollBar::Horizontal) 632 #define HORIZONTAL(sb->orientation() == QScrollBar::Horizontal)
636 #define VERTICAL!HORIZONTAL 633 #define VERTICAL!HORIZONTAL
637 #define MOTIF_BORDER2 634 #define MOTIF_BORDER2
638 #define SLIDER_MIN9 // ### motif says 6 but that's too small 635 #define SLIDER_MIN9 // ### motif says 6 but that's too small
639 636
640/*! \reimp */ 637/*! \reimp */
641 638
642void QPEStyle::scrollBarMetrics( const QScrollBar* sb, int &sliderMin, int &sliderMax, int &sliderLength, int& buttonDim ) 639void QPEStyle::scrollBarMetrics( const QScrollBar* sb, int &sliderMin, int &sliderMax, int &sliderLength, int& buttonDim )
643{ 640{
644 int maxLength; 641 int maxLength;
645 int length = HORIZONTAL ? sb->width() : sb->height(); 642 int length = HORIZONTAL ? sb->width() : sb->height();
646 int extent = HORIZONTAL ? sb->height() : sb->width(); 643 int extent = HORIZONTAL ? sb->height() : sb->width();
647 644
648 if ( length > (extent - 1)*2 ) 645 if ( length > (extent - 1)*2 )
649 buttonDim = extent; 646 buttonDim = extent;
650 else 647 else
651 buttonDim = length/2 - 1; 648 buttonDim = length/2 - 1;
652 649
653 sliderMin = 0; 650 sliderMin = 0;
654 maxLength = length - buttonDim*2; 651 maxLength = length - buttonDim*2;
655 652
656 if ( sb->maxValue() == sb->minValue() ) { 653 if ( sb->maxValue() == sb->minValue() ) {
657 sliderLength = maxLength; 654 sliderLength = maxLength;
658 } else { 655 } else {
659 sliderLength = (sb->pageStep()*maxLength)/ 656 sliderLength = (sb->pageStep()*maxLength)/
660 (sb->maxValue()-sb->minValue()+sb->pageStep()); 657 (sb->maxValue()-sb->minValue()+sb->pageStep());
661 uint range = sb->maxValue()-sb->minValue(); 658 uint range = sb->maxValue()-sb->minValue();
662 if ( sliderLength < SLIDER_MIN || range > INT_MAX/2 ) 659 if ( sliderLength < SLIDER_MIN || range > INT_MAX/2 )
663 sliderLength = SLIDER_MIN; 660 sliderLength = SLIDER_MIN;
664 if ( sliderLength > maxLength ) 661 if ( sliderLength > maxLength )
665 sliderLength = maxLength; 662 sliderLength = maxLength;
666 } 663 }
667 664
668 sliderMax = sliderMin + maxLength - sliderLength; 665 sliderMax = sliderMin + maxLength - sliderLength;
669} 666}
670 667
671/*!\reimp 668/*!\reimp
672 */ 669 */
673QStyle::ScrollControl QPEStyle::scrollBarPointOver( const QScrollBar* sb, int sliderStart, const QPoint& p ) 670QStyle::ScrollControl QPEStyle::scrollBarPointOver( const QScrollBar* sb, int sliderStart, const QPoint& p )
674{ 671{
675 if ( !sb->rect().contains( p ) ) 672 if ( !sb->rect().contains( p ) )
676 return NoScroll; 673 return NoScroll;
677 int sliderMin, sliderMax, sliderLength, buttonDim, pos; 674 int sliderMin, sliderMax, sliderLength, buttonDim, pos;
678 scrollBarMetrics( sb, sliderMin, sliderMax, sliderLength, buttonDim ); 675 scrollBarMetrics( sb, sliderMin, sliderMax, sliderLength, buttonDim );
679 676
680 if (sb->orientation() == QScrollBar::Horizontal) 677 if (sb->orientation() == QScrollBar::Horizontal)
681 pos = p.x(); 678 pos = p.x();
682 else 679 else
683 pos = p.y(); 680 pos = p.y();
684 681
685 if (pos < sliderStart) 682 if (pos < sliderStart)
686 return SubPage; 683 return SubPage;
687 if (pos < sliderStart + sliderLength) 684 if (pos < sliderStart + sliderLength)
688 return Slider; 685 return Slider;
689 if (pos < sliderMax + sliderLength) 686 if (pos < sliderMax + sliderLength)
690 return AddPage; 687 return AddPage;
691 if (pos < sliderMax + sliderLength + buttonDim) 688 if (pos < sliderMax + sliderLength + buttonDim)
692 return SubLine; 689 return SubLine;
693 return AddLine; 690 return AddLine;
694} 691}
695 692
696/*! \reimp */ 693/*! \reimp */
697 694
698void QPEStyle::drawScrollBarControls( QPainter* p, const QScrollBar* sb, int sliderStart, uint controls, uint activeControl ) 695void QPEStyle::drawScrollBarControls( QPainter* p, const QScrollBar* sb, int sliderStart, uint controls, uint activeControl )
699{ 696{
700#define ADD_LINE_ACTIVE ( activeControl == AddLine ) 697#define ADD_LINE_ACTIVE ( activeControl == AddLine )
701#define SUB_LINE_ACTIVE ( activeControl == SubLine ) 698#define SUB_LINE_ACTIVE ( activeControl == SubLine )
702 QColorGroup g = sb->colorGroup(); 699 QColorGroup g = sb->colorGroup();
703 700
704 int sliderMin, sliderMax, sliderLength, buttonDim; 701 int sliderMin, sliderMax, sliderLength, buttonDim;
705 scrollBarMetrics( sb, sliderMin, sliderMax, sliderLength, buttonDim ); 702 scrollBarMetrics( sb, sliderMin, sliderMax, sliderLength, buttonDim );
706 703
707 if ( controls == (AddLine | SubLine | AddPage | SubPage | Slider | First | Last ) ) 704 if ( controls == (AddLine | SubLine | AddPage | SubPage | Slider | First | Last ) )
708 p->fillRect( 0, 0, sb->width(), sb->height(), g.brush( QColorGroup::Mid )); 705 p->fillRect( 0, 0, sb->width(), sb->height(), g.brush( QColorGroup::Mid ));
709 706
710 if (sliderStart > sliderMax) { // sanity check 707 if (sliderStart > sliderMax) { // sanity check
711 sliderStart = sliderMax; 708 sliderStart = sliderMax;
712 } 709 }
713 710
714 int dimB = buttonDim; 711 int dimB = buttonDim;
715 QRect addB; 712 QRect addB;
716 QRect subB; 713 QRect subB;
717 QRect addPageR; 714 QRect addPageR;
718 QRect subPageR; 715 QRect subPageR;
719 QRect sliderR; 716 QRect sliderR;
720 int addX, addY, subX, subY; 717 int addX, addY, subX, subY;
721 int length = HORIZONTAL ? sb->width() : sb->height(); 718 int length = HORIZONTAL ? sb->width() : sb->height();
722 int extent = HORIZONTAL ? sb->height() : sb->width(); 719 int extent = HORIZONTAL ? sb->height() : sb->width();
723 720
724 if ( HORIZONTAL ) { 721 if ( HORIZONTAL ) {
725 subY = addY = ( extent - dimB ) / 2; 722 subY = addY = ( extent - dimB ) / 2;
726 subX = length - dimB - dimB; 723 subX = length - dimB - dimB;
727 addX = length - dimB; 724 addX = length - dimB;
728 } else { 725 } else {
729 subX = addX = ( extent - dimB ) / 2; 726 subX = addX = ( extent - dimB ) / 2;
730 subY = length - dimB - dimB; 727 subY = length - dimB - dimB;
731 addY = length - dimB; 728 addY = length - dimB;
732 } 729 }
733 730
734 int sliderEnd = sliderStart + sliderLength; 731 int sliderEnd = sliderStart + sliderLength;
735 int sliderW = extent; 732 int sliderW = extent;
736 if ( HORIZONTAL ) { 733 if ( HORIZONTAL ) {
737 subB.setRect( subX,subY+1,dimB,dimB-1 ); 734 subB.setRect( subX,subY+1,dimB,dimB-1 );
738 addB.setRect( addX,addY+1,dimB,dimB-1 ); 735 addB.setRect( addX,addY+1,dimB,dimB-1 );
739 736
740 subPageR.setRect( 0, 0, 737 subPageR.setRect( 0, 0,
741 sliderStart+1, sliderW ); 738 sliderStart+1, sliderW );
742 addPageR.setRect( sliderEnd-1, 0, subX - sliderEnd+1, sliderW ); 739 addPageR.setRect( sliderEnd-1, 0, subX - sliderEnd+1, sliderW );
743 sliderR .setRect( sliderStart, 1, sliderLength, sliderW-1 ); 740 sliderR .setRect( sliderStart, 1, sliderLength, sliderW-1 );
744 741
745 } else { 742 } else {
746 subB.setRect( subX+1,subY,dimB-1,dimB ); 743 subB.setRect( subX+1,subY,dimB-1,dimB );
747 addB.setRect( addX+1,addY,dimB-1,dimB ); 744 addB.setRect( addX+1,addY,dimB-1,dimB );
748 745
749 subPageR.setRect( 0, 0, sliderW, 746 subPageR.setRect( 0, 0, sliderW,
750 sliderStart+1 ); 747 sliderStart+1 );
751 addPageR.setRect( 0, sliderEnd-1, sliderW, subY - sliderEnd+1 ); 748 addPageR.setRect( 0, sliderEnd-1, sliderW, subY - sliderEnd+1 );
752 sliderR .setRect( 1, sliderStart, sliderW-1, sliderLength ); 749 sliderR .setRect( 1, sliderStart, sliderW-1, sliderLength );
753 } 750 }
754 751
755 bool maxedOut = (sb->maxValue() == sb->minValue()); 752 bool maxedOut = (sb->maxValue() == sb->minValue());
756 if ( controls & AddLine ) { 753 if ( controls & AddLine ) {
757 drawBevelButton( p, addB.x(), addB.y(), 754 drawBevelButton( p, addB.x(), addB.y(),
758 addB.width(), addB.height(), g, 755 addB.width(), addB.height(), g,
759 ADD_LINE_ACTIVE); 756 ADD_LINE_ACTIVE);
760 p->setPen(g.shadow()); 757 p->setPen(g.shadow());
761 drawArrow( p, VERTICAL ? DownArrow : RightArrow, 758 drawArrow( p, VERTICAL ? DownArrow : RightArrow,
762 FALSE, addB.x()+2, addB.y()+2, 759 FALSE, addB.x()+2, addB.y()+2,
763 addB.width()-4, addB.height()-4, g, !maxedOut, 760 addB.width()-4, addB.height()-4, g, !maxedOut,
764 &g.brush( QColorGroup::Button )); 761 &g.brush( QColorGroup::Button ));
765 } 762 }
766 if ( controls & SubLine ) { 763 if ( controls & SubLine ) {
767 drawBevelButton( p, subB.x(), subB.y(), 764 drawBevelButton( p, subB.x(), subB.y(),
768 subB.width(), subB.height(), g, 765 subB.width(), subB.height(), g,
769 SUB_LINE_ACTIVE ); 766 SUB_LINE_ACTIVE );
770 p->setPen(g.shadow()); 767 p->setPen(g.shadow());
771 drawArrow( p, VERTICAL ? UpArrow : LeftArrow, 768 drawArrow( p, VERTICAL ? UpArrow : LeftArrow,
772 FALSE, subB.x()+2, subB.y()+2, 769 FALSE, subB.x()+2, subB.y()+2,
773 subB.width()-4, subB.height()-4, g, !maxedOut, 770 subB.width()-4, subB.height()-4, g, !maxedOut,
774 &g.brush( QColorGroup::Button )); 771 &g.brush( QColorGroup::Button ));
775 } 772 }
776 773
777 774
778 if ( controls & SubPage ) 775 if ( controls & SubPage )
779 p->fillRect( subPageR.x(), subPageR.y(), subPageR.width(), 776 p->fillRect( subPageR.x(), subPageR.y(), subPageR.width(),
780 subPageR.height(), g.brush( QColorGroup::Mid )); 777 subPageR.height(), g.brush( QColorGroup::Mid ));
781 if ( controls & AddPage ) 778 if ( controls & AddPage )
782 p->fillRect( addPageR.x(), addPageR.y(), addPageR.width(), 779 p->fillRect( addPageR.x(), addPageR.y(), addPageR.width(),
783 addPageR.height(), g.brush( QColorGroup::Mid )); 780 addPageR.height(), g.brush( QColorGroup::Mid ));
784 if ( controls & Slider ) { 781 if ( controls & Slider ) {
785 QPoint bo = p->brushOrigin(); 782 QPoint bo = p->brushOrigin();
786 p->setBrushOrigin(sliderR.topLeft()); 783 p->setBrushOrigin(sliderR.topLeft());
787 drawBevelButton( p, sliderR.x(), sliderR.y(), 784 drawBevelButton( p, sliderR.x(), sliderR.y(),
788 sliderR.width(), sliderR.height(), g, 785 sliderR.width(), sliderR.height(), g,
789 FALSE, &g.brush( QColorGroup::Button ) ); 786 FALSE, &g.brush( QColorGroup::Button ) );
790 p->setBrushOrigin(bo); 787 p->setBrushOrigin(bo);
791 drawRiffles( p, sliderR.x(), sliderR.y(), 788 drawRiffles( p, sliderR.x(), sliderR.y(),
792 sliderR.width(), sliderR.height(), g, HORIZONTAL ); 789 sliderR.width(), sliderR.height(), g, HORIZONTAL );
793 } 790 }