VirtualBox

Changeset 50907 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Mar 27, 2014 3:00:16 PM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
93031
Message:

FE/Qt: Selector UI: VM item stuff: Integrate ConfigurationAccessLevel stuff (provided by r93030).

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  
    17211721            return !m_pChooser->isGroupSavingInProgress() &&
    17221722                   items.size() == 1 &&
    1723                    pItem->reconfigurable();
     1723                   pItem->configurationAccessLevel() != ConfigurationAccessLevel_Null;
    17241724        }
    17251725        case UIActionIndexSelector_Simple_Machine_Clone:
  • trunk/src/VBox/Frontends/VirtualBox/src/selector/UIVMItem.cpp

    r45054 r50907  
    257257        }
    258258
    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;
    262265
    263266        /* Should we show details for this item? */
     
    287290#endif
    288291
    289         /* Should we allow reconfiguration for this item? */
    290         m_fReconfigurable = false;
     292        /* Set configuration access level to NULL: */
     293        m_configurationAccessLevel = ConfigurationAccessLevel_Null;
    291294
    292295        /* Should we show details for this item? */
  • trunk/src/VBox/Frontends/VirtualBox/src/selector/UIVMItem.h

    r45054 r50907  
    2424#include <QMimeData>
    2525
     26/* GUI includes: */
     27#include "UISettingsDefs.h"
     28
    2629/* COM includes: */
    2730#include "COMEnums.h"
    2831#include "CVirtualBoxErrorInfo.h"
    2932#include "CMachine.h"
     33
     34/* Using declarations: */
     35using namespace UISettingsDefs;
    3036
    3137class UIVMItem
     
    6571    bool switchTo();
    6672
    67     bool reconfigurable() const { return m_fReconfigurable; }
    6873    bool hasDetails() const { return m_fHasDetails; }
     74
     75    /** Returns configuration access level. */
     76    ConfigurationAccessLevel configurationAccessLevel() const { return m_configurationAccessLevel; }
    6977
    7078    static bool isItemEditable(UIVMItem *pItem);
     
    98106    ULONG m_pid;
    99107
    100     bool m_fReconfigurable;
    101108    bool m_fHasDetails;
     109
     110    /** Holds configuration access level. */
     111    ConfigurationAccessLevel m_configurationAccessLevel;
    102112};
    103113
  • trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsElement.cpp

    r50871 r50907  
    621621    QPoint point = pEvent->pos().toPoint();
    622622    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)
    624625    {
    625626        m_fNameHovered = fNameHovered;
  • trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsSet.cpp

    r50843 r50907  
    3333UIGDetailsSet::UIGDetailsSet(UIGDetailsItem *pParent)
    3434    : UIGDetailsItem(pParent)
    35     , m_fElementNameHoverable(false)
     35    , m_pMachineItem(0)
    3636    , m_fHasDetails(false)
     37    , m_configurationAccessLevel(ConfigurationAccessLevel_Null)
    3738    , m_fFullSet(true)
    3839    , m_pBuildStep(0)
     
    6162{
    6263    /* 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();
    6667    m_fFullSet = fFullSet;
    6768    m_settings = settings;
     
    555556        return;
    556557
     558    /* Recache properties: */
     559    m_configurationAccessLevel = m_pMachineItem->configurationAccessLevel();
     560
    557561    /* Cleanup build-step: */
    558562    delete m_pBuildStep;
  • trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsSet.h

    r50041 r50907  
    2323#include "UIGDetailsItem.h"
    2424#include "UIDefs.h"
     25#include "UISettingsDefs.h"
    2526
    2627/* COM includes: */
     
    3031/* Forward declarations: */
    3132class UIVMItem;
     33
     34/* Using declarations: */
     35using namespace UISettingsDefs;
    3236
    3337/* Details set
     
    5256    /* API: Machine stuff: */
    5357    const CMachine& machine() const { return m_machine; }
    54     bool elementNameHoverable() const { return m_fElementNameHoverable; }
    5558    bool hasDetails() const { return m_fHasDetails; }
     59
     60    /** Returns configuration access level. */
     61    ConfigurationAccessLevel configurationAccessLevel() const { return m_configurationAccessLevel; }
    5662
    5763private slots:
     
    101107    UIGDetailsElement* createElement(DetailsElementType elementType, bool fOpen);
    102108
     109    /** Machine-item this set built for. */
     110    UIVMItem *m_pMachineItem;
     111
    103112    /* Main variables: */
    104113    CMachine m_machine;
    105114    QMap<int, UIGDetailsItem*> m_elements;
    106     bool m_fElementNameHoverable;
    107115    bool m_fHasDetails;
     116
     117    /** Holds configuration access level. */
     118    ConfigurationAccessLevel m_configurationAccessLevel;
    108119
    109120    /* Prepare variables: */
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