1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
|
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the QtGui module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** No Commercial Usage
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the either Technology Preview License Agreement or the
** Beta Release License Agreement.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain
** additional rights. These rights are described in the Nokia Qt LGPL
** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
** package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3.0 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU General Public License version 3.0 requirements will be
** met: http://www.gnu.org/copyleft/gpl.html.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at qt-sales@nokia.com.
** $QT_END_LICENSE$
**
****************************************************************************/
#include <qstyle.h>
#include <private/qstyle_p.h>
#include <private/qproxystyle_p.h>
#include <private/qapplication_p.h>
#include "qproxystyle.h"
#include "qstylefactory.h"
#if !defined(QT_NO_STYLE_PROXY) || defined(QT_PLUGIN)
QT_BEGIN_NAMESPACE
/*!
\class QProxyStyle
\brief The QProxyStyle is a convenience class that simplifies
the creation of proxy styles in Qt.
\since 4.6
A proxy style is a style that wraps a different,
usually the default system style, to override the painting or
behavior of only specific parts.
Here's an example allowing you to override the shortcut underline
behavior on all platforms:
\snippet doc/src/snippets/code/src_gui_proxystyle.cpp 0
Warning: Note that even though Qt's internal styles should respect this.
hint, there is no guarantee that it will work for all styles.
The example above would for instance not work on Mac since menus are
handled by the operating system.
\sa QStyle
*/
void QProxyStylePrivate::ensureBaseStyle() const
{
Q_Q(const QProxyStyle);
if (baseStyle)
return;
if (!baseStyle && !QApplicationPrivate::styleOverride.isEmpty()) {
baseStyle = QStyleFactory::create(QApplicationPrivate::styleOverride);
if (baseStyle) {
// If baseStyle is an instance of the same proxyStyle
// we destroy it and fall back to the desktop style
if (qstrcmp(baseStyle->metaObject()->className(),
q->metaObject()->className()) == 0) {
delete baseStyle;
baseStyle = 0;
}
}
}
if (!baseStyle) // Use application desktop style
baseStyle = QStyleFactory::create(QApplicationPrivate::desktopStyleKey());
if (!baseStyle) // Fallback to windows style
baseStyle = QStyleFactory::create(QLatin1String("windows"));
baseStyle->setProxy(const_cast<QProxyStyle*>(q));
baseStyle->setParent(const_cast<QProxyStyle*>(q)); // Take ownership
}
/*!
Constructs a QProxyStyle object.
If no base style is provided, the current application style
will be used as the base style.
Ownership of \style is transferred to QProxyStyle.
*/
QProxyStyle::QProxyStyle(QStyle *style) :
QCommonStyle(*new QProxyStylePrivate())
{
Q_D(QProxyStyle);
if (style) {
style->setProxy(this);
style->setParent(this); // Take ownership
d->baseStyle = style;
}
}
/*!
Destroys the QProxyStyle object.
*/
QProxyStyle::~QProxyStyle()
{
}
/*!
Returns the proxy base style object. If no base style
is set on the proxy style, QProxyStyle will create
an instance of the application style instead.
\sa setBaseStyle(), QStyle
*/
QStyle *QProxyStyle::baseStyle() const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle;
}
/*!
Sets the base style that should be proxied.
Ownership of \style is transferred to QProxyStyle.
If style is zero, a desktop-dependant style will be
assigned automatically.
*/
void QProxyStyle::setBaseStyle(QStyle *style)
{
Q_D (QProxyStyle);
if (d->baseStyle && d->baseStyle->parent() == this)
d->baseStyle->deleteLater();
d->baseStyle = style;
if (d->baseStyle) {
d->baseStyle->setProxy(this);
d->baseStyle->setParent(this);
}
}
/*! reimp */
void QProxyStyle::drawPrimitive(PrimitiveElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
d->baseStyle->drawPrimitive(element, option, painter, widget);
}
/*! reimp */
void QProxyStyle::drawControl(ControlElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
d->baseStyle->drawControl(element, option, painter, widget);
}
/*! reimp */
void QProxyStyle::drawComplexControl(ComplexControl control, const QStyleOptionComplex *option, QPainter *painter, const QWidget *widget) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
d->baseStyle->drawComplexControl(control, option, painter, widget);
}
/*! reimp */
void QProxyStyle::drawItemText(QPainter *painter, const QRect &rect, int flags, const QPalette &pal, bool enabled,
const QString &text, QPalette::ColorRole textRole) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
d->baseStyle->drawItemText(painter, rect, flags, pal, enabled, text, textRole);
}
/*! reimp */
void QProxyStyle::drawItemPixmap(QPainter *painter, const QRect &rect, int alignment, const QPixmap &pixmap) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
d->baseStyle->drawItemPixmap(painter, rect, alignment, pixmap);
}
/*! reimp */
QSize QProxyStyle::sizeFromContents(ContentsType type, const QStyleOption *option, const QSize &size, const QWidget *widget) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle->sizeFromContents(type, option, size, widget);
}
/*! reimp */
QRect QProxyStyle::subElementRect(SubElement element, const QStyleOption *option, const QWidget *widget) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle->subElementRect(element, option, widget);
}
/*! reimp */
QRect QProxyStyle::subControlRect(ComplexControl cc, const QStyleOptionComplex *option, SubControl sc, const QWidget *widget) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle->subControlRect(cc, option, sc, widget);
}
/*! reimp */
QRect QProxyStyle::itemTextRect(const QFontMetrics &fm, const QRect &r, int flags, bool enabled, const QString &text) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle->itemTextRect(fm, r, flags, enabled, text);
}
/*! reimp */
QRect QProxyStyle::itemPixmapRect(const QRect &r, int flags, const QPixmap &pixmap) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle->itemPixmapRect(r, flags, pixmap);
}
/*! reimp */
QStyle::SubControl QProxyStyle::hitTestComplexControl(ComplexControl control, const QStyleOptionComplex *option, const QPoint &pos, const QWidget *widget) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle->hitTestComplexControl(control, option, pos, widget);
}
/*! reimp */
int QProxyStyle::styleHint(StyleHint hint, const QStyleOption *option, const QWidget *widget, QStyleHintReturn *returnData) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle->styleHint(hint, option, widget, returnData);
}
/*! reimp */
int QProxyStyle::pixelMetric(PixelMetric metric, const QStyleOption *option, const QWidget *widget) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle->pixelMetric(metric, option, widget);
}
/*! reimp */
QPixmap QProxyStyle::standardPixmap(StandardPixmap standardPixmap, const QStyleOption *opt, const QWidget *widget) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle->standardPixmap(standardPixmap, opt, widget);
}
/*! reimp */
QPixmap QProxyStyle::generatedIconPixmap(QIcon::Mode iconMode, const QPixmap &pixmap, const QStyleOption *opt) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle->generatedIconPixmap(iconMode, pixmap, opt);
}
/*! reimp */
QPalette QProxyStyle::standardPalette() const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle->standardPalette();
}
/*! reimp */
void QProxyStyle::polish(QWidget *widget)
{
Q_D (QProxyStyle);
d->ensureBaseStyle();
d->baseStyle->polish(widget);
}
/*! reimp */
void QProxyStyle::polish(QPalette &pal)
{
Q_D (QProxyStyle);
d->ensureBaseStyle();
d->baseStyle->polish(pal);
}
/*! reimp */
void QProxyStyle::polish(QApplication *app)
{
Q_D (QProxyStyle);
d->ensureBaseStyle();
d->baseStyle->polish(app);
}
/*! reimp */
void QProxyStyle::unpolish(QWidget *widget)
{
Q_D (QProxyStyle);
d->ensureBaseStyle();
d->baseStyle->unpolish(widget);
}
/*! reimp */
void QProxyStyle::unpolish(QApplication *app)
{
Q_D (QProxyStyle);
d->ensureBaseStyle();
d->baseStyle->unpolish(app);
}
/*! reimp */
bool QProxyStyle::event(QEvent *e)
{
Q_D (QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle->event(e);
}
/*! reimp */
QIcon QProxyStyle::standardIconImplementation(StandardPixmap standardIcon, const QStyleOption *option, const QWidget *widget) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle->standardIcon(standardIcon, option, widget);
}
/*! reimp */
int QProxyStyle::layoutSpacingImplementation(QSizePolicy::ControlType control1, QSizePolicy::ControlType control2,
Qt::Orientation orientation, const QStyleOption *option, const QWidget *widget) const
{
Q_D (const QProxyStyle);
d->ensureBaseStyle();
return d->baseStyle->layoutSpacing(control1, control2, orientation, option, widget);
}
QT_END_NAMESPACE
#endif // QT_NO_STYLE_PROXY
|