Changeset 60832 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 4, 2016 2:29:37 PM (9 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/widgets
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UINameAndSystemEditor.cpp
r60708 r60832 41 41 UINameAndSystemEditor::UINameAndSystemEditor(QWidget *pParent) 42 42 : QIWithRetranslateUI<QWidget>(pParent) 43 , m_fSupportsHWVirtEx(false) 44 , m_fSupportsLongMode(false) 45 , m_pLabelName(0) 46 , m_pLabelFamily(0) 47 , m_pLabelType(0) 48 , m_pIconType(0) 49 , m_pEditorName(0) 50 , m_pComboFamily(0) 51 , m_pComboType(0) 43 52 { 44 53 /* Prepare: */ -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UINameAndSystemEditor.h
r60708 r60832 93 93 private: 94 94 95 /** Holds the VM OS type. */ 96 CGuestOSType m_type; 97 /** Holds the currently chosen OS type IDs on per-family basis. */ 98 QMap<QString, QString> m_currentIds; 99 /** Holds whether host supports hardware virtualization. */ 100 bool m_fSupportsHWVirtEx; 101 /** Holds whether host supports long mode. */ 102 bool m_fSupportsLongMode; 103 95 104 /** Holds the VM name label instance. */ 96 QLabel *m_pLabelName;105 QLabel *m_pLabelName; 97 106 /** Holds the VM OS family label instance. */ 98 QLabel *m_pLabelFamily;107 QLabel *m_pLabelFamily; 99 108 /** Holds the VM OS type label instance. */ 100 QLabel *m_pLabelType;109 QLabel *m_pLabelType; 101 110 /** Holds the VM OS type icon instance. */ 102 QLabel *m_pIconType;111 QLabel *m_pIconType; 103 112 /** Holds the VM name editor instance. */ 104 QLineEdit *m_pEditorName;113 QLineEdit *m_pEditorName; 105 114 /** Holds the VM OS family combo instance. */ 106 QComboBox *m_pComboFamily;115 QComboBox *m_pComboFamily; 107 116 /** Holds the VM OS type combo instance. */ 108 QComboBox *m_pComboType; 109 110 /** Holds the VM OS type. */ 111 CGuestOSType m_type; 112 /** Holds the currently chosen OS type IDs on per-family basis. */ 113 QMap<QString, QString> m_currentIds; 114 /** Holds whether host supports hardware virtualization. */ 115 bool m_fSupportsHWVirtEx; 116 /** Holds whether host supports long mode. */ 117 bool m_fSupportsLongMode; 117 QComboBox *m_pComboType; 118 118 }; 119 119
Note:
See TracChangeset
for help on using the changeset viewer.