VirtualBox

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


Ignore:
Timestamp:
Dec 6, 2021 9:29:59 AM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
148665
Message:

FE/Qt: bugref:9371. Splitting guest table's toolbar into two.

Location:
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerGuestTable.cpp

    r92753 r92754  
    155155    , m_comMachine(comMachine)
    156156    , m_pGuestSessionPanel(0)
     157    , m_pSessionWidgetToggleToolBar(0)
    157158{
    158159    if (!m_comMachine.isNull())
     
    644645    if (m_pToolBar && m_pActionPool)
    645646    {
    646         m_pToolBar->addAction(m_pActionPool->action(UIActionIndex_M_FileManager_T_GuestSession));
    647         m_pToolBar->addSeparator();
    648647        m_pToolBar->addAction(m_pActionPool->action(UIActionIndex_M_FileManager_S_Guest_GoUp));
    649648        m_pToolBar->addAction(m_pActionPool->action(UIActionIndex_M_FileManager_S_Guest_GoHome));
     
    673672        m_pActionPool->action(UIActionIndex_M_FileManager_S_Guest_Paste)->setVisible(false);
    674673    }
     674
    675675    setSelectionDependentActionsEnabled(false);
    676676    setPasteActionEnabled(false);
     677
     678    m_pSessionWidgetToggleToolBar = new QIToolBar;
     679    if (m_pSessionWidgetToggleToolBar && toolBarLayout())
     680    {
     681        m_pSessionWidgetToggleToolBar->addAction(m_pActionPool->action(UIActionIndex_M_FileManager_T_GuestSession));
     682        QWidget *pSpaceWidget = new QWidget;
     683        pSpaceWidget->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred);
     684        toolBarLayout()->addWidget(pSpaceWidget);
     685        toolBarLayout()->addWidget(m_pSessionWidgetToggleToolBar);
     686    }
    677687}
    678688
  • trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerGuestTable.h

    r92753 r92754  
    142142    CEventListener m_comGuestListener;
    143143    UIFileManagerGuestSessionPanel     *m_pGuestSessionPanel;
     144    /** Hosts only a single action. We seperate this action since others
     145      * are contained in the main toolbar which is dynamically disabled/enabled. */
     146    QIToolBar               *m_pSessionWidgetToggleToolBar;
    144147};
    145148
  • trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerTable.cpp

    r92733 r92754  
    711711    , m_pWarningLabel(0)
    712712    , m_pathSeparator('/')
     713    , m_pToolBarLayout(0)
    713714{
    714715    prepareObjects();
     
    737738    setLayout(m_pMainLayout);
    738739
    739     m_pToolBar = new QIToolBar;
    740     if (m_pToolBar)
    741         m_pMainLayout->addWidget(m_pToolBar, 0, 0, 1, 7);
     740    m_pToolBarLayout = new QHBoxLayout;
     741    if (m_pToolBarLayout)
     742    {
     743        m_pToolBarLayout->setSpacing(0);
     744        m_pToolBarLayout->setContentsMargins(0, 0, 0, 0);
     745
     746        m_pToolBar = new QIToolBar;
     747        if (m_pToolBar)
     748            m_pToolBarLayout->addWidget(m_pToolBar);
     749
     750        m_pMainLayout->addLayout(m_pToolBarLayout, 0, 0, 1, 7);
     751    }
    742752
    743753    m_pLocationLabel = new QILabel;
     
    14461456}
    14471457
     1458QHBoxLayout* UIFileManagerTable::toolBarLayout()
     1459{
     1460    return m_pToolBarLayout;
     1461}
     1462
    14481463bool UIFileManagerTable::event(QEvent *pEvent)
    14491464{
  • trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerTable.h

    r92733 r92754  
    236236    UICustomFileSystemItem*   rootItem();
    237237    void             setPathSeparator(const QChar &separator);
     238    QHBoxLayout*     toolBarLayout();
    238239
    239240    QILabel                 *m_pLocationLabel;
     
    303304    QILabel         *m_pWarningLabel;
    304305    QChar            m_pathSeparator;
     306    QHBoxLayout     *m_pToolBarLayout;
    305307    friend class     UICustomFileSystemModel;
    306308};
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