- Timestamp:
- Nov 17, 2023 2:11:21 PM (17 months ago)
- svn:sync-xref-src-repo-rev:
- 160263
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
r102018 r102138 44 44 #include "UIActionPoolRuntime.h" 45 45 #include "UIAddDiskEncryptionPasswordDialog.h" 46 #include "UIAdvancedSettingsDialogSpecific.h" 46 47 #include "UIBootFailureDialog.h" 47 48 #include "UICommon.h" … … 69 70 #include "UIMouseHandler.h" 70 71 #include "UINotificationCenter.h" 71 #include "UISettingsDialogSpecific.h"72 72 #include "UISoftKeyboard.h" 73 73 #include "UITakeSnapshotDialog.h" … … 1530 1530 1531 1531 /* Create instance if not yet created: */ 1532 if (!m_settings.contains(UI SettingsDialog::Type_Global))1533 { 1534 m_settings[UI SettingsDialog::Type_Global] = new UISettingsDialogGlobal(activeMachineWindow(),1535 strCategory,1536 strControl);1537 connect(m_settings[UI SettingsDialog::Type_Global], &UISettingsDialogGlobal::sigClose,1532 if (!m_settings.contains(UIAdvancedSettingsDialog::Type_Global)) 1533 { 1534 m_settings[UIAdvancedSettingsDialog::Type_Global] = new UIAdvancedSettingsDialogGlobal(activeMachineWindow(), 1535 strCategory, 1536 strControl); 1537 connect(m_settings[UIAdvancedSettingsDialog::Type_Global], &UIAdvancedSettingsDialogGlobal::sigClose, 1538 1538 this, &UIMachineLogic::sltClosePreferencesDialog); 1539 m_settings.value(UI SettingsDialog::Type_Global)->load();1539 m_settings.value(UIAdvancedSettingsDialog::Type_Global)->load(); 1540 1540 } 1541 1541 1542 1542 /* Expose instance: */ 1543 UIDesktopWidgetWatchdog::restoreWidget(m_settings.value(UI SettingsDialog::Type_Global));1543 UIDesktopWidgetWatchdog::restoreWidget(m_settings.value(UIAdvancedSettingsDialog::Type_Global)); 1544 1544 } 1545 1545 … … 1547 1547 { 1548 1548 /* Remove instance if exist: */ 1549 delete m_settings.take(UI SettingsDialog::Type_Global);1549 delete m_settings.take(UIAdvancedSettingsDialog::Type_Global); 1550 1550 } 1551 1551 … … 1572 1572 1573 1573 /* Create instance if not yet created: */ 1574 if (!m_settings.contains(UI SettingsDialog::Type_Machine))1575 { 1576 m_settings[UI SettingsDialog::Type_Machine] = new UISettingsDialogMachine(activeMachineWindow(),1577 uiCommon().managedVMUuid(),1578 actionPool(),1579 strCategory,1580 strControl);1581 connect(m_settings[UI SettingsDialog::Type_Machine], &UISettingsDialogGlobal::sigClose,1574 if (!m_settings.contains(UIAdvancedSettingsDialog::Type_Machine)) 1575 { 1576 m_settings[UIAdvancedSettingsDialog::Type_Machine] = new UIAdvancedSettingsDialogMachine(activeMachineWindow(), 1577 uiCommon().managedVMUuid(), 1578 actionPool(), 1579 strCategory, 1580 strControl); 1581 connect(m_settings[UIAdvancedSettingsDialog::Type_Machine], &UIAdvancedSettingsDialogGlobal::sigClose, 1582 1582 this, &UIMachineLogic::sltCloseSettingsDialog); 1583 m_settings.value(UI SettingsDialog::Type_Machine)->load();1583 m_settings.value(UIAdvancedSettingsDialog::Type_Machine)->load(); 1584 1584 } 1585 1585 1586 1586 /* Expose instance: */ 1587 UIDesktopWidgetWatchdog::restoreWidget(m_settings.value(UI SettingsDialog::Type_Machine));1587 UIDesktopWidgetWatchdog::restoreWidget(m_settings.value(UIAdvancedSettingsDialog::Type_Machine)); 1588 1588 } 1589 1589 … … 1591 1591 { 1592 1592 /* Remove instance if exist: */ 1593 delete m_settings.take(UI SettingsDialog::Type_Machine);1593 delete m_settings.take(UIAdvancedSettingsDialog::Type_Machine); 1594 1594 } 1595 1595 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.h
r101719 r102138 35 35 #include "QIWithRetranslateUI.h" 36 36 #include "UIExtraDataDefs.h" 37 #include "UI SettingsDialog.h"37 #include "UIAdvancedSettingsDialog.h" 38 38 39 39 /* Forward declarations: */ … … 398 398 399 399 /** Holds the map of settings dialogs. */ 400 QMap<UI SettingsDialog::DialogType, UISettingsDialog*> m_settings;400 QMap<UIAdvancedSettingsDialog::DialogType, UIAdvancedSettingsDialog*> m_settings; 401 401 402 402 /** Holds the log viewer dialog instance. */
Note:
See TracChangeset
for help on using the changeset viewer.