Changeset 71894 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 18, 2018 1:02:05 PM (7 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r71885 r71894 440 440 VirtualBox_QT_MOCHDRS = \ 441 441 src/UITakeSnapshotDialog.h \ 442 src/extensions/QIFlowLayout.h \443 442 src/extensions/QIMenu.h \ 444 443 src/extensions/QIStatusBar.h \ … … 649 648 src/extensions/QIDialogButtonBox.h \ 650 649 src/extensions/QIFileDialog.h \ 650 src/extensions/QIFlowLayout.h \ 651 651 src/extensions/QILabel.h \ 652 652 src/extensions/QILabelSeparator.h \ … … 732 732 src/extensions/QIDialogButtonBox.h \ 733 733 src/extensions/QIFileDialog.h \ 734 src/extensions/QIFlowLayout.h \ 734 735 src/extensions/QILabel.h \ 735 736 src/extensions/QILabelSeparator.h \ … … 915 916 src/main.cpp \ 916 917 src/UITakeSnapshotDialog.cpp \ 917 src/extensions/QIFlowLayout.cpp \918 918 src/extensions/QIMenu.cpp \ 919 919 src/extensions/QIStatusBar.cpp \ … … 1158 1158 src/extensions/QIDialogButtonBox.cpp \ 1159 1159 src/extensions/QIFileDialog.cpp \ 1160 src/extensions/QIFlowLayout.cpp \ 1160 1161 src/extensions/QILabel.cpp \ 1161 1162 src/extensions/QILabelSeparator.cpp \ … … 1268 1269 src/extensions/QIDialogButtonBox.cpp \ 1269 1270 src/extensions/QIFileDialog.cpp \ 1271 src/extensions/QIFlowLayout.cpp \ 1270 1272 src/extensions/QILabel.cpp \ 1271 1273 src/extensions/QILabelSeparator.cpp \ -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIFlowLayout.cpp
r67383 r71894 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - Q IFlowLayout class implementation.3 * VBox Qt GUI - Qt extensions: QIFlowLayout class implementation. 4 4 */ 5 5 6 6 /* 7 * Copyright (C) 2017 Oracle Corporation7 * Copyright (C) 2017-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 265 265 return m_iSpacingV >= 0 ? m_iSpacingV : smartSpacing(QStyle::PM_LayoutVerticalSpacing); 266 266 } 267 -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIFlowLayout.h
r67369 r71894 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - Q IFlowLayout class declaration.3 * VBox Qt GUI - Qt extensions: QIFlowLayout class declaration. 4 4 */ 5 5 6 6 /* 7 * Copyright (C) 2017 Oracle Corporation7 * Copyright (C) 2017-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 23 23 #include <QStyle> 24 24 25 /* GUI includes: */ 26 #include "UILibraryDefs.h" 25 27 26 28 /** QLayout extension providing GUI with the possibility to build flow-layout. … … 29 31 * It is also takes into account that some of the children can be expandable 30 32 * horizontally allowing them to grow up to all the available width. */ 31 class QIFlowLayout : public QLayout33 class SHARED_LIBRARY_STUFF QIFlowLayout : public QLayout 32 34 { 33 35 Q_OBJECT; … … 51 53 52 54 /** Holds the layout item. */ 53 QLayoutItem *item;55 QLayoutItem *item; 54 56 /** Holds the layout item expand policy. */ 55 ExpandPolicy policy;57 ExpandPolicy policy; 56 58 /** Holds the layout item desired width. */ 57 int width;59 int width; 58 60 }; 59 61 /** Layout item data list. */ … … 130 132 131 133 #endif /* !___QIFlowLayout_h___ */ 132
Note:
See TracChangeset
for help on using the changeset viewer.