annotate examples/desktop/systray/main.d @ 350:31520b2c0b3c

Removed dependency on parent trait and stringof
author Max Samukha <maxter@spambox.com>
date Thu, 20 May 2010 15:49:08 +0300
parents 3ea0efe4d31e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
120
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
1 /****************************************************************************
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
2 **
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
4 ** Contact: Qt Software Information (qt-info@nokia.com)
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
5 **
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
6 ** This file is part of the examples of the Qt Toolkit.
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
7 **
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
8 ** $QT_BEGIN_LICENSE:LGPL$
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
9 ** Commercial Usage
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
10 ** Licensees holding valid Qt Commercial licenses may use this file in
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
11 ** accordance with the Qt Commercial License Agreement provided with the
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
12 ** Software or, alternatively, in accordance with the terms contained in
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
13 ** a written agreement between you and Nokia.
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
14 **
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
15 ** GNU Lesser General Public License Usage
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
16 ** Alternatively, this file may be used under the terms of the GNU Lesser
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
17 ** General Public License version 2.1 as published by the Free Software
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
18 ** Foundation and appearing in the file LICENSE.LGPL included in the
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
19 ** packaging of this file. Please review the following information to
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
20 ** ensure the GNU Lesser General Public License version 2.1 requirements
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
21 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
22 **
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
23 ** In addition, as a special exception, Nokia gives you certain
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
24 ** additional rights. These rights are described in the Nokia Qt LGPL
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
25 ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
26 ** package.
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
27 **
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
28 ** GNU General Public License Usage
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
29 ** Alternatively, this file may be used under the terms of the GNU
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
30 ** General Public License version 3.0 as published by the Free Software
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
31 ** Foundation and appearing in the file LICENSE.GPL included in the
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
32 ** packaging of this file. Please review the following information to
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
33 ** ensure the GNU General Public License version 3.0 requirements will be
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
34 ** met: http://www.gnu.org/copyleft/gpl.html.
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
35 **
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
36 ** If you are unsure which license is appropriate for your use, please
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
37 ** contact the sales department at qt-sales@nokia.com.
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
38 ** $QT_END_LICENSE$
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
39 **
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
40 ****************************************************************************/
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
41 module main;
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
42
350
31520b2c0b3c Removed dependency on parent trait and stringof
Max Samukha <maxter@spambox.com>
parents: 210
diff changeset
43 import std.stdio; // BUG: needed to workaround std.stdio initialization failure
120
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
44
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
45 import qt.gui.QMessageBox;
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
46 import qt.gui.QApplication;
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
47 import qt.gui.QSystemTrayIcon;
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
48
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
49 import window;
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
50
157
7c3067c2b803 small issues
mandel
parents: 131
diff changeset
51
210
3ea0efe4d31e fixes for d2.
SokoL_SD
parents: 157
diff changeset
52 int main(string[] args)
120
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
53 {
350
31520b2c0b3c Removed dependency on parent trait and stringof
Max Samukha <maxter@spambox.com>
parents: 210
diff changeset
54 auto app = new QApplication(args);
120
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
55
350
31520b2c0b3c Removed dependency on parent trait and stringof
Max Samukha <maxter@spambox.com>
parents: 210
diff changeset
56 if (!QSystemTrayIcon.isSystemTrayAvailable()) {
31520b2c0b3c Removed dependency on parent trait and stringof
Max Samukha <maxter@spambox.com>
parents: 210
diff changeset
57 QMessageBox.critical(null, tr("Systray"), tr("I couldn't detect any system tray on this system."));
31520b2c0b3c Removed dependency on parent trait and stringof
Max Samukha <maxter@spambox.com>
parents: 210
diff changeset
58 return 1;
31520b2c0b3c Removed dependency on parent trait and stringof
Max Samukha <maxter@spambox.com>
parents: 210
diff changeset
59 }
31520b2c0b3c Removed dependency on parent trait and stringof
Max Samukha <maxter@spambox.com>
parents: 210
diff changeset
60 QApplication.setQuitOnLastWindowClosed(false);
120
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
61
350
31520b2c0b3c Removed dependency on parent trait and stringof
Max Samukha <maxter@spambox.com>
parents: 210
diff changeset
62 auto window = new Window;
31520b2c0b3c Removed dependency on parent trait and stringof
Max Samukha <maxter@spambox.com>
parents: 210
diff changeset
63 window.show();
31520b2c0b3c Removed dependency on parent trait and stringof
Max Samukha <maxter@spambox.com>
parents: 210
diff changeset
64 return app.exec();
120
2c9ef955a171 add desktop examples
mandel
parents:
diff changeset
65 }