VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox4/include/VBoxSelectorWnd.h@ 14296

Last change on this file since 14296 was 14296, checked in by vboxsync, 16 years ago

Fe/Qt4: Systray: Restructured code.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.6 KB
Line 
1/** @file
2 *
3 * VBox frontends: Qt GUI ("VirtualBox"):
4 * VBoxSelectorWnd class declaration
5 */
6
7/*
8 * Copyright (C) 2006-2008 Sun Microsystems, Inc.
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 *
18 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
19 * Clara, CA 95054 USA or visit http://www.sun.com if you need
20 * additional information or have any questions.
21 */
22
23#ifndef __VBoxSelectorWnd_h__
24#define __VBoxSelectorWnd_h__
25
26#include "COMDefs.h"
27
28#include "QIWithRetranslateUI.h"
29
30#include "VBoxGlobal.h"
31#include "VBoxProblemReporter.h"
32
33/* Qt includes */
34#include <QMainWindow>
35#ifdef VBOX_GUI_WITH_SYSTRAY
36 #include <QSystemTrayIcon>
37#endif
38
39class VBoxSnapshotsWgt;
40class VBoxVMDetailsView;
41class VBoxVMDescriptionPage;
42class VBoxVMLogViewer;
43class VBoxVMListView;
44class VBoxVMModel;
45class VBoxVMItem;
46class VBoxTrayIcon;
47
48class QTabWidget;
49class QListView;
50class QEvent;
51
52class VBoxSelectorWnd : public QIWithRetranslateUI2 <QMainWindow>
53{
54 Q_OBJECT;
55
56public:
57
58 VBoxSelectorWnd (VBoxSelectorWnd **aSelf,
59 QWidget* aParent = 0,
60 Qt::WindowFlags aFlags = Qt::Window);
61 virtual ~VBoxSelectorWnd();
62
63 bool startMachine (const QUuid &aId);
64
65signals:
66
67 void closing();
68
69public slots:
70
71 void fileMediaMgr();
72 void fileSettings();
73 void fileExit();
74
75 void vmNew();
76 void vmSettings (const QString &aCategory = QString::null,
77 const QString &aControl = QString::null,
78 const QUuid & = QUuid_null);
79 void vmDelete (const QUuid & = QUuid_null);
80 void vmStart (const QUuid & = QUuid_null);
81 void vmDiscard (const QUuid & = QUuid_null);
82 void vmPause (bool, const QUuid & = QUuid_null);
83 void vmRefresh (const QUuid & = QUuid_null);
84 void vmShowLogs (const QUuid & = QUuid_null);
85
86 void refreshVMList();
87 void refreshVMItem (const QUuid &aID, bool aDetails,
88 bool aSnapshots,
89 bool aDescription);
90
91 void showContextMenu (const QPoint &aPoint);
92
93#ifdef VBOX_GUI_WITH_SYSTRAY
94 void trayIconActivated (QSystemTrayIcon::ActivationReason aReason);
95 void showWindow();
96#endif
97
98protected:
99
100 /* Events */
101 bool event (QEvent *aEvent);
102 void closeEvent (QCloseEvent *aEvent);
103#if defined (Q_WS_MAC) && (QT_VERSION < 0x040402)
104 bool eventFilter (QObject *aObject, QEvent *aEvent);
105#endif /* defined (Q_WS_MAC) && (QT_VERSION < 0x040402) */
106
107 void retranslateUi();
108
109private slots:
110
111 void vmListViewCurrentChanged (bool aRefreshDetails = true,
112 bool aRefreshSnapshots = true,
113 bool aRefreshDescription = true);
114
115 void mediumEnumStarted();
116 void mediumEnumFinished (const VBoxMediaList &);
117
118 /* VirtualBox callback events we're interested in */
119
120 void machineStateChanged (const VBoxMachineStateChangeEvent &e);
121 void machineDataChanged (const VBoxMachineDataChangeEvent &e);
122 void machineRegistered (const VBoxMachineRegisteredEvent &e);
123 void sessionStateChanged (const VBoxSessionStateChangeEvent &e);
124 void snapshotChanged (const VBoxSnapshotEvent &e);
125
126private:
127
128 /* Main menus */
129 QMenu *mFileMenu;
130 QMenu *mVMMenu;
131 QMenu *mHelpMenu;
132
133 /* VM list context menu */
134 QMenu *mVMCtxtMenu;
135
136 /* Actions */
137 QAction *fileMediaMgrAction;
138 QAction *fileSettingsAction;
139 QAction *fileExitAction;
140 QAction *vmNewAction;
141 QAction *vmConfigAction;
142 QAction *vmDeleteAction;
143 QAction *vmStartAction;
144 QAction *vmDiscardAction;
145 QAction *vmPauseAction;
146 QAction *vmRefreshAction;
147 QAction *vmShowLogsAction;
148
149#ifdef VBOX_GUI_WITH_SYSTRAY
150 QAction *mTrayShowWindowAction;
151 QAction *mTrayExitAction;
152#endif
153
154 VBoxHelpActions mHelpActions;
155
156#ifdef VBOX_GUI_WITH_SYSTRAY
157 /* The systray icon */
158 VBoxTrayIcon *mTrayIcon;
159#endif
160
161 /* The vm list view/model */
162 VBoxVMListView *mVMListView;
163 VBoxVMModel *mVMModel;
164
165 /* The right information widgets */
166 QTabWidget *vmTabWidget;
167 VBoxVMDetailsView *vmDetailsView;
168 VBoxSnapshotsWgt *vmSnapshotsWgt;
169 VBoxVMDescriptionPage *vmDescriptionPage;
170
171 QPoint normal_pos;
172 QSize normal_size;
173
174 bool doneInaccessibleWarningOnce : 1;
175};
176
177#ifdef VBOX_GUI_WITH_SYSTRAY
178
179Q_DECLARE_METATYPE(QUuid);
180
181class VBoxTrayIcon : public QSystemTrayIcon
182{
183 Q_OBJECT;
184
185public:
186
187 VBoxTrayIcon (VBoxSelectorWnd* aParent, VBoxVMModel* aVMModel);
188 virtual ~VBoxTrayIcon ();
189
190 void refresh ();
191 void retranslateUi ();
192
193protected:
194
195 VBoxVMItem* GetItem (QObject* aObject);
196
197signals:
198
199public slots:
200
201
202private slots:
203
204 void showSubMenu();
205 void hideSubMenu ();
206
207 void vmSettings();
208 void vmDelete();
209 void vmStart();
210 void vmDiscard();
211 void vmPause(bool aPause);
212 void vmRefresh();
213 void vmShowLogs();
214
215private:
216
217 /* The vm list model */
218 VBoxVMModel *mVMModel;
219
220 VBoxSelectorWnd* mParent;
221 QMenu *mTrayIconMenu;
222 QAction *mVmConfigAction;
223 QAction *mVmDeleteAction;
224 QAction *mVmStartAction;
225 QAction *mVmDiscardAction;
226 QAction *mVmPauseAction;
227 QAction *mVmRefreshAction;
228 QAction *mVmShowLogsAction;
229};
230
231#endif // VBOX_GUI_WITH_SYSTRAY
232
233#endif // __VBoxSelectorWnd_h__
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette