Changeset 92754 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Dec 6, 2021 9:29:59 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148665
- 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 155 155 , m_comMachine(comMachine) 156 156 , m_pGuestSessionPanel(0) 157 , m_pSessionWidgetToggleToolBar(0) 157 158 { 158 159 if (!m_comMachine.isNull()) … … 644 645 if (m_pToolBar && m_pActionPool) 645 646 { 646 m_pToolBar->addAction(m_pActionPool->action(UIActionIndex_M_FileManager_T_GuestSession));647 m_pToolBar->addSeparator();648 647 m_pToolBar->addAction(m_pActionPool->action(UIActionIndex_M_FileManager_S_Guest_GoUp)); 649 648 m_pToolBar->addAction(m_pActionPool->action(UIActionIndex_M_FileManager_S_Guest_GoHome)); … … 673 672 m_pActionPool->action(UIActionIndex_M_FileManager_S_Guest_Paste)->setVisible(false); 674 673 } 674 675 675 setSelectionDependentActionsEnabled(false); 676 676 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 } 677 687 } 678 688 -
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerGuestTable.h
r92753 r92754 142 142 CEventListener m_comGuestListener; 143 143 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; 144 147 }; 145 148 -
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerTable.cpp
r92733 r92754 711 711 , m_pWarningLabel(0) 712 712 , m_pathSeparator('/') 713 , m_pToolBarLayout(0) 713 714 { 714 715 prepareObjects(); … … 737 738 setLayout(m_pMainLayout); 738 739 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 } 742 752 743 753 m_pLocationLabel = new QILabel; … … 1446 1456 } 1447 1457 1458 QHBoxLayout* UIFileManagerTable::toolBarLayout() 1459 { 1460 return m_pToolBarLayout; 1461 } 1462 1448 1463 bool UIFileManagerTable::event(QEvent *pEvent) 1449 1464 { -
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerTable.h
r92733 r92754 236 236 UICustomFileSystemItem* rootItem(); 237 237 void setPathSeparator(const QChar &separator); 238 QHBoxLayout* toolBarLayout(); 238 239 239 240 QILabel *m_pLocationLabel; … … 303 304 QILabel *m_pWarningLabel; 304 305 QChar m_pathSeparator; 306 QHBoxLayout *m_pToolBarLayout; 305 307 friend class UICustomFileSystemModel; 306 308 };
Note:
See TracChangeset
for help on using the changeset viewer.