VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxDefs.cpp@ 35740

Last change on this file since 35740 was 35634, checked in by vboxsync, 13 years ago

FE/Qt4: allow free configurable key shortcuts in the selector and machine window

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.1 KB
Line 
1/* $Id: VBoxDefs.cpp 35634 2011-01-19 16:13:31Z vboxsync $ */
2/** @file
3 *
4 * VBox frontends: Qt GUI ("VirtualBox"):
5 * VBoxDefs implementation
6 */
7
8/*
9 * Copyright (C) 2006-2010 Oracle Corporation
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 */
19
20/* Local includes */
21#include <VBoxDefs.h>
22
23/* Global includes */
24#include <QStringList>
25
26const char* VBoxDefs::GUI_LastWindowPosition = "GUI/LastWindowPosition";
27const char* VBoxDefs::GUI_LastNormalWindowPosition = "GUI/LastNormalWindowPosition";
28const char* VBoxDefs::GUI_LastScaleWindowPosition = "GUI/LastScaleWindowPosition";
29const char* VBoxDefs::GUI_LastWindowState_Max = "max";
30const char* VBoxDefs::GUI_LastGuestSizeHint = "GUI/LastGuestSizeHint";
31const char* VBoxDefs::GUI_Toolbar = "GUI/Toolbar";
32const char* VBoxDefs::GUI_Statusbar = "GUI/Statusbar";
33const char* VBoxDefs::GUI_SplitterSizes = "GUI/SplitterSizes";
34const char* VBoxDefs::GUI_Fullscreen = "GUI/Fullscreen";
35const char* VBoxDefs::GUI_Seamless = "GUI/Seamless";
36const char* VBoxDefs::GUI_Scale = "GUI/Scale";
37const char* VBoxDefs::GUI_VirtualScreenToHostScreen = "GUI/VirtualScreenToHostScreen";
38const char* VBoxDefs::GUI_AutoresizeGuest = "GUI/AutoresizeGuest";
39const char* VBoxDefs::GUI_FirstRun = "GUI/FirstRun";
40const char* VBoxDefs::GUI_SaveMountedAtRuntime = "GUI/SaveMountedAtRuntime";
41const char* VBoxDefs::GUI_ShowMiniToolBar = "GUI/ShowMiniToolBar";
42const char* VBoxDefs::GUI_MiniToolBarAlignment = "GUI/MiniToolBarAlignment";
43const char* VBoxDefs::GUI_MiniToolBarAutoHide = "GUI/MiniToolBarAutoHide";
44const char* VBoxDefs::GUI_LastCloseAction = "GUI/LastCloseAction";
45const char* VBoxDefs::GUI_RestrictedCloseActions = "GUI/RestrictedCloseActions";
46const char* VBoxDefs::GUI_SuppressMessages = "GUI/SuppressMessages";
47const char* VBoxDefs::GUI_PermanentSharedFoldersAtRuntime = "GUI/PermanentSharedFoldersAtRuntime";
48const char* VBoxDefs::GUI_LanguageId = "GUI/LanguageID";
49const char* VBoxDefs::GUI_PreviewUpdate = "GUI/PreviewUpdate";
50const char* VBoxDefs::GUI_DetailsPageBoxes = "GUI/DetailsPageBoxes";
51const char* VBoxDefs::GUI_SelectorVMPositions = "GUI/SelectorVMPositions";
52const char* VBoxDefs::GUI_Input_MachineShortcuts = "GUI/Input/MachineShortcuts";
53const char* VBoxDefs::GUI_Input_SelectorShortcuts = "GUI/Input/SelectorShortcuts";
54#ifdef Q_WS_X11
55const char* VBoxDefs::GUI_LicenseKey = "GUI/LicenseAgreed";
56#endif
57const char* VBoxDefs::GUI_RegistrationDlgWinID = "GUI/RegistrationDlgWinID";
58const char* VBoxDefs::GUI_RegistrationData = "GUI/SUNOnlineData";
59const char* VBoxDefs::GUI_UpdateDlgWinID = "GUI/UpdateDlgWinID";
60const char* VBoxDefs::GUI_UpdateDate = "GUI/UpdateDate";
61const char* VBoxDefs::GUI_UpdateCheckCount = "GUI/UpdateCheckCount";
62const char* VBoxDefs::GUI_LastVMSelected = "GUI/LastVMSelected";
63const char* VBoxDefs::GUI_InfoDlgState = "GUI/InfoDlgState";
64const char* VBoxDefs::GUI_RenderMode = "GUI/RenderMode";
65#ifdef VBOX_GUI_WITH_SYSTRAY
66const char* VBoxDefs::GUI_TrayIconWinID = "GUI/TrayIcon/WinID";
67const char* VBoxDefs::GUI_TrayIconEnabled = "GUI/TrayIcon/Enabled";
68const char* VBoxDefs::GUI_MainWindowCount = "GUI/MainWindowCount";
69#endif
70#ifdef Q_WS_MAC
71const char* VBoxDefs::GUI_RealtimeDockIconUpdateEnabled = "GUI/RealtimeDockIconUpdateEnabled";
72const char* VBoxDefs::GUI_RealtimeDockIconUpdateMonitor = "GUI/RealtimeDockIconUpdateMonitor";
73const char* VBoxDefs::GUI_PresentationModeEnabled = "GUI/PresentationModeEnabled";
74#endif /* Q_WS_MAC */
75const char* VBoxDefs::GUI_PassCAD = "GUI/PassCAD";
76const char* VBoxDefs::GUI_Export_StorageType = "GUI/Export/StorageType";
77const char* VBoxDefs::GUI_Export_Username = "GUI/Export/Username";
78const char* VBoxDefs::GUI_Export_Hostname = "GUI/Export/Hostname";
79const char* VBoxDefs::GUI_Export_Bucket = "GUI/Export/Bucket";
80const char* VBoxDefs::GUI_PreventBetaWarning = "GUI/PreventBetaWarning";
81const char* VBoxDefs::GUI_RecentListHD = "GUI/RecentListHD";
82const char* VBoxDefs::GUI_RecentListCD = "GUI/RecentListCD";
83const char* VBoxDefs::GUI_RecentListFD = "GUI/RecentListFD";
84#ifdef VBOX_WITH_VIDEOHWACCEL
85const char* VBoxDefs::GUI_Accelerate2D_StretchLinear = "GUI/Accelerate2D/StretchLinear";
86const char* VBoxDefs::GUI_Accelerate2D_PixformatYV12 = "GUI/Accelerate2D/PixformatYV12";
87const char* VBoxDefs::GUI_Accelerate2D_PixformatUYVY = "GUI/Accelerate2D/PixformatUYVY";
88const char* VBoxDefs::GUI_Accelerate2D_PixformatYUY2 = "GUI/Accelerate2D/PixformatYUY2";
89const char* VBoxDefs::GUI_Accelerate2D_PixformatAYUV = "GUI/Accelerate2D/PixformatAYUV";
90#endif
91#ifdef VBOX_WITH_DEBUGGER_GUI
92const char* VBoxDefs::GUI_DbgEnabled = "GUI/Dbg/Enabled";
93const char* VBoxDefs::GUI_DbgAutoShow = "GUI/Dbg/AutoShow";
94#endif
95
96QStringList VBoxDefs::VBoxFileExts = QStringList() << "xml" << "vbox";
97QStringList VBoxDefs::VBoxExtPackFileExts = QStringList() << "vbox-extpack";
98QStringList VBoxDefs::OVFFileExts = QStringList() << "ovf" << "ova";
99
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use