Changeset 94323 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Mar 22, 2022 12:50:14 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/global
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsDisplay.cpp
r94248 r94323 17 17 18 18 /* Qt includes: */ 19 #include <QCheckBox>20 #include <QLabel>21 19 #include <QVBoxLayout> 22 20 … … 27 25 #include "UIGlobalSettingsDisplay.h" 28 26 #include "UIMaximumGuestScreenSizeEditor.h" 29 #include "UIMessageCenter.h"30 27 #include "UIScaleFactorEditor.h" 31 28 … … 101 98 #if defined(VBOX_WS_WIN) || defined(VBOX_WS_X11) 102 99 oldData.m_fDisableHostScreenSaver = gEDataManager->disableHostScreenSaver(); 103 #endif /* VBOX_WS_WIN || VBOX_WS_X11 */100 #endif 104 101 m_pCache->cacheInitialData(oldData); 105 102 … … 175 172 if (pLayout) 176 173 { 177 /* Prepare maximum guest screen sizeeditor: */174 /* Prepare 'maximum guest screen size' editor: */ 178 175 m_pEditorMaximumGuestScreenSize = new UIMaximumGuestScreenSizeEditor(this); 179 176 if (m_pEditorMaximumGuestScreenSize) 180 177 pLayout->addWidget(m_pEditorMaximumGuestScreenSize); 181 178 182 /* Prepare scale-factoreditor: */179 /* Prepare 'scale-factor' editor: */ 183 180 m_pEditorScaleFactor = new UIScaleFactorEditor(this, true /* with label */); 184 181 if (m_pEditorScaleFactor) 185 182 pLayout->addWidget(m_pEditorScaleFactor); 186 183 187 /* Prepare global display featureseditor: */184 /* Prepare 'global display features' editor: */ 188 185 m_pEditorGlobalDisplayFeatures = new UIGlobalDisplayFeaturesEditor(this); 189 186 if (m_pEditorGlobalDisplayFeatures) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsDisplay.h
r94248 r94323 26 26 27 27 /* Forward declarations: */ 28 class QCheckBox;29 class QLabel;30 28 class UIGlobalDisplayFeaturesEditor; 31 29 class UIMaximumGuestScreenSizeEditor; -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.cpp
r94288 r94323 17 17 18 18 /* Qt includes: */ 19 #include <QCheckBox>20 19 #include <QVBoxLayout> 21 20 22 21 /* GUI includes: */ 23 22 #include "UIAutoCaptureKeyboardEditor.h" 24 #include "UICommon.h"25 23 #include "UIExtraDataManager.h" 26 24 #include "UIGlobalSettingsInput.h" -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInterface.cpp
r94288 r94323 17 17 18 18 /* Qt includes: */ 19 #include <QLabel>20 19 #include <QVBoxLayout> 21 20 … … 24 23 #include "UIExtraDataManager.h" 25 24 #include "UIGlobalSettingsInterface.h" 25 26 26 27 27 /** Global settings: User Interface page data structure. */ … … 139 139 if (pLayout) 140 140 { 141 /* Prepare color-themeeditor: */141 /* Prepare 'color-theme' editor: */ 142 142 m_pEditorColorTheme = new UIColorThemeEditor(this); 143 143 if (m_pEditorColorTheme) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInterface.h
r94145 r94323 26 26 27 27 /* Forward declarations: */ 28 class QLabel;29 28 class UIColorThemeEditor; 30 29 struct UIDataSettingsGlobalInterface; -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsLanguage.cpp
r94288 r94323 136 136 if (pLayout) 137 137 { 138 /* Prepare language settingseditor: */138 /* Prepare 'language settings' editor: */ 139 139 m_pEditorLanguageSettings = new UILanguageSettingsEditor(this); 140 140 if (m_pEditorLanguageSettings) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsProxy.cpp
r94251 r94323 22 22 #include "UIGlobalProxyFeaturesEditor.h" 23 23 #include "UIGlobalSettingsProxy.h" 24 #include "UIErrorString.h" 24 25 #include "UIExtraDataManager.h" 25 26 … … 197 198 if (pLayout) 198 199 { 199 /* Prepare global proxy featureseditor: */200 /* Prepare 'global proxy features' editor: */ 200 201 m_pEditorGlobalProxyFeatures = new UIGlobalProxyFeaturesEditor(this); 201 202 if (m_pEditorGlobalProxyFeatures) … … 253 254 && !gEDataManager->proxySettings().isEmpty()) 254 255 /* fSuccess = */ gEDataManager->setProxySettings(QString()); 256 257 /* Show error message if necessary: */ 258 if (!fSuccess) 259 notifyOperationProgressError(UIErrorString::formatErrorInfo(m_properties)); 255 260 } 256 261 /* Return result: */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsProxy.h
r94251 r94323 41 41 UIGlobalSettingsProxy(); 42 42 /** Destructs Proxy settings page. */ 43 ~UIGlobalSettingsProxy();43 virtual ~UIGlobalSettingsProxy() RT_OVERRIDE; 44 44 45 45 protected: -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
r94288 r94323 136 136 if (pLayout) 137 137 { 138 /* Prepare update settingseditor: */138 /* Prepare 'update settings' editor: */ 139 139 m_pEditorUpdateSettings = new UIUpdateSettingsEditor(this); 140 140 if (m_pEditorUpdateSettings)
Note:
See TracChangeset
for help on using the changeset viewer.