Changeset 101033 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Sep 6, 2023 3:09:28 PM (16 months ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/global
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsDisplay.cpp
r100064 r101033 226 226 m_pEditorMaximumGuestScreenSize = new UIMaximumGuestScreenSizeEditor(this); 227 227 if (m_pEditorMaximumGuestScreenSize) 228 { 229 m_editors << m_pEditorMaximumGuestScreenSize; 228 230 pLayout->addWidget(m_pEditorMaximumGuestScreenSize); 231 } 229 232 230 233 /* Prepare 'scale-factor' editor: */ 231 234 m_pEditorScaleFactor = new UIScaleFactorEditor(this); 232 235 if (m_pEditorScaleFactor) 236 { 237 m_editors << m_pEditorScaleFactor; 233 238 pLayout->addWidget(m_pEditorScaleFactor); 239 } 234 240 235 241 /* Prepare 'global display features' editor: */ 236 242 m_pEditorGlobalDisplayFeatures = new UIDisplayFeaturesEditor(this); 237 243 if (m_pEditorGlobalDisplayFeatures) 244 { 245 m_editors << m_pEditorGlobalDisplayFeatures; 238 246 pLayout->addWidget(m_pEditorGlobalDisplayFeatures); 247 } 239 248 240 249 /* Prepare 'font scale' editor: */ 241 250 m_pFontScaleEditor = new UIFontScaleEditor(this); 242 251 if (m_pFontScaleEditor) 252 { 253 m_editors << m_pFontScaleEditor; 243 254 pLayout->addWidget(m_pFontScaleEditor); 255 } 244 256 245 257 /* Add stretch to the end: */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsGeneral.cpp
r98103 r101033 186 186 m_pEditorDefaultMachineFolder = new UIDefaultMachineFolderEditor(this); 187 187 if (m_pEditorDefaultMachineFolder) 188 { 189 m_editors << m_pEditorDefaultMachineFolder; 188 190 pLayout->addWidget(m_pEditorDefaultMachineFolder); 191 } 189 192 190 193 /* Prepare 'VRDE auth library' editor: */ 191 194 m_pEditorVRDEAuthLibrary = new UIVRDEAuthLibraryEditor(this); 192 195 if (m_pEditorVRDEAuthLibrary) 196 { 197 m_editors << m_pEditorVRDEAuthLibrary; 193 198 pLayout->addWidget(m_pEditorVRDEAuthLibrary); 199 } 194 200 195 201 /* Add stretch to the end: */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.cpp
r98103 r101033 231 231 m_pEditorShortcutConfiguration = new UIShortcutConfigurationEditor(this); 232 232 if (m_pEditorShortcutConfiguration) 233 { 234 m_editors << m_pEditorShortcutConfiguration; 233 235 pLayout->addWidget(m_pEditorShortcutConfiguration); 236 } 234 237 235 238 /* Prepare 'auto capture keyboard' editor: */ 236 239 m_pEditorAutoCaptureKeyboard = new UIAutoCaptureKeyboardEditor(this); 237 240 if (m_pEditorAutoCaptureKeyboard) 241 { 242 m_editors << m_pEditorAutoCaptureKeyboard; 238 243 pLayout->addWidget(m_pEditorAutoCaptureKeyboard); 244 } 239 245 } 240 246 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInterface.cpp
r98103 r101033 171 171 m_pEditorColorTheme = new UIColorThemeEditor(this); 172 172 if (m_pEditorColorTheme) 173 { 174 m_editors << m_pEditorColorTheme; 173 175 pLayout->addWidget(m_pEditorColorTheme); 176 } 174 177 175 178 /* Add stretch to the end: */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsLanguage.cpp
r98103 r101033 168 168 m_pEditorLanguageSettings = new UILanguageSettingsEditor(this); 169 169 if (m_pEditorLanguageSettings) 170 { 171 m_editors << m_pEditorLanguageSettings; 170 172 pLayout->addWidget(m_pEditorLanguageSettings); 173 } 171 174 } 172 175 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsProxy.cpp
r98103 r101033 234 234 m_pEditorProxyFeatures = new UIProxyFeaturesEditor(this); 235 235 if (m_pEditorProxyFeatures) 236 { 237 m_editors << m_pEditorProxyFeatures; 236 238 pLayout->addWidget(m_pEditorProxyFeatures); 239 } 237 240 238 241 /* Add stretch to the end: */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
r98103 r101033 171 171 m_pEditorUpdateSettings = new UIUpdateSettingsEditor(this); 172 172 if (m_pEditorUpdateSettings) 173 { 174 m_editors << m_pEditorUpdateSettings; 173 175 pLayout->addWidget(m_pEditorUpdateSettings); 176 } 174 177 175 178 /* Add stretch to the end: */
Note:
See TracChangeset
for help on using the changeset viewer.