1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the documentation of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:FDL$
|
---|
10 | ** Commercial Usage
|
---|
11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
13 | ** Software or, alternatively, in accordance with the terms contained in a
|
---|
14 | ** written agreement between you and Nokia.
|
---|
15 | **
|
---|
16 | ** GNU Free Documentation License
|
---|
17 | ** Alternatively, this file may be used under the terms of the GNU Free
|
---|
18 | ** Documentation License version 1.3 as published by the Free Software
|
---|
19 | ** Foundation and appearing in the file included in the packaging of this
|
---|
20 | ** file.
|
---|
21 | **
|
---|
22 | ** If you have questions regarding the use of this file, please contact
|
---|
23 | ** Nokia at [email protected].
|
---|
24 | ** $QT_END_LICENSE$
|
---|
25 | **
|
---|
26 | ****************************************************************************/
|
---|
27 |
|
---|
28 | /*!
|
---|
29 | \group gallery
|
---|
30 | \title Qt Widget Gallery
|
---|
31 | \brief Qt widgets shown in different styles on various platforms.
|
---|
32 |
|
---|
33 | Qt's support for widget styles and themes enables your application to fit in
|
---|
34 | with the native desktop enviroment. Below, you can find links to the various
|
---|
35 | widget styles that are supplied with Qt 4.
|
---|
36 |
|
---|
37 | \table
|
---|
38 | \row
|
---|
39 | \o \image plastique-tabwidget.png Plastique Style Widget Gallery
|
---|
40 | \caption \l{Plastique Style Widget Gallery}
|
---|
41 |
|
---|
42 | The Plastique style is provided by QPlastiqueStyle.
|
---|
43 | \o \image windowsxp-tabwidget.png Windows XP Style Widget Gallery
|
---|
44 | \caption \l{Windows XP Style Widget Gallery}
|
---|
45 |
|
---|
46 | The Windows XP style is provided by QWindowsXPStyle.
|
---|
47 | \o \image windows-tabwidget.png Windows Style Widget Gallery
|
---|
48 | \caption \l{Windows Style Widget Gallery}
|
---|
49 |
|
---|
50 | The Windows style is provided by QWindowsStyle.
|
---|
51 | \endtable
|
---|
52 |
|
---|
53 | \table
|
---|
54 | \row
|
---|
55 | \o \image macintosh-tabwidget.png Macintosh Style Widget Gallery
|
---|
56 | \caption \l{Macintosh Style Widget Gallery}
|
---|
57 |
|
---|
58 | The Macintosh style is provided by QMacStyle.
|
---|
59 | \o \image cleanlooks-tabwidget.png Cleanlooks Style Widget Gallery
|
---|
60 | \caption \l{Cleanlooks Style Widget Gallery}
|
---|
61 |
|
---|
62 | The Cleanlooks style is provided by QCleanlooksStyle.
|
---|
63 | \o \image windowsvista-tabwidget.png Windows Vista Style Widget Gallery
|
---|
64 | \caption \l{Windows Vista Style Widget Gallery}
|
---|
65 |
|
---|
66 | The Windows Vista style is provided by QWindowsVistaStyle.
|
---|
67 | \endtable
|
---|
68 |
|
---|
69 | \table
|
---|
70 | \row
|
---|
71 | \o \image gtk-tabwidget.png GTK Style Widget Gallery
|
---|
72 | \caption \l{GTK Style Widget Gallery}
|
---|
73 |
|
---|
74 | The GTK style is provided by QGtkStyle.
|
---|
75 | \o \image motif-tabwidget.png Motif Style Widget Gallery
|
---|
76 | \caption \l{Motif Style Widget Gallery}
|
---|
77 |
|
---|
78 | The Motif style is provided by QMotifStyle.
|
---|
79 | \o \image cde-tabwidget.png CDE Style Widget Gallery
|
---|
80 | \caption \l{CDE Style Widget Gallery}
|
---|
81 |
|
---|
82 | The Common Desktop Environment style is provided by QCDEStyle.
|
---|
83 | \endtable
|
---|
84 | */
|
---|