Changeset 71901 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Apr 18, 2018 2:50:52 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 122136
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r71899 r71901 556 556 src/widgets/UIApplianceExportEditorWidget.h \ 557 557 src/widgets/UIApplianceImportEditorWidget.h \ 558 src/widgets/UIFilePathSelector.h \559 558 src/widgets/UIEmptyFilePathSelector.h \ 560 559 src/widgets/UIHotKeyEditor.h \ … … 685 684 src/selector/UIVirtualBoxEventHandler.h \ 686 685 src/widgets/UIBootTable.h \ 686 src/widgets/UIFilePathSelector.h \ 687 687 src/widgets/UIHostComboEditor.h \ 688 688 src/widgets/UIPopupBox.h \ … … 774 774 src/selector/UIVirtualBoxEventHandler.h \ 775 775 src/widgets/UIBootTable.h \ 776 src/widgets/UIFilePathSelector.h \ 776 777 src/widgets/UIHostComboEditor.h \ 777 778 src/widgets/UIPopupBox.h \ … … 1040 1041 src/widgets/UIApplianceExportEditorWidget.cpp \ 1041 1042 src/widgets/UIApplianceImportEditorWidget.cpp \ 1042 src/widgets/UIFilePathSelector.cpp \1043 1043 src/widgets/UIEmptyFilePathSelector.cpp \ 1044 1044 src/widgets/UIHotKeyEditor.cpp \ … … 1209 1209 src/settings/UISettingsDefs.cpp \ 1210 1210 src/widgets/UIBootTable.cpp \ 1211 src/widgets/UIFilePathSelector.cpp \ 1211 1212 src/widgets/UIHostComboEditor.cpp \ 1212 1213 src/widgets/UIPopupBox.cpp \ … … 1324 1325 src/settings/UISettingsDefs.cpp \ 1325 1326 src/widgets/UIBootTable.cpp \ 1327 src/widgets/UIFilePathSelector.cpp \ 1326 1328 src/widgets/UIHostComboEditor.cpp \ 1327 1329 src/widgets/UIPopupBox.cpp \ -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIEmptyFilePathSelector.cpp
r69500 r71901 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - VirtualBox Qt extensions:UIEmptyFilePathSelector class implementation.3 * VBox Qt GUI - UIEmptyFilePathSelector class implementation. 4 4 */ 5 5 -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIEmptyFilePathSelector.h
r69500 r71901 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - VirtualBox Qt extensions:UIEmptyFilePathSelector class declaration.3 * VBox Qt GUI - UIEmptyFilePathSelector class declaration. 4 4 */ 5 5 -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFilePathSelector.cpp
r69500 r71901 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - VirtualBox Qt extensions:UIFilePathSelector class implementation.3 * VBox Qt GUI - UIFilePathSelector class implementation. 4 4 */ 5 5 6 6 /* 7 * Copyright (C) 2008-201 7Oracle Corporation7 * Copyright (C) 2008-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 30 30 # ifdef VBOX_WS_WIN 31 31 # include <QListView> 32 # endif /* VBOX_WS_WIN */32 # endif 33 33 34 34 /* GUI includes: */ … … 37 37 # include "QILineEdit.h" 38 38 # include "QIToolButton.h" 39 # include "VBoxGlobal.h" 39 40 # include "UIIconPool.h" 40 41 # include "UIFilePathSelector.h" 41 # include "VBoxGlobal.h"42 42 43 43 /* Other VBox includes: */ … … 567 567 } 568 568 } 569 -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFilePathSelector.h
r69500 r71901 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - VirtualBox Qt extensions:UIFilePathSelector class declaration.3 * VBox Qt GUI - UIFilePathSelector class declaration. 4 4 */ 5 5 6 6 /* 7 * Copyright (C) 2008-201 7Oracle Corporation7 * Copyright (C) 2008-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 22 22 #include "QIComboBox.h" 23 23 #include "QIWithRetranslateUI.h" 24 #include "UILibraryDefs.h" 24 25 25 26 /* Forward declarations: */ 26 27 class QAction; 28 class QFocusEvent; 27 29 class QHBoxLayout; 30 class QObject; 31 class QResizeEvent; 32 class QWidget; 33 class QString; 28 34 class QILabel; 29 35 class QILineEdit; 30 36 class QIToolButton; 31 37 32 33 /** QIComboBox extension providing GUI with 38 /** QIComboBox subclass providing GUI with the 34 39 * possibility to choose/reflect file/folder path. */ 35 class UIFilePathSelector: public QIWithRetranslateUI<QIComboBox>40 class SHARED_LIBRARY_STUFF UIFilePathSelector : public QIWithRetranslateUI<QIComboBox> 36 41 { 37 42 Q_OBJECT; … … 202 207 203 208 #endif /* !___UIFilePathSelector_h___ */ 204
Note:
See TracChangeset
for help on using the changeset viewer.