- Timestamp:
- Nov 20, 2023 5:32:01 PM (17 months ago)
- svn:sync-xref-src-repo-rev:
- 160287
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIGuestOSType.cpp
r102153 r102162 63 63 m_guestOSTypes.append(UIGuestOSType(comType)); 64 64 m_typeIdIndexMap[m_guestOSTypes.last().getId()] = m_guestOSTypes.size() - 1; 65 QPair<QString, QString> family = QPair<QString, QString>(m_guestOSTypes.last().getFamilyId(), m_guestOSTypes.last().getFamilyDescription()); 65 const QString strFamilyId = m_guestOSTypes.last().getFamilyId(); 66 const QString strFamilyDesc = m_guestOSTypes.last().getFamilyDescription(); 67 const QString strSubtype = m_guestOSTypes.last().getSubtype(); 68 QPair<QString, QString> family = QPair<QString, QString>(strFamilyId, strFamilyDesc); 66 69 if (!m_guestOSFamilies.contains(family)) 67 70 m_guestOSFamilies << family; 68 } 69 70 UIGuestOSTypeManager::UIGuestOSFamilyInfo UIGuestOSTypeManager::getFamilies() const 71 { 72 return m_guestOSFamilies; 73 } 74 75 QStringList UIGuestOSTypeManager::getSubtypeListForFamilyId(const QString &strFamilyId) const 76 { 71 72 /* Acquire arch type: */ 73 const KPlatformArchitecture enmArch = m_guestOSTypes.last().getPlatformArchitecture(); 74 /* Cache family arch type; That will be x86, ARM or None (for *any*): */ 75 if (!m_guestOSFamilyArch.contains(strFamilyId)) 76 m_guestOSFamilyArch[strFamilyId] = enmArch; 77 else if (m_guestOSFamilyArch.value(strFamilyId) != enmArch) 78 m_guestOSFamilyArch[strFamilyId] = KPlatformArchitecture_None; 79 /* Cache subtype arch type; That will be x86, ARM or None (for *any*): */ 80 if (!m_guestOSSubtypeArch.contains(strSubtype)) 81 m_guestOSSubtypeArch[strSubtype] = enmArch; 82 else if (m_guestOSSubtypeArch.value(strSubtype) != enmArch) 83 m_guestOSSubtypeArch[strSubtype] = KPlatformArchitecture_None; 84 } 85 86 UIGuestOSTypeManager::UIGuestOSFamilyInfo 87 UIGuestOSTypeManager::getFamilies(KPlatformArchitecture enmArch /* = KPlatformArchitecture_None */) const 88 { 89 /* Return all families by default: */ 90 if (enmArch == KPlatformArchitecture_None) 91 return m_guestOSFamilies; 92 93 /* Otherwise we'll have to prepare list by arch type: */ 94 UIGuestOSTypeManager::UIGuestOSFamilyInfo families; 95 foreach (const UIGuestInfoPair &family, m_guestOSFamilies) 96 { 97 const KPlatformArchitecture enmCurrentArch = m_guestOSFamilyArch.value(family.first, KPlatformArchitecture_Max); 98 if ( enmCurrentArch == enmArch 99 || enmCurrentArch == KPlatformArchitecture_None) 100 families << family; 101 } 102 return families; 103 } 104 105 QStringList 106 UIGuestOSTypeManager::getSubtypeListForFamilyId(const QString &strFamilyId, 107 KPlatformArchitecture enmArch /* = KPlatformArchitecture_None */) const 108 { 109 /* Prepare list by arch type: */ 77 110 QStringList subtypes; 78 111 foreach (const UIGuestOSType &type, m_guestOSTypes) … … 83 116 if (strSubtype.isEmpty() || subtypes.contains(strSubtype)) 84 117 continue; 85 subtypes << strSubtype; 118 const KPlatformArchitecture enmCurrentArch = m_guestOSSubtypeArch.value(strSubtype, KPlatformArchitecture_Max); 119 if ( enmCurrentArch == enmArch 120 || enmArch == KPlatformArchitecture_None 121 || enmCurrentArch == KPlatformArchitecture_None) 122 subtypes << strSubtype; 86 123 } 87 124 return subtypes; 88 125 } 89 126 90 UIGuestOSTypeManager::UIGuestOSTypeInfo UIGuestOSTypeManager::getTypeListForFamilyId(const QString &strFamilyId) const 127 UIGuestOSTypeManager::UIGuestOSTypeInfo 128 UIGuestOSTypeManager::getTypeListForFamilyId(const QString &strFamilyId, 129 KPlatformArchitecture enmArch /* = KPlatformArchitecture_None */) const 91 130 { 92 131 UIGuestOSTypeInfo typeInfoList; … … 98 137 if (typeInfoList.contains(info)) 99 138 continue; 100 typeInfoList << info; 139 if ( enmArch == KPlatformArchitecture_None 140 || type.getPlatformArchitecture() == enmArch) 141 typeInfoList << info; 101 142 } 102 143 return typeInfoList; 103 144 } 104 145 105 UIGuestOSTypeManager::UIGuestOSTypeInfo UIGuestOSTypeManager::getTypeListForSubtype(const QString &strSubtype) const 146 UIGuestOSTypeManager::UIGuestOSTypeInfo 147 UIGuestOSTypeManager::getTypeListForSubtype(const QString &strSubtype, 148 KPlatformArchitecture enmArch /* = KPlatformArchitecture_None */) const 106 149 { 107 150 UIGuestOSTypeInfo typeInfoList; … … 115 158 if (typeInfoList.contains(info)) 116 159 continue; 117 typeInfoList << info; 160 if ( enmArch == KPlatformArchitecture_None 161 || type.getPlatformArchitecture() == enmArch) 162 typeInfoList << info; 118 163 } 119 164 return typeInfoList; -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIGuestOSType.h
r102153 r102162 114 114 115 115 /** Returns a list of all families (id and description). */ 116 UIGuestOSFamilyInfo getFamilies( ) const;116 UIGuestOSFamilyInfo getFamilies(KPlatformArchitecture enmArch = KPlatformArchitecture_None) const; 117 117 /** Returns the list of subtypes for @p strFamilyId. This may be an empty list. */ 118 QStringList getSubtypeListForFamilyId(const QString &strFamilyId) const; 118 QStringList getSubtypeListForFamilyId(const QString &strFamilyId, 119 KPlatformArchitecture enmArch = KPlatformArchitecture_None) const; 119 120 /** Returns a list of OS types for the @p strFamilyId. */ 120 UIGuestOSTypeInfo getTypeListForFamilyId(const QString &strFamilyId) const; 121 UIGuestOSTypeInfo getTypeListForFamilyId(const QString &strFamilyId, 122 KPlatformArchitecture enmArch = KPlatformArchitecture_None) const; 121 123 /** Returns a list of OS types for the @p strSubtype. */ 122 UIGuestOSTypeInfo getTypeListForSubtype(const QString &strSubtype) const; 124 UIGuestOSTypeInfo getTypeListForSubtype(const QString &strSubtype, 125 KPlatformArchitecture enmArch = KPlatformArchitecture_None) const; 123 126 124 127 static bool isDOSType(const QString &strOSTypeId); … … 155 158 /** First item of the pair is family id and the 2nd is family description. */ 156 159 UIGuestOSFamilyInfo m_guestOSFamilies; 160 161 /** Caches arch types on per-family basis. */ 162 QMap<QString, KPlatformArchitecture> m_guestOSFamilyArch; 163 /** Caches arch types on per-subtype basis. */ 164 QMap<QString, KPlatformArchitecture> m_guestOSSubtypeArch; 157 165 }; 158 166 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UINameAndSystemEditor.cpp
r102152 r102162 303 303 } 304 304 305 void UINameAndSystemEditor::handleFilterChange() 306 { 307 populateFamilyCombo(); 308 } 309 305 310 void UINameAndSystemEditor::sltSelectedEditionsChanged(int) 306 311 { … … 329 334 m_strDistribution = strDistribution; 330 335 336 /* Get current arch type, usually we'd default to x86, but here 'None' meaningful as well: */ 337 const KPlatformArchitecture enmArch = optionalFlags().contains("arch") 338 ? optionalFlags().value("arch").value<KPlatformArchitecture>() 339 : KPlatformArchitecture_None; 340 331 341 /* If distribution list is empty, all the types of the family are added to type combo: */ 332 342 const UIGuestOSTypeManager::UIGuestOSTypeInfo types 333 343 = m_strDistribution.isEmpty() 334 ? uiCommon().guestOSTypeManager().getTypeListForFamilyId(m_strFamilyId )335 : uiCommon().guestOSTypeManager().getTypeListForSubtype(m_strDistribution );344 ? uiCommon().guestOSTypeManager().getTypeListForFamilyId(m_strFamilyId, enmArch) 345 : uiCommon().guestOSTypeManager().getTypeListForSubtype(m_strDistribution, enmArch); 336 346 337 347 /* Save the most recently used item: */ … … 600 610 AssertPtrReturnVoid(m_pComboFamily); 601 611 612 /* Get current arch type, usually we'd default to x86, but here 'None' meaningful as well: */ 613 const KPlatformArchitecture enmArch = optionalFlags().contains("arch") 614 ? optionalFlags().value("arch").value<KPlatformArchitecture>() 615 : KPlatformArchitecture_None; 616 602 617 /* Acquire family IDs: */ 603 const UIGuestOSTypeManager::UIGuestOSFamilyInfo &families = uiCommon().guestOSTypeManager().getFamilies();618 const UIGuestOSTypeManager::UIGuestOSFamilyInfo families = uiCommon().guestOSTypeManager().getFamilies(enmArch); 604 619 605 620 /* Block signals initially and clear the combo: */ … … 629 644 AssertPtrReturnVoid(m_pComboDistribution); 630 645 646 /* Get current arch type, usually we'd default to x86, but here 'None' meaningful as well: */ 647 const KPlatformArchitecture enmArch = optionalFlags().contains("arch") 648 ? optionalFlags().value("arch").value<KPlatformArchitecture>() 649 : KPlatformArchitecture_None; 650 631 651 /* Acquire a list of suitable sub-types: */ 632 const QStringList distributions = uiCommon().guestOSTypeManager().getSubtypeListForFamilyId(m_strFamilyId );652 const QStringList distributions = uiCommon().guestOSTypeManager().getSubtypeListForFamilyId(m_strFamilyId, enmArch); 633 653 m_pLabelDistribution->setEnabled(!distributions.isEmpty()); 634 654 m_pComboDistribution->setEnabled(!distributions.isEmpty()); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UINameAndSystemEditor.h
r101713 r102162 142 142 /** Handles translation event. */ 143 143 virtual void retranslateUi() RT_OVERRIDE; 144 145 /** Handles filter change. 146 * Reimplement this in subclass to handle various filter changes, 147 * like experience mode change or manual filter editor change. */ 148 virtual void handleFilterChange() RT_OVERRIDE; 144 149 145 150 private slots:
Note:
See TracChangeset
for help on using the changeset viewer.