Changeset 101015 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Sep 5, 2023 7:05:23 AM (16 months ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r101013 r101015 828 828 src/globals/UIMessageCenter.h \ 829 829 src/globals/UIModalWindowManager.h \ 830 src/globals/UIPaneContainer.h \831 830 src/globals/UIPopupCenter.h \ 832 831 src/globals/UIProgressEventHandler.h \ … … 963 962 src/widgets/UIMediumSizeEditor.h \ 964 963 src/widgets/UIMenuBar.h \ 964 src/widgets/UIPaneContainer.h \ 965 965 src/widgets/UIPopupBox.h \ 966 966 src/widgets/UIPopupPane.h \ … … 1409 1409 src/globals/UIModalWindowManager.cpp \ 1410 1410 src/globals/UIMousePointerShapeData.cpp \ 1411 src/globals/UIPaneContainer.cpp \1412 1411 src/globals/UIPathOperations.cpp \ 1413 1412 src/globals/UIPopupCenter.cpp \ … … 1550 1549 src/widgets/UIMediumSizeEditor.cpp \ 1551 1550 src/widgets/UIMenuBar.cpp \ 1551 src/widgets/UIPaneContainer.cpp \ 1552 1552 src/widgets/UIPopupBox.cpp \ 1553 1553 src/widgets/UIPopupPane.cpp \ -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPaneContainer.cpp
r101014 r101015 65 65 AssertReturnVoid(pLayout); 66 66 pLayout->setContentsMargins(0, 0, 0, 0); 67 68 /* Add the tab widget: */ 67 69 m_pTabWidget = new QTabWidget(); 68 70 connect(m_pTabWidget, &QTabWidget::currentChanged, this, &UIPaneContainer::sigCurrentTabChanged); 69 71 AssertReturnVoid(m_pTabWidget); 70 72 pLayout->addWidget(m_pTabWidget); 73 71 74 /* Add a button to close the tab widget: */ 72 75 m_pCloseButton = new QIToolButton; … … 74 77 m_pCloseButton->setIcon(UIIconPool::iconSet(":/close_16px.png")); 75 78 connect(m_pCloseButton, &QIToolButton::clicked, this, &UIPaneContainer::sltHide); 76 77 79 m_pTabWidget->setCornerWidget(m_pCloseButton); 78 80 } -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPaneContainer.h
r101014 r101015 26 26 */ 27 27 28 #ifndef FEQT_INCLUDED_SRC_ globals_UIPaneContainer_h29 #define FEQT_INCLUDED_SRC_ globals_UIPaneContainer_h28 #ifndef FEQT_INCLUDED_SRC_widgets_UIPaneContainer_h 29 #define FEQT_INCLUDED_SRC_widgets_UIPaneContainer_h 30 30 #ifndef RT_WITHOUT_PRAGMA_ONCE 31 31 # pragma once … … 76 76 }; 77 77 78 #endif /* !FEQT_INCLUDED_SRC_ globals_UIPaneContainer_h */78 #endif /* !FEQT_INCLUDED_SRC_widgets_UIPaneContainer_h */
Note:
See TracChangeset
for help on using the changeset viewer.