Changeset 105741 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Aug 20, 2024 6:17:15 PM (8 months ago)
- svn:sync-xref-src-repo-rev:
- 164450
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/machine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSystem.cpp
r105273 r105741 5 5 6 6 /* 7 * Copyright (C) 2008-202 3Oracle and/or its affiliates.7 * Copyright (C) 2008-2024 Oracle and/or its affiliates. 8 8 * 9 9 * This file is part of VirtualBox base platform packages, as … … 622 622 } 623 623 624 void UIMachineSettingsSystem::sltHandleFirmwareTypeChanged() 625 { 626 /// @todo move all the System page editors to new encapsulated UISystemSettingsEditor class, 627 /// cause we are hiding logic in separate editors, not pages, this is the 1st bit of logic. 628 m_pEditorBootOrder->setEnabled(!m_pEditorMotherboardFeatures->isEnabledEfi()); 629 } 630 624 631 void UIMachineSettingsSystem::handleFilterChange() 625 632 { … … 657 664 m_pEditorPointingHID->setEnabled(isMachineOffline()); 658 665 m_pEditorMotherboardFeatures->setEnabled(isMachineOffline()); 666 sltHandleFirmwareTypeChanged(); 659 667 660 668 /* Polish 'Processor' availability: */ … … 890 898 connect(m_pEditorMotherboardFeatures, &UIMotherboardFeaturesEditor::sigChangedIoApic, 891 899 this, &UIMachineSettingsSystem::revalidate); 900 connect(m_pEditorMotherboardFeatures, &UIMotherboardFeaturesEditor::sigChangedEfi, 901 this, &UIMachineSettingsSystem::sltHandleFirmwareTypeChanged); 892 902 893 903 /* Configure 'Processor' connections: */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSystem.h
r105273 r105741 5 5 6 6 /* 7 * Copyright (C) 2008-202 3Oracle and/or its affiliates.7 * Copyright (C) 2008-2024 Oracle and/or its affiliates. 8 8 * 9 9 * This file is part of VirtualBox base platform packages, as … … 124 124 virtual void sltRetranslateUI() RT_OVERRIDE RT_FINAL; 125 125 126 /** Handles firmware type change. */ 127 void sltHandleFirmwareTypeChanged(); 128 126 129 private: 127 130
Note:
See TracChangeset
for help on using the changeset viewer.