author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Mon, 15 Mar 2010 12:43:09 +0200 | |
branch | RCL_3 |
changeset 6 | dee5afe5301f |
parent 4 | 3b1da2848fc7 |
permissions | -rw-r--r-- |
0 | 1 |
/**************************************************************************** |
2 |
** |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
3 |
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
0 | 4 |
** All rights reserved. |
5 |
** Contact: Nokia Corporation (qt-info@nokia.com) |
|
6 |
** |
|
7 |
** This file is part of the examples of the Qt Toolkit. |
|
8 |
** |
|
9 |
** $QT_BEGIN_LICENSE:LGPL$ |
|
10 |
** No Commercial Usage |
|
11 |
** This file contains pre-release code and may not be distributed. |
|
12 |
** You may use this file in accordance with the terms and conditions |
|
13 |
** contained in the Technology Preview License Agreement accompanying |
|
14 |
** this package. |
|
15 |
** |
|
16 |
** GNU Lesser General Public License Usage |
|
17 |
** Alternatively, this file may be used under the terms of the GNU Lesser |
|
18 |
** General Public License version 2.1 as published by the Free Software |
|
19 |
** Foundation and appearing in the file LICENSE.LGPL included in the |
|
20 |
** packaging of this file. Please review the following information to |
|
21 |
** ensure the GNU Lesser General Public License version 2.1 requirements |
|
22 |
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
23 |
** |
|
24 |
** In addition, as a special exception, Nokia gives you certain additional |
|
25 |
** rights. These rights are described in the Nokia Qt LGPL Exception |
|
26 |
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
|
27 |
** |
|
28 |
** If you have questions regarding the use of this file, please contact |
|
29 |
** Nokia at qt-info@nokia.com. |
|
30 |
** |
|
31 |
** |
|
32 |
** |
|
33 |
** |
|
34 |
** |
|
35 |
** |
|
36 |
** |
|
37 |
** |
|
38 |
** $QT_END_LICENSE$ |
|
39 |
** |
|
40 |
****************************************************************************/ |
|
41 |
||
42 |
#ifndef WIDGETGALLERY_H |
|
43 |
#define WIDGETGALLERY_H |
|
44 |
||
45 |
#include <QDialog> |
|
46 |
||
47 |
QT_BEGIN_NAMESPACE |
|
48 |
class QCheckBox; |
|
49 |
class QComboBox; |
|
50 |
class QDateTimeEdit; |
|
51 |
class QDial; |
|
52 |
class QGroupBox; |
|
53 |
class QLabel; |
|
54 |
class QLineEdit; |
|
55 |
class QProgressBar; |
|
56 |
class QPushButton; |
|
57 |
class QRadioButton; |
|
58 |
class QScrollBar; |
|
59 |
class QSlider; |
|
60 |
class QSpinBox; |
|
61 |
class QTabWidget; |
|
62 |
class QTableWidget; |
|
63 |
class QTextEdit; |
|
64 |
QT_END_NAMESPACE |
|
65 |
||
66 |
//! [0] |
|
67 |
class WidgetGallery : public QDialog |
|
68 |
{ |
|
69 |
Q_OBJECT |
|
70 |
||
71 |
public: |
|
72 |
WidgetGallery(QWidget *parent = 0); |
|
73 |
||
74 |
private slots: |
|
75 |
void changeStyle(const QString &styleName); |
|
76 |
void changePalette(); |
|
77 |
void advanceProgressBar(); |
|
78 |
||
79 |
private: |
|
80 |
void createTopLeftGroupBox(); |
|
81 |
void createTopRightGroupBox(); |
|
82 |
void createBottomLeftTabWidget(); |
|
83 |
void createBottomRightGroupBox(); |
|
84 |
void createProgressBar(); |
|
85 |
||
86 |
QPalette originalPalette; |
|
87 |
||
88 |
QLabel *styleLabel; |
|
89 |
QComboBox *styleComboBox; |
|
90 |
QCheckBox *useStylePaletteCheckBox; |
|
91 |
QCheckBox *disableWidgetsCheckBox; |
|
92 |
//! [0] |
|
93 |
||
94 |
QGroupBox *topLeftGroupBox; |
|
95 |
QRadioButton *radioButton1; |
|
96 |
QRadioButton *radioButton2; |
|
97 |
QRadioButton *radioButton3; |
|
98 |
QCheckBox *checkBox; |
|
99 |
||
100 |
QGroupBox *topRightGroupBox; |
|
101 |
QPushButton *defaultPushButton; |
|
102 |
QPushButton *togglePushButton; |
|
103 |
QPushButton *flatPushButton; |
|
104 |
||
105 |
QTabWidget *bottomLeftTabWidget; |
|
106 |
QTableWidget *tableWidget; |
|
107 |
QTextEdit *textEdit; |
|
108 |
||
109 |
QGroupBox *bottomRightGroupBox; |
|
110 |
QLineEdit *lineEdit; |
|
111 |
QSpinBox *spinBox; |
|
112 |
QDateTimeEdit *dateTimeEdit; |
|
113 |
QSlider *slider; |
|
114 |
QScrollBar *scrollBar; |
|
115 |
QDial *dial; |
|
116 |
||
117 |
QProgressBar *progressBar; |
|
118 |
//! [1] |
|
119 |
}; |
|
120 |
//! [1] |
|
121 |
||
122 |
#endif |