1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the examples of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
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
|
---|
13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
14 | ** a written agreement between you and Nokia.
|
---|
15 | **
|
---|
16 | ** GNU Lesser General Public License Usage
|
---|
17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
18 | ** General Public License version 2.1 as published by the Free Software
|
---|
19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
20 | ** packaging of this file. Please review the following information to
|
---|
21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
23 | **
|
---|
24 | ** In addition, as a special exception, Nokia gives you certain additional
|
---|
25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
---|
26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you have questions regarding the use of this file, please contact
|
---|
37 | ** Nokia at [email protected].
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | #include <QtGui>
|
---|
43 |
|
---|
44 | #include "window.h"
|
---|
45 |
|
---|
46 | //! [0]
|
---|
47 | Window::Window()
|
---|
48 | {
|
---|
49 | createIconGroupBox();
|
---|
50 | createMessageGroupBox();
|
---|
51 |
|
---|
52 | iconLabel->setMinimumWidth(durationLabel->sizeHint().width());
|
---|
53 |
|
---|
54 | createActions();
|
---|
55 | createTrayIcon();
|
---|
56 |
|
---|
57 | connect(showMessageButton, SIGNAL(clicked()), this, SLOT(showMessage()));
|
---|
58 | connect(showIconCheckBox, SIGNAL(toggled(bool)),
|
---|
59 | trayIcon, SLOT(setVisible(bool)));
|
---|
60 | connect(iconComboBox, SIGNAL(currentIndexChanged(int)),
|
---|
61 | this, SLOT(setIcon(int)));
|
---|
62 | connect(trayIcon, SIGNAL(messageClicked()), this, SLOT(messageClicked()));
|
---|
63 | connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
|
---|
64 | this, SLOT(iconActivated(QSystemTrayIcon::ActivationReason)));
|
---|
65 |
|
---|
66 | QVBoxLayout *mainLayout = new QVBoxLayout;
|
---|
67 | mainLayout->addWidget(iconGroupBox);
|
---|
68 | mainLayout->addWidget(messageGroupBox);
|
---|
69 | setLayout(mainLayout);
|
---|
70 |
|
---|
71 | iconComboBox->setCurrentIndex(1);
|
---|
72 | trayIcon->show();
|
---|
73 |
|
---|
74 | setWindowTitle(tr("Systray"));
|
---|
75 | resize(400, 300);
|
---|
76 | }
|
---|
77 | //! [0]
|
---|
78 |
|
---|
79 | //! [1]
|
---|
80 | void Window::setVisible(bool visible)
|
---|
81 | {
|
---|
82 | minimizeAction->setEnabled(visible);
|
---|
83 | maximizeAction->setEnabled(!isMaximized());
|
---|
84 | restoreAction->setEnabled(isMaximized() || !visible);
|
---|
85 | QDialog::setVisible(visible);
|
---|
86 | }
|
---|
87 | //! [1]
|
---|
88 |
|
---|
89 | //! [2]
|
---|
90 | void Window::closeEvent(QCloseEvent *event)
|
---|
91 | {
|
---|
92 | if (trayIcon->isVisible()) {
|
---|
93 | QMessageBox::information(this, tr("Systray"),
|
---|
94 | tr("The program will keep running in the "
|
---|
95 | "system tray. To terminate the program, "
|
---|
96 | "choose <b>Quit</b> in the context menu "
|
---|
97 | "of the system tray entry."));
|
---|
98 | hide();
|
---|
99 | event->ignore();
|
---|
100 | }
|
---|
101 | }
|
---|
102 | //! [2]
|
---|
103 |
|
---|
104 | //! [3]
|
---|
105 | void Window::setIcon(int index)
|
---|
106 | {
|
---|
107 | QIcon icon = iconComboBox->itemIcon(index);
|
---|
108 | trayIcon->setIcon(icon);
|
---|
109 | setWindowIcon(icon);
|
---|
110 |
|
---|
111 | trayIcon->setToolTip(iconComboBox->itemText(index));
|
---|
112 | }
|
---|
113 | //! [3]
|
---|
114 |
|
---|
115 | //! [4]
|
---|
116 | void Window::iconActivated(QSystemTrayIcon::ActivationReason reason)
|
---|
117 | {
|
---|
118 | switch (reason) {
|
---|
119 | case QSystemTrayIcon::Trigger:
|
---|
120 | case QSystemTrayIcon::DoubleClick:
|
---|
121 | iconComboBox->setCurrentIndex((iconComboBox->currentIndex() + 1)
|
---|
122 | % iconComboBox->count());
|
---|
123 | break;
|
---|
124 | case QSystemTrayIcon::MiddleClick:
|
---|
125 | showMessage();
|
---|
126 | break;
|
---|
127 | default:
|
---|
128 | ;
|
---|
129 | }
|
---|
130 | }
|
---|
131 | //! [4]
|
---|
132 |
|
---|
133 | //! [5]
|
---|
134 | void Window::showMessage()
|
---|
135 | {
|
---|
136 | QSystemTrayIcon::MessageIcon icon = QSystemTrayIcon::MessageIcon(
|
---|
137 | typeComboBox->itemData(typeComboBox->currentIndex()).toInt());
|
---|
138 | trayIcon->showMessage(titleEdit->text(), bodyEdit->toPlainText(), icon,
|
---|
139 | durationSpinBox->value() * 1000);
|
---|
140 | }
|
---|
141 | //! [5]
|
---|
142 |
|
---|
143 | //! [6]
|
---|
144 | void Window::messageClicked()
|
---|
145 | {
|
---|
146 | QMessageBox::information(0, tr("Systray"),
|
---|
147 | tr("Sorry, I already gave what help I could.\n"
|
---|
148 | "Maybe you should try asking a human?"));
|
---|
|
---|