VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleWnd.h@ 2514

Last change on this file since 2514 was 2495, checked in by vboxsync, 18 years ago

Fixing statusBar clearing issue for required popup menus.
Currently status bar will be cleared upon aboutToHide() signal received [for required QPopupMenu] only if the last status bar message was posted by this menu item highlighting event.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.5 KB
Line 
1/** @file
2 *
3 * VBox frontends: Qt GUI ("VirtualBox"):
4 * VBoxConsoleWnd class declaration
5 */
6
7/*
8 * Copyright (C) 2006 InnoTek Systemberatung GmbH
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 as published by the Free Software Foundation,
14 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
15 * distribution. VirtualBox OSE is distributed in the hope that it will
16 * be useful, but WITHOUT ANY WARRANTY of any kind.
17 *
18 * If you received this file as part of a commercial VirtualBox
19 * distribution, then only the terms of your commercial VirtualBox
20 * license agreement apply instead of the previous paragraph.
21 */
22
23#ifndef __VBoxConsoleWnd_h__
24#define __VBoxConsoleWnd_h__
25
26#include "COMDefs.h"
27
28#include <qmainwindow.h>
29
30#include <qmap.h>
31#include <qobjectlist.h>
32#include <qcolor.h>
33#include <qdialog.h>
34
35#ifdef VBOX_WITH_DEBUGGER_GUI
36# include <VBox/dbggui.h>
37#endif
38#ifdef Q_WS_MAC
39# undef PAGE_SIZE
40# undef PAGE_SHIFT
41# include <Carbon/Carbon.h>
42#endif
43
44class QAction;
45class QActionGroup;
46class QHBox;
47class QLabel;
48
49class VBoxConsoleView;
50class QIStateIndicator;
51
52class VBoxUSBMenu;
53class VBoxSwitchMenu;
54class VBoxUSBLedTip;
55class VBoxNetworkLedTip;
56
57class VBoxConsoleWnd : public QMainWindow
58{
59 Q_OBJECT
60
61public:
62
63 VBoxConsoleWnd (VBoxConsoleWnd **aSelf,
64 QWidget* aParent = 0, const char* aName = 0,
65 WFlags aFlags = WType_TopLevel);
66 virtual ~VBoxConsoleWnd();
67
68 bool openView (const CSession &session);
69 void closeView();
70
71 void refreshView();
72
73 bool isTrueFullscreen() const { return full_screen; }
74
75public slots:
76
77protected:
78
79 // events
80 bool event (QEvent *e);
81 void closeEvent (QCloseEvent *e);
82#if defined(Q_WS_X11)
83 bool x11Event (XEvent *event);
84#endif
85#ifdef VBOX_WITH_DEBUGGER_GUI
86 bool dbgCreated();
87 void dbgDestroy();
88 void dbgAdjustRelativePos();
89#endif
90
91protected slots:
92
93private:
94
95 enum /* Stuff */
96 {
97 FloppyStuff = 0x01,
98 DVDStuff = 0x02,
99 HardDiskStuff = 0x04,
100 PauseAction = 0x08,
101 NetworkStuff = 0x10,
102 DisableMouseIntegrAction = 0x20,
103 Caption = 0x40,
104 USBStuff = 0x80,
105 VRDPStuff = 0x100,
106 AllStuff = 0xFF,
107 };
108
109 void languageChange();
110
111 void updateAppearanceOf (int element);
112
113private slots:
114
115 void finalizeOpenView();
116
117 void loadGuiCustomizations();
118
119 void vmFullscreen (bool on);
120 void vmAutoresizeGuest (bool on);
121 void vmAdjustWindow();
122
123 void vmTypeCAD();
124 void vmTypeCABS();
125 void vmReset();
126 void vmPause(bool);
127 void vmACPIShutdown();
128 void vmClose();
129 void vmTakeSnapshot();
130 void vmDisableMouseIntegr (bool);
131
132 void devicesMountFloppyImage();
133 void devicesUnmountFloppy();
134 void devicesMountDVDImage();
135 void devicesUnmountDVD();
136 void devicesSwitchVrdp (bool);
137 void devicesToggleSFDialog (bool);
138 void devicesInstallGuestAdditions();
139
140 void prepareFloppyMenu();
141 void prepareDVDMenu();
142 void prepareNetworkMenu();
143
144 void setDynamicMenuItemStatusTip (int aId);
145
146 void captureFloppy (int aId);
147 void captureDVD (int aId);
148 void activateNetworkMenu (int aId);
149 void switchUSB (int aId);
150 void activateSFMenu();
151
152 void statusTipChanged (const QString &);
153 void clearStatusBar();
154
155 void showIndicatorContextMenu (QIStateIndicator *ind, QContextMenuEvent *e);
156
157 void updateDeviceLights();
158 void updateMachineState (CEnums::MachineState state);
159
160 void updateMouseState (int state);
161
162 void tryClose();
163
164 void processGlobalSettingChange (const char *publicName, const char *name);
165
166 void dbgShowStatistics();
167 void dbgShowCommandLine();
168
169private:
170
171 QActionGroup *runningActions;
172
173 // VM actions
174 QAction *vmFullscreenAction;
175 QAction *vmAutoresizeGuestAction;
176 QAction *vmAdjustWindowAction;
177 QAction *vmTypeCADAction;
178#if defined(Q_WS_X11)
179 QAction *vmTypeCABSAction;
180#endif
181 QAction *vmResetAction;
182 QAction *vmPauseAction;
183 QAction *vmACPIShutdownAction;
184 QAction *vmCloseAction;
185 QAction *vmTakeSnapshotAction;
186 QAction *vmDisableMouseIntegrAction;
187
188 // VM popup menus
189 VBoxSwitchMenu *vmAutoresizeMenu;
190 VBoxSwitchMenu *vmDisMouseIntegrMenu;
191
192 // Devices actions
193 QAction *devicesMountFloppyImageAction;
194 QAction *devicesUnmountFloppyAction;
195 QAction *devicesMountDVDImageAction;
196 QAction *devicesUnmountDVDAction;
197 QAction *devicesSwitchVrdpAction;
198 QAction *devicesSFDialogAction;
199 QAction *devicesInstallGuestToolsAction;
200
201#ifdef VBOX_WITH_DEBUGGER_GUI
202 // Debugger actions
203 QAction *dbgStatisticsAction;
204 QAction *dbgCommandLineAction;
205#endif
206
207 // Help actions
208 QAction *helpWebAction;
209 QAction *helpAboutAction;
210 QAction *helpResetMessagesAction;
211
212 // Devices popup menus
213 QPopupMenu *devicesMenu;
214 QPopupMenu *devicesMountFloppyMenu;
215 QPopupMenu *devicesMountDVDMenu;
216 QPopupMenu *devicesSharedFolders;
217 QPopupMenu *devicesNetworkMenu;
218 VBoxUSBMenu *devicesUSBMenu;
219 VBoxSwitchMenu *devicesVRDPMenu;
220
221 int devicesUSBMenuSeparatorId;
222 int devicesVRDPMenuSeparatorId;
223 int devicesSFMenuSeparatorId;
224
225 bool waitForStatusBarChange;
226 bool statusBarChangedInside;
227
228#ifdef VBOX_WITH_DEBUGGER_GUI
229 // Debugger popup menu
230 QPopupMenu *dbgMenu;
231#endif
232
233 // Menu identifiers
234 enum {
235 vmMenuId = 1,
236 devicesMenuId,
237 devicesMountFloppyMenuId,
238 devicesMountDVDMenuId,
239 devicesUSBMenuId,
240 devicesNetworkMenuId,
241#ifdef VBOX_WITH_DEBUGGER_GUI
242 dbgMenuId,
243#endif
244 helpMenuId,
245 };
246
247 CSession csession;
248
249 // widgets
250 VBoxConsoleView *console;
251 QIStateIndicator *hd_light, *cd_light, *fd_light, *net_light, *usb_light;
252 QIStateIndicator *mouse_state, *hostkey_state;
253 QIStateIndicator *autoresize_state;
254 QIStateIndicator *vrdp_state;
255 QIStateIndicator *sf_state;
256 QHBox *hostkey_hbox;
257 QLabel *hostkey_name;
258
259 VBoxUSBLedTip *mUsbLedTip;
260 VBoxNetworkLedTip *mNetworkLedTip;
261
262 QTimer *idle_timer;
263 CEnums::MachineState machine_state;
264 QString caption_prefix;
265
266 bool no_auto_close : 1;
267
268 QMap <int, CHostDVDDrive> hostDVDMap;
269 QMap <int, CHostFloppyDrive> hostFloppyMap;
270
271 QPoint normal_pos;
272 QSize normal_size;
273
274 // variables for dealing with true fullscreen
275 bool full_screen : 1;
276 int normal_wflags;
277 bool was_max : 1;
278 QObjectList hidden_children;
279 int console_style;
280 QColor erase_color;
281
282#ifdef VBOX_WITH_DEBUGGER_GUI
283 // Debugger GUI
284 PDBGGUI dbg_gui;
285#endif
286
287#ifdef Q_WS_MAC
288 // Dock images.
289 CGImageRef dockImgStateRunning;
290 CGImageRef dockImgStatePaused;
291 CGImageRef dockImgStateSaving;
292 CGImageRef dockImgStateRestoring;
293 CGImageRef dockImgBack75x75;
294 CGImageRef dockImgBack100x75;
295 CGImageRef dockImgOS;
296#endif
297};
298
299
300class VBoxSharedFoldersSettings;
301class VBoxSFDialog : public QDialog
302{
303 Q_OBJECT
304
305public:
306
307 VBoxSFDialog (QWidget*, CSession&, QAction*);
308 ~VBoxSFDialog();
309
310protected slots:
311
312 virtual void accept();
313 virtual void suicide (bool);
314
315protected:
316
317 void showEvent (QShowEvent*);
318
319private:
320
321 VBoxSharedFoldersSettings *mSettings;
322 CSession &mSession;
323 QAction *mAction;
324};
325
326
327#endif // __VBoxConsoleWnd_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