annotate examples/layouts/borderlayout/window.d @ 204:6aeaf24018d7

more D2 examples fixes
author eldar
date Mon, 13 Jul 2009 23:16:08 +0000
parents c28c0340fdf3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
118
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
1 /****************************************************************************
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
2 **
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
4 ** Contact: Qt Software Information (qt-info@nokia.com)
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
5 **
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
6 ** This file is part of the examples of the Qt Toolkit.
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
7 **
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
8 ** $QT_BEGIN_LICENSE:LGPL$
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
9 ** Commercial Usage
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
10 ** Licensees holding valid Qt Commercial licenses may use this file in
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
11 ** accordance with the Qt Commercial License Agreement provided with the
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
12 ** Software or, alternatively, in accordance with the terms contained in
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
13 ** a written agreement between you and Nokia.
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
14 **
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
15 ** GNU Lesser General Public License Usage
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
16 ** Alternatively, this file may be used under the terms of the GNU Lesser
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
17 ** General Public License version 2.1 as published by the Free Software
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
18 ** Foundation and appearing in the file LICENSE.LGPL included in the
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
19 ** packaging of this file. Please review the following information to
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
20 ** ensure the GNU Lesser General Public License version 2.1 requirements
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
21 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
22 **
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
23 ** In addition, as a special exception, Nokia gives you certain
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
24 ** additional rights. These rights are described in the Nokia Qt LGPL
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
25 ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
26 ** package.
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
27 **
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
28 ** GNU General Public License Usage
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
29 ** Alternatively, this file may be used under the terms of the GNU
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
30 ** General Public License version 3.0 as published by the Free Software
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
31 ** Foundation and appearing in the file LICENSE.GPL included in the
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
32 ** packaging of this file. Please review the following information to
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
33 ** ensure the GNU General Public License version 3.0 requirements will be
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
34 ** met: http://www.gnu.org/copyleft/gpl.html.
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
35 **
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
36 ** If you are unsure which license is appropriate for your use, please
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
37 ** contact the sales department at qt-sales@nokia.com.
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
38 ** $QT_END_LICENSE$
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
39 **
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
40 ****************************************************************************/
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
41 module window;
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
42
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
43
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
44 import qt.gui.QTextBrowser;
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
45 import qt.gui.QWidget;
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
46 import qt.gui.QLabel;
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
47
204
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
48 version(D_Version2)
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
49 import borderlayout;
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
50 else
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
51 import borderlayout_d1;
118
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
52
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
53
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
54 class Window : public QWidget
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
55 {
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
56 public:
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
57
204
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
58 this()
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
59 {
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
60 QTextBrowser centralWidget = new QTextBrowser;
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
61 centralWidget.setPlainText(tr("Central widget"));
118
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
62
204
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
63 BorderLayout layout = new BorderLayout;
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
64 layout.addWidget(centralWidget, BorderLayout.Position.Center);
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
65 layout.addWidget(createLabel("North"), BorderLayout.Position.North);
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
66 layout.addWidget(createLabel("West"), BorderLayout.Position.West);
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
67 layout.addWidget(createLabel("East 1"), BorderLayout.Position.East);
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
68 layout.addWidget(createLabel("East 2") , BorderLayout.Position.East);
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
69 layout.addWidget(createLabel("South"), BorderLayout.Position.South);
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
70 setLayout(layout);
118
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
71
204
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
72 setWindowTitle(tr("Border Layout"));
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
73 }
118
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
74
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
75 private:
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
76
204
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
77 QLabel createLabel(string text)
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
78 {
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
79 QLabel label = new QLabel(text);
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
80 label.setFrameStyle(QFrame.Box | QFrame.Raised);
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
81 return label;
6aeaf24018d7 more D2 examples fixes
eldar
parents: 118
diff changeset
82 }
118
c28c0340fdf3 add borderlayout example
mandel
parents:
diff changeset
83 }