Changeset 50907 in vbox for trunk/src/VBox
- Timestamp:
- Mar 27, 2014 3:00:16 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93031
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/selector
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/selector/UISelectorWindow.cpp
r50092 r50907 1721 1721 return !m_pChooser->isGroupSavingInProgress() && 1722 1722 items.size() == 1 && 1723 pItem-> reconfigurable();1723 pItem->configurationAccessLevel() != ConfigurationAccessLevel_Null; 1724 1724 } 1725 1725 case UIActionIndexSelector_Simple_Machine_Clone: -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIVMItem.cpp
r45054 r50907 257 257 } 258 258 259 /* Should we allow reconfiguration for this item? */ 260 m_fReconfigurable = m_machineState != KMachineState_Stuck && 261 VBoxGlobal::shouldWeAllowMachineReconfiguration(m_machine); 259 /* Determine configuration access level: */ 260 m_configurationAccessLevel = ::configurationAccessLevel(m_sessionState, m_machineState); 261 /* Also take restrictions into account: */ 262 if ( m_configurationAccessLevel != ConfigurationAccessLevel_Null 263 && !VBoxGlobal::shouldWeAllowMachineReconfiguration(m_machine)) 264 m_configurationAccessLevel = ConfigurationAccessLevel_Null; 262 265 263 266 /* Should we show details for this item? */ … … 287 290 #endif 288 291 289 /* S hould we allow reconfiguration for this item?*/290 m_ fReconfigurable = false;292 /* Set configuration access level to NULL: */ 293 m_configurationAccessLevel = ConfigurationAccessLevel_Null; 291 294 292 295 /* Should we show details for this item? */ -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIVMItem.h
r45054 r50907 24 24 #include <QMimeData> 25 25 26 /* GUI includes: */ 27 #include "UISettingsDefs.h" 28 26 29 /* COM includes: */ 27 30 #include "COMEnums.h" 28 31 #include "CVirtualBoxErrorInfo.h" 29 32 #include "CMachine.h" 33 34 /* Using declarations: */ 35 using namespace UISettingsDefs; 30 36 31 37 class UIVMItem … … 65 71 bool switchTo(); 66 72 67 bool reconfigurable() const { return m_fReconfigurable; }68 73 bool hasDetails() const { return m_fHasDetails; } 74 75 /** Returns configuration access level. */ 76 ConfigurationAccessLevel configurationAccessLevel() const { return m_configurationAccessLevel; } 69 77 70 78 static bool isItemEditable(UIVMItem *pItem); … … 98 106 ULONG m_pid; 99 107 100 bool m_fReconfigurable;101 108 bool m_fHasDetails; 109 110 /** Holds configuration access level. */ 111 ConfigurationAccessLevel m_configurationAccessLevel; 102 112 }; 103 113 -
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsElement.cpp
r50871 r50907 621 621 QPoint point = pEvent->pos().toPoint(); 622 622 bool fNameHovered = QRect(QPoint(iElementNameX, iElementNameY), m_nameSize).contains(point); 623 if (m_pSet->elementNameHoverable() && m_fNameHovered != fNameHovered) 623 if ( m_pSet->configurationAccessLevel() != ConfigurationAccessLevel_Null 624 && m_fNameHovered != fNameHovered) 624 625 { 625 626 m_fNameHovered = fNameHovered; -
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsSet.cpp
r50843 r50907 33 33 UIGDetailsSet::UIGDetailsSet(UIGDetailsItem *pParent) 34 34 : UIGDetailsItem(pParent) 35 , m_ fElementNameHoverable(false)35 , m_pMachineItem(0) 36 36 , m_fHasDetails(false) 37 , m_configurationAccessLevel(ConfigurationAccessLevel_Null) 37 38 , m_fFullSet(true) 38 39 , m_pBuildStep(0) … … 61 62 { 62 63 /* Remember passed arguments: */ 63 m_ machine = pMachineItem->machine();64 m_ fElementNameHoverable = pMachineItem->reconfigurable();65 m_fHasDetails = pMachineItem->hasDetails();64 m_pMachineItem = pMachineItem; 65 m_machine = m_pMachineItem->machine(); 66 m_fHasDetails = m_pMachineItem->hasDetails(); 66 67 m_fFullSet = fFullSet; 67 68 m_settings = settings; … … 555 556 return; 556 557 558 /* Recache properties: */ 559 m_configurationAccessLevel = m_pMachineItem->configurationAccessLevel(); 560 557 561 /* Cleanup build-step: */ 558 562 delete m_pBuildStep; -
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsSet.h
r50041 r50907 23 23 #include "UIGDetailsItem.h" 24 24 #include "UIDefs.h" 25 #include "UISettingsDefs.h" 25 26 26 27 /* COM includes: */ … … 30 31 /* Forward declarations: */ 31 32 class UIVMItem; 33 34 /* Using declarations: */ 35 using namespace UISettingsDefs; 32 36 33 37 /* Details set … … 52 56 /* API: Machine stuff: */ 53 57 const CMachine& machine() const { return m_machine; } 54 bool elementNameHoverable() const { return m_fElementNameHoverable; }55 58 bool hasDetails() const { return m_fHasDetails; } 59 60 /** Returns configuration access level. */ 61 ConfigurationAccessLevel configurationAccessLevel() const { return m_configurationAccessLevel; } 56 62 57 63 private slots: … … 101 107 UIGDetailsElement* createElement(DetailsElementType elementType, bool fOpen); 102 108 109 /** Machine-item this set built for. */ 110 UIVMItem *m_pMachineItem; 111 103 112 /* Main variables: */ 104 113 CMachine m_machine; 105 114 QMap<int, UIGDetailsItem*> m_elements; 106 bool m_fElementNameHoverable;107 115 bool m_fHasDetails; 116 117 /** Holds configuration access level. */ 118 ConfigurationAccessLevel m_configurationAccessLevel; 108 119 109 120 /* Prepare variables: */
Note:
See TracChangeset
for help on using the changeset viewer.