annotate examples/layouts/basiclayouts/main.d @ 204:6aeaf24018d7

more D2 examples fixes
author eldar
date Mon, 13 Jul 2009 23:16:08 +0000
parents 1c51d13eef25
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
116
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
1 /****************************************************************************
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
2 **
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
4 ** Contact: Qt Software Information (qt-info@nokia.com)
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
5 **
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
6 ** This file is part of the examples of the Qt Toolkit.
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
7 **
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
8 ** $QT_BEGIN_LICENSE:LGPL$
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
9 ** Commercial Usage
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
10 ** Licensees holding valid Qt Commercial licenses may use this file in
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
11 ** accordance with the Qt Commercial License Agreement provided with the
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
12 ** Software or, alternatively, in accordance with the terms contained in
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
13 ** a written agreement between you and Nokia.
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
14 **
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
15 ** GNU Lesser General Public License Usage
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
16 ** Alternatively, this file may be used under the terms of the GNU Lesser
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
17 ** General Public License version 2.1 as published by the Free Software
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
18 ** Foundation and appearing in the file LICENSE.LGPL included in the
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
19 ** packaging of this file. Please review the following information to
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
20 ** ensure the GNU Lesser General Public License version 2.1 requirements
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
21 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
22 **
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
23 ** In addition, as a special exception, Nokia gives you certain
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
24 ** additional rights. These rights are described in the Nokia Qt LGPL
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
25 ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
26 ** package.
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
27 **
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
28 ** GNU General Public License Usage
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
29 ** Alternatively, this file may be used under the terms of the GNU
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
30 ** General Public License version 3.0 as published by the Free Software
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
31 ** Foundation and appearing in the file LICENSE.GPL included in the
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
32 ** packaging of this file. Please review the following information to
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
33 ** ensure the GNU General Public License version 3.0 requirements will be
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
34 ** met: http://www.gnu.org/copyleft/gpl.html.
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
35 **
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
36 ** If you are unsure which license is appropriate for your use, please
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
37 ** contact the sales department at qt-sales@nokia.com.
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
38 ** $QT_END_LICENSE$
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
39 **
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
40 ****************************************************************************/
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
41 module main;
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
42
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
43
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
44 import qt.gui.QApplication;
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
45 import dialog;
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
46
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
47
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
48 int main(string[] args)
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
49 {
204
6aeaf24018d7 more D2 examples fixes
eldar
parents: 116
diff changeset
50 scope app = new QApplication(args);
6aeaf24018d7 more D2 examples fixes
eldar
parents: 116
diff changeset
51 scope dialog = new Dialog;
6aeaf24018d7 more D2 examples fixes
eldar
parents: 116
diff changeset
52 return dialog.exec();
116
1c51d13eef25 add basiclayout example
mandel
parents:
diff changeset
53 }