VirtualBox

Changeset 102138 in vbox for trunk/src


Ignore:
Timestamp:
Nov 17, 2023 2:11:21 PM (17 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
160263
Message:

FE/Qt: bugref:10513: Runtime UI / Machine logic: Switching to advanced settings dialog as well.

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  
    4444#include "UIActionPoolRuntime.h"
    4545#include "UIAddDiskEncryptionPasswordDialog.h"
     46#include "UIAdvancedSettingsDialogSpecific.h"
    4647#include "UIBootFailureDialog.h"
    4748#include "UICommon.h"
     
    6970#include "UIMouseHandler.h"
    7071#include "UINotificationCenter.h"
    71 #include "UISettingsDialogSpecific.h"
    7272#include "UISoftKeyboard.h"
    7373#include "UITakeSnapshotDialog.h"
     
    15301530
    15311531    /* Create instance if not yet created: */
    1532     if (!m_settings.contains(UISettingsDialog::Type_Global))
    1533     {
    1534         m_settings[UISettingsDialog::Type_Global] = new UISettingsDialogGlobal(activeMachineWindow(),
    1535                                                                                strCategory,
    1536                                                                                strControl);
    1537         connect(m_settings[UISettingsDialog::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,
    15381538                this, &UIMachineLogic::sltClosePreferencesDialog);
    1539         m_settings.value(UISettingsDialog::Type_Global)->load();
     1539        m_settings.value(UIAdvancedSettingsDialog::Type_Global)->load();
    15401540    }
    15411541
    15421542    /* Expose instance: */
    1543     UIDesktopWidgetWatchdog::restoreWidget(m_settings.value(UISettingsDialog::Type_Global));
     1543    UIDesktopWidgetWatchdog::restoreWidget(m_settings.value(UIAdvancedSettingsDialog::Type_Global));
    15441544}
    15451545
     
    15471547{
    15481548    /* Remove instance if exist: */
    1549     delete m_settings.take(UISettingsDialog::Type_Global);
     1549    delete m_settings.take(UIAdvancedSettingsDialog::Type_Global);
    15501550}
    15511551
     
    15721572
    15731573    /* Create instance if not yet created: */
    1574     if (!m_settings.contains(UISettingsDialog::Type_Machine))
    1575     {
    1576         m_settings[UISettingsDialog::Type_Machine] = new UISettingsDialogMachine(activeMachineWindow(),
    1577                                                                                  uiCommon().managedVMUuid(),
    1578                                                                                  actionPool(),
    1579                                                                                  strCategory,
    1580                                                                                  strControl);
    1581         connect(m_settings[UISettingsDialog::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,
    15821582                this, &UIMachineLogic::sltCloseSettingsDialog);
    1583         m_settings.value(UISettingsDialog::Type_Machine)->load();
     1583        m_settings.value(UIAdvancedSettingsDialog::Type_Machine)->load();
    15841584    }
    15851585
    15861586    /* Expose instance: */
    1587     UIDesktopWidgetWatchdog::restoreWidget(m_settings.value(UISettingsDialog::Type_Machine));
     1587    UIDesktopWidgetWatchdog::restoreWidget(m_settings.value(UIAdvancedSettingsDialog::Type_Machine));
    15881588}
    15891589
     
    15911591{
    15921592    /* Remove instance if exist: */
    1593     delete m_settings.take(UISettingsDialog::Type_Machine);
     1593    delete m_settings.take(UIAdvancedSettingsDialog::Type_Machine);
    15941594}
    15951595
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.h

    r101719 r102138  
    3535#include "QIWithRetranslateUI.h"
    3636#include "UIExtraDataDefs.h"
    37 #include "UISettingsDialog.h"
     37#include "UIAdvancedSettingsDialog.h"
    3838
    3939/* Forward declarations: */
     
    398398
    399399    /** Holds the map of settings dialogs. */
    400     QMap<UISettingsDialog::DialogType, UISettingsDialog*>  m_settings;
     400    QMap<UIAdvancedSettingsDialog::DialogType, UIAdvancedSettingsDialog*>  m_settings;
    401401
    402402    /** Holds the log viewer dialog instance. */
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette