VirtualBox

Changeset 102796 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Jan 9, 2024 2:22:00 PM (15 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
160977
Message:

FE/Qt: bugref:10501. Adding a context menu item to the overview widget to toogle cloud vms' visibility.

Location:
trunk/src/VBox/Frontends/VirtualBox/src/activity/overview
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/activity/overview/UIVMActivityOverviewWidget.cpp

    r101561 r102796  
    291291    void dataUpdate();
    292292    void setNotRunningVMVisibility(bool fShow);
     293    void setCloudVMVisibility(bool fShow);
    293294
    294295protected:
     
    300301
    301302    bool m_fShowNotRunningVMs;
     303    bool m_fShowCloudVMs;
    302304};
    303305
     
    899901void UIActivityOverviewProxyModel::setNotRunningVMVisibility(bool fShow)
    900902{
     903    if (m_fShowNotRunningVMs == fShow)
     904        return;
    901905    m_fShowNotRunningVMs = fShow;
    902906    invalidateFilter();
    903907}
    904908
     909void UIActivityOverviewProxyModel::setCloudVMVisibility(bool fShow)
     910{
     911    if (m_fShowCloudVMs == fShow)
     912        return;
     913    m_fShowCloudVMs = fShow;
     914    invalidateFilter();
     915}
    905916
    906917bool UIActivityOverviewProxyModel::lessThan(const QModelIndex &sourceLeftIndex, const QModelIndex &sourceRightIndex) const
     
    13881399    , m_iSortIndicatorWidth(0)
    13891400    , m_fShowNotRunningVMs(false)
     1401    , m_fShowCloudVMs(false)
    13901402{
    13911403    prepare();
     
    16531665        menu.addAction(m_pVMActivityMonitorAction);
    16541666    menu.addSeparator();
     1667
    16551668    QAction *pHideNotRunningAction =
    16561669        menu.addAction(UIVMActivityOverviewWidget::tr("List all virtual machines"));
     
    16591672    connect(pHideNotRunningAction, &QAction::triggered,
    16601673            this, &UIVMActivityOverviewWidget::sltNotRunningVMVisibility);
     1674
     1675    QAction *pShowCloudVMsAction =
     1676        menu.addAction(UIVMActivityOverviewWidget::tr("Show cloud virtual machines"));
     1677    pShowCloudVMsAction->setCheckable(true);
     1678    pShowCloudVMsAction->setChecked(m_fShowCloudVMs);
     1679    connect(pShowCloudVMsAction, &QAction::triggered,
     1680            this, &UIVMActivityOverviewWidget::sltCloudVMVisibility);
     1681
    16611682    menu.exec(m_pTableView->mapToGlobal(pos));
    16621683}
     
    16971718    if (m_pProxyModel)
    16981719        m_pProxyModel->setNotRunningVMVisibility(m_fShowNotRunningVMs);
     1720}
     1721
     1722void UIVMActivityOverviewWidget::sltCloudVMVisibility(bool fShow)
     1723{
     1724    m_fShowCloudVMs = fShow;
     1725    if (m_pProxyModel)
     1726        m_pProxyModel->setCloudVMVisibility(m_fShowCloudVMs);
    16991727}
    17001728
  • trunk/src/VBox/Frontends/VirtualBox/src/activity/overview/UIVMActivityOverviewWidget.h

    r98103 r102796  
    9696    void sltHandleTableSelectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
    9797    void sltNotRunningVMVisibility(bool fShow);
     98    void sltCloudVMVisibility(bool fShow);
    9899    void sltSaveSettings();
    99100    void sltClearCOMData();
     
    142143    int     m_iSortIndicatorWidth;
    143144    bool    m_fShowNotRunningVMs;
     145    bool    m_fShowCloudVMs;
    144146};
    145147
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