annotate demos/deform/main.d @ 163:ab01453c9d56

change to QObject.findChildren and code formatting
author mwarning
date Wed, 17 Jun 2009 23:21:57 +0000
parents 849b66609571
children 5bcfe9e7db7f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
41
691e68637348 non-working deform example
maxter
parents:
diff changeset
1 /****************************************************************************
691e68637348 non-working deform example
maxter
parents:
diff changeset
2 **
691e68637348 non-working deform example
maxter
parents:
diff changeset
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
691e68637348 non-working deform example
maxter
parents:
diff changeset
4 ** Contact: Qt Software Information (qt-info@nokia.com)
691e68637348 non-working deform example
maxter
parents:
diff changeset
5 **
691e68637348 non-working deform example
maxter
parents:
diff changeset
6 ** This file is part of the demonstration applications of the Qt Toolkit.
691e68637348 non-working deform example
maxter
parents:
diff changeset
7 **
691e68637348 non-working deform example
maxter
parents:
diff changeset
8 ** $QT_BEGIN_LICENSE:LGPL$
691e68637348 non-working deform example
maxter
parents:
diff changeset
9 ** Commercial Usage
691e68637348 non-working deform example
maxter
parents:
diff changeset
10 ** Licensees holding valid Qt Commercial licenses may use this file in
691e68637348 non-working deform example
maxter
parents:
diff changeset
11 ** accordance with the Qt Commercial License Agreement provided with the
691e68637348 non-working deform example
maxter
parents:
diff changeset
12 ** Software or, alternatively, in accordance with the terms contained in
691e68637348 non-working deform example
maxter
parents:
diff changeset
13 ** a written agreement between you and Nokia.
691e68637348 non-working deform example
maxter
parents:
diff changeset
14 **
691e68637348 non-working deform example
maxter
parents:
diff changeset
15 ** GNU Lesser General Public License Usage
691e68637348 non-working deform example
maxter
parents:
diff changeset
16 ** Alternatively, this file may be used under the terms of the GNU Lesser
691e68637348 non-working deform example
maxter
parents:
diff changeset
17 ** General Public License version 2.1 as published by the Free Software
691e68637348 non-working deform example
maxter
parents:
diff changeset
18 ** Foundation and appearing in the file LICENSE.LGPL included in the
691e68637348 non-working deform example
maxter
parents:
diff changeset
19 ** packaging of this file. Please review the following information to
691e68637348 non-working deform example
maxter
parents:
diff changeset
20 ** ensure the GNU Lesser General Public License version 2.1 requirements
691e68637348 non-working deform example
maxter
parents:
diff changeset
21 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
691e68637348 non-working deform example
maxter
parents:
diff changeset
22 **
691e68637348 non-working deform example
maxter
parents:
diff changeset
23 ** In addition, as a special exception, Nokia gives you certain
691e68637348 non-working deform example
maxter
parents:
diff changeset
24 ** additional rights. These rights are described in the Nokia Qt LGPL
691e68637348 non-working deform example
maxter
parents:
diff changeset
25 ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
691e68637348 non-working deform example
maxter
parents:
diff changeset
26 ** package.
691e68637348 non-working deform example
maxter
parents:
diff changeset
27 **
691e68637348 non-working deform example
maxter
parents:
diff changeset
28 ** GNU General Public License Usage
691e68637348 non-working deform example
maxter
parents:
diff changeset
29 ** Alternatively, this file may be used under the terms of the GNU
691e68637348 non-working deform example
maxter
parents:
diff changeset
30 ** General Public License version 3.0 as published by the Free Software
691e68637348 non-working deform example
maxter
parents:
diff changeset
31 ** Foundation and appearing in the file LICENSE.GPL included in the
691e68637348 non-working deform example
maxter
parents:
diff changeset
32 ** packaging of this file. Please review the following information to
691e68637348 non-working deform example
maxter
parents:
diff changeset
33 ** ensure the GNU General Public License version 3.0 requirements will be
691e68637348 non-working deform example
maxter
parents:
diff changeset
34 ** met: http://www.gnu.org/copyleft/gpl.html.
691e68637348 non-working deform example
maxter
parents:
diff changeset
35 **
691e68637348 non-working deform example
maxter
parents:
diff changeset
36 ** If you are unsure which license is appropriate for your use, please
691e68637348 non-working deform example
maxter
parents:
diff changeset
37 ** contact the sales department at qt-sales@nokia.com.
691e68637348 non-working deform example
maxter
parents:
diff changeset
38 ** $QT_END_LICENSE$
691e68637348 non-working deform example
maxter
parents:
diff changeset
39 **
691e68637348 non-working deform example
maxter
parents:
diff changeset
40 ****************************************************************************/
161
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
41 module main;
41
691e68637348 non-working deform example
maxter
parents:
diff changeset
42
161
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
43
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
44 import qt.gui.QApplication;
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
45 import pathdeform;
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
46 import arthurstyle;
41
691e68637348 non-working deform example
maxter
parents:
diff changeset
47
691e68637348 non-working deform example
maxter
parents:
diff changeset
48
691e68637348 non-working deform example
maxter
parents:
diff changeset
49 int main(string[] args)
691e68637348 non-working deform example
maxter
parents:
diff changeset
50 {
161
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
51 scope app = new QApplication(args);
41
691e68637348 non-working deform example
maxter
parents:
diff changeset
52
161
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
53 bool smallScreen = false;
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
54 foreach (arg; args)
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
55 {
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
56 if (arg == "-small-screen")
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
57 smallScreen = true;
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
58 }
41
691e68637348 non-working deform example
maxter
parents:
diff changeset
59
161
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
60 scope deformWidget = new PathDeformWidget(null, smallScreen);
41
691e68637348 non-working deform example
maxter
parents:
diff changeset
61
161
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
62 QStyle arthurStyle = new ArthurStyle();
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
63 deformWidget.setWidgetStyle(arthurStyle);
163
ab01453c9d56 change to QObject.findChildren and code formatting
mwarning
parents: 161
diff changeset
64 QWidget[] widgets = deformWidget.findChildren!(QWidget);
161
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
65 foreach (w; widgets)
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
66 w.setStyle(arthurStyle);
41
691e68637348 non-working deform example
maxter
parents:
diff changeset
67
161
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
68 if (smallScreen)
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
69 deformWidget.showFullScreen();
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
70 else
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
71 deformWidget.show();
41
691e68637348 non-working deform example
maxter
parents:
diff changeset
72
161
849b66609571 a few fixes
mwarning
parents: 41
diff changeset
73 return app.exec();
41
691e68637348 non-working deform example
maxter
parents:
diff changeset
74 }