Changeset 66915 in vbox for trunk/src/VBox
- Timestamp:
- May 16, 2017 4:17:13 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115442
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkDetailsDialog.h
r66910 r66915 185 185 186 186 /** @name Change handling stuff. 187 * @{ */187 * @{ */ 188 188 /** Handles interface automatic configuration choice change. */ 189 189 void sltToggledButtonAutomatic(bool fChecked); … … 214 214 215 215 /** @name Prepare/cleanup cascade. 216 * @{ */216 * @{ */ 217 217 /** Prepares all. */ 218 218 void prepare(); … … 228 228 229 229 /** @name Loading stuff. 230 * @{ */230 * @{ */ 231 231 /** Loads interface data. */ 232 232 void loadDataForInterface(); … … 236 236 237 237 /** @name Change handling stuff. 238 * @{ */238 * @{ */ 239 239 /** Revalidates changes for passed @a pWidget. */ 240 240 void revalidate(QWidget *pWidget = 0); … … 246 246 247 247 /** @name General variables. 248 * @{ */248 * @{ */ 249 249 /** Holds the old data copy. */ 250 250 UIDataHostNetwork m_oldData; … … 256 256 257 257 /** @name Interface variables. 258 * @{ */258 * @{ */ 259 259 /** Holds the automatic interface configuration button. */ 260 260 QRadioButton *m_pButtonAutomatic; … … 297 297 298 298 /** @name DHCP server variables. 299 * @{ */299 * @{ */ 300 300 /** Holds the DHCP server status chack-box. */ 301 301 QCheckBox *m_pCheckBoxDHCP; -
trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkManager.h
r66911 r66915 58 58 59 59 /** @name Event-handling stuff. 60 * @{ */60 * @{ */ 61 61 /** Handles translation event. */ 62 62 virtual void retranslateUi() /* override */; … … 72 72 73 73 /** @name Menu/action stuff. 74 * @{ */74 * @{ */ 75 75 /** Handles command to add host network. */ 76 76 void sltAddHostNetwork(); … … 84 84 85 85 /** @name Tree-widget stuff. 86 * @{ */86 * @{ */ 87 87 /** Handles command to adjust tree-widget. */ 88 88 void sltAdjustTreeWidget(); … … 99 99 100 100 /** @name Prepare/cleanup cascade. 101 * @{ */101 * @{ */ 102 102 /** Prepares all. */ 103 103 void prepare(); … … 110 110 /** Prepares widgets. */ 111 111 void prepareWidgets(); 112 /** Prepares tool -bar. */112 /** Prepares toolbar. */ 113 113 void prepareToolBar(); 114 114 /** Prepares tree-widget. */ … … 119 119 120 120 /** @name Loading stuff. 121 * @{ */121 * @{ */ 122 122 /** Loads host networks. */ 123 123 void loadHostNetworks(); … … 127 127 128 128 /** @name Tree-widget stuff. 129 * @{ */129 * @{ */ 130 130 /** Creates a new tree-widget item on the basis of passed @a data, @a fChooseItem if requested. */ 131 131 void createItemForNetworkHost(const UIDataHostNetwork &data, bool fChooseItem); … … 134 134 /** @} */ 135 135 136 /** @name Tool -bar and menu variables.137 * @{ */138 /** Holds the tool -bar instance. */136 /** @name Toolbar and menu variables. 137 * @{ */ 138 /** Holds the toolbar instance. */ 139 139 UIToolBar *m_pToolBar; 140 140 /** Holds menu-bar menu object instance. */ … … 151 151 152 152 /** @name Splitter variables. 153 * @{ */153 * @{ */ 154 154 /** Holds the tree-widget instance. */ 155 155 QITreeWidget *m_pTreeWidget; … … 181 181 182 182 /** @name Event-handling stuff. 183 * @{ */183 * @{ */ 184 184 /** Handles translation event. */ 185 185 virtual void retranslateUi() /* override */; … … 189 189 190 190 /** @name Prepare/cleanup cascade. 191 * @{ */191 * @{ */ 192 192 /** Prepares all. */ 193 193 void prepare(); … … 212 212 213 213 /** @name General variables. 214 * @{ */214 * @{ */ 215 215 /** Holds the Host Network Manager singleton instance. */ 216 216 static UIHostNetworkManager *s_pInstance; 217 217 218 /** Widget to center UIMediumManager according. */218 /** Holds the widget reference to center Host Network Manager according. */ 219 219 QWidget *m_pPseudoParentWidget; 220 220 /** @} */ 221 221 222 222 /** @name Widget variables. 223 * @{ */223 * @{ */ 224 224 /** Holds the widget instance. */ 225 225 UIHostNetworkManagerWidget *m_pWidget; … … 227 227 228 228 /** @name Button-box variables. 229 * @{ */229 * @{ */ 230 230 /** Holds the dialog button-box instance. */ 231 231 QIDialogButtonBox *m_pButtonBox;
Note:
See TracChangeset
for help on using the changeset viewer.