[556] | 1 | /****************************************************************************
|
---|
| 2 | **
|
---|
[846] | 3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
[556] | 4 | ** All rights reserved.
|
---|
| 5 | ** Contact: Nokia Corporation (qt-info@nokia.com)
|
---|
| 6 | **
|
---|
| 7 | ** This file is part of the documentation of the Qt Toolkit.
|
---|
| 8 | **
|
---|
[846] | 9 | ** $QT_BEGIN_LICENSE:FDL$
|
---|
[556] | 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
|
---|
[846] | 13 | ** Software or, alternatively, in accordance with the terms contained in a
|
---|
| 14 | ** written agreement between you and Nokia.
|
---|
[556] | 15 | **
|
---|
[846] | 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.
|
---|
[556] | 21 | **
|
---|
| 22 | ** If you have questions regarding the use of this file, please contact
|
---|
| 23 | ** Nokia at qt-info@nokia.com.
|
---|
| 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 |
|
---|
[846] | 37 | \table
|
---|
| 38 | \row
|
---|
| 39 | \o \image plastique-tabwidget.png Plastique Style Widget Gallery
|
---|
| 40 | \caption \l{Plastique Style Widget Gallery}
|
---|
[556] | 41 |
|
---|
| 42 | The Plastique style is provided by QPlastiqueStyle.
|
---|
[846] | 43 | \o \image windowsxp-tabwidget.png Windows XP Style Widget Gallery
|
---|
| 44 | \caption \l{Windows XP Style Widget Gallery}
|
---|
[556] | 45 |
|
---|
| 46 | The Windows XP style is provided by QWindowsXPStyle.
|
---|
[846] | 47 | \o \image windows-tabwidget.png Windows Style Widget Gallery
|
---|
| 48 | \caption \l{Windows Style Widget Gallery}
|
---|
[556] | 49 |
|
---|
[846] | 50 | The Windows style is provided by QWindowsStyle.
|
---|
| 51 | \endtable
|
---|
[556] | 52 |
|
---|
[846] | 53 | \table
|
---|
| 54 | \row
|
---|
| 55 | \o \image macintosh-tabwidget.png Macintosh Style Widget Gallery
|
---|
| 56 | \caption \l{Macintosh Style Widget Gallery}
|
---|
[556] | 57 |
|
---|
| 58 | The Macintosh style is provided by QMacStyle.
|
---|
[846] | 59 | \o \image cleanlooks-tabwidget.png Cleanlooks Style Widget Gallery
|
---|
| 60 | \caption \l{Cleanlooks Style Widget Gallery}
|
---|
[556] | 61 |
|
---|
| 62 | The Cleanlooks style is provided by QCleanlooksStyle.
|
---|
[846] | 63 | \o \image windowsvista-tabwidget.png Windows Vista Style Widget Gallery
|
---|
| 64 | \caption \l{Windows Vista Style Widget Gallery}
|
---|
[556] | 65 |
|
---|
| 66 | The Windows Vista style is provided by QWindowsVistaStyle.
|
---|
[846] | 67 | \endtable
|
---|
[556] | 68 |
|
---|
[846] | 69 | \table
|
---|
| 70 | \row
|
---|
| 71 | \o \image gtk-tabwidget.png GTK Style Widget Gallery
|
---|
| 72 | \caption \l{GTK Style Widget Gallery}
|
---|
[556] | 73 |
|
---|
[846] | 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 |
|
---|
[556] | 78 | The Motif style is provided by QMotifStyle.
|
---|
[846] | 79 | \o \image cde-tabwidget.png CDE Style Widget Gallery
|
---|
| 80 | \caption \l{CDE Style Widget Gallery}
|
---|
[556] | 81 |
|
---|
| 82 | The Common Desktop Environment style is provided by QCDEStyle.
|
---|
[846] | 83 | \endtable
|
---|
[556] | 84 | */
|
---|