Changeset 75209 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Oct 31, 2018 4:41:46 PM (6 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 17 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r75155 r75209 790 790 src/extradata/UIExtraDataManager.h \ 791 791 src/globals/UIActionPool.h \ 792 src/globals/UIActionPoolManager.h \ 792 793 src/globals/UIActionPoolRuntime.h \ 793 src/globals/UIActionPoolSelector.h \794 794 src/globals/UIAnimationFramework.h \ 795 795 src/globals/UIDesktopWidgetWatchdog.h \ … … 1069 1069 src/extradata/UIExtraDataManager.h \ 1070 1070 src/globals/UIActionPool.h \ 1071 src/globals/UIActionPoolManager.h \ 1071 1072 src/globals/UIActionPoolRuntime.h \ 1072 src/globals/UIActionPoolSelector.h \1073 1073 src/globals/UIAnimationFramework.h \ 1074 1074 src/globals/UIDesktopWidgetWatchdog.h \ … … 1201 1201 src/extradata/UIExtraDataManager.cpp \ 1202 1202 src/globals/UIActionPool.cpp \ 1203 src/globals/UIActionPoolManager.cpp \ 1203 1204 src/globals/UIActionPoolRuntime.cpp \ 1204 src/globals/UIActionPoolSelector.cpp \1205 1205 src/globals/UIMainEventListener.cpp \ 1206 1206 src/globals/UIThreadPool.cpp \ … … 1282 1282 src/extradata/UIExtraDataManager.cpp \ 1283 1283 src/globals/UIActionPool.cpp \ 1284 src/globals/UIActionPoolManager.cpp \ 1284 1285 src/globals/UIActionPoolRuntime.cpp \ 1285 src/globals/UIActionPoolSelector.cpp \1286 1286 src/globals/UIMainEventListener.cpp \ 1287 1287 src/globals/UIThreadPool.cpp \ … … 1482 1482 src/globals/COMDefs.cpp \ 1483 1483 src/globals/UIActionPool.cpp \ 1484 src/globals/UIActionPoolManager.cpp \ 1484 1485 src/globals/UIActionPoolRuntime.cpp \ 1485 src/globals/UIActionPoolSelector.cpp \1486 1486 src/globals/UIAnimationFramework.cpp \ 1487 1487 src/globals/UIDefs.cpp \ … … 1813 1813 src/globals/COMDefs.cpp \ 1814 1814 src/globals/UIActionPool.cpp \ 1815 src/globals/UIActionPoolManager.cpp \ 1815 1816 src/globals/UIActionPoolRuntime.cpp \ 1816 src/globals/UIActionPoolSelector.cpp \1817 1817 src/globals/UIAnimationFramework.cpp \ 1818 1818 src/globals/UIDefs.cpp \ -
trunk/src/VBox/Frontends/VirtualBox/src/cloud/UICloudProfileManager.cpp
r75161 r75209 30 30 # include "QITreeWidget.h" 31 31 # include "VBoxGlobal.h" 32 # include "UIActionPool Selector.h"32 # include "UIActionPoolManager.h" 33 33 # include "UIExtraDataManager.h" 34 34 # include "UIIconPool.h" -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.cpp
r75207 r75209 27 27 # include "VBoxGlobal.h" 28 28 # include "UIActionPool.h" 29 # include "UIActionPool Selector.h"29 # include "UIActionPoolManager.h" 30 30 # include "UIActionPoolRuntime.h" 31 31 # include "UIConverter.h" … … 158 158 void UIAction::setShortcut(const QKeySequence &shortcut) 159 159 { 160 /* Only for selector's action-pool: */161 if (m_enmActionPoolType == UIActionPoolType_ Selector)160 /* Only for manager's action-pool: */ 161 if (m_enmActionPoolType == UIActionPoolType_Manager) 162 162 { 163 163 /* If shortcut is visible: */ … … 191 191 switch (m_enmActionPoolType) 192 192 { 193 /* Unchanged name for Selector UI: */194 case UIActionPoolType_ Selector: return name();193 /* Unchanged name for Manager UI: */ 194 case UIActionPoolType_Manager: return name(); 195 195 /* Filtered name for Runtime UI: */ 196 196 case UIActionPoolType_Runtime: return VBoxGlobal::removeAccelMark(name()); … … 210 210 switch (m_enmActionPoolType) 211 211 { 212 /* The same as menu name for Selector UI: */213 case UIActionPoolType_ Selector:212 /* The same as menu name for Manager UI: */ 213 case UIActionPoolType_Manager: 214 214 { 215 215 setText(nameInMenu()); … … 533 533 switch (actionPoolType) 534 534 { 535 case UIActionPoolType_ Selector: break;535 case UIActionPoolType_Manager: break; 536 536 case UIActionPoolType_Runtime: return QKeySequence("Q"); 537 537 } … … 715 715 switch (actionPoolType) 716 716 { 717 case UIActionPoolType_ Selector: return QKeySequence(QKeySequence::HelpContents);717 case UIActionPoolType_Manager: return QKeySequence(QKeySequence::HelpContents); 718 718 case UIActionPoolType_Runtime: break; 719 719 } … … 1168 1168 switch (actionPool()->type()) 1169 1169 { 1170 case UIActionPoolType_ Selector: return QKeySequence("Ctrl+G");1170 case UIActionPoolType_Manager: return QKeySequence("Ctrl+G"); 1171 1171 case UIActionPoolType_Runtime: break; 1172 1172 } … … 2081 2081 switch (enmType) 2082 2082 { 2083 case UIActionPoolType_ Selector: pActionPool = new UIActionPoolSelector; break;2083 case UIActionPoolType_Manager: pActionPool = new UIActionPoolManager; break; 2084 2084 case UIActionPoolType_Runtime: pActionPool = new UIActionPoolRuntime; break; 2085 2085 default: AssertFailedReturn(0); … … 2104 2104 switch (enmType) 2105 2105 { 2106 case UIActionPoolType_ Selector: pActionPool = new UIActionPoolSelector(true); break;2106 case UIActionPoolType_Manager: pActionPool = new UIActionPoolManager(true); break; 2107 2107 case UIActionPoolType_Runtime: pActionPool = new UIActionPoolRuntime(true); break; 2108 2108 default: AssertFailedReturnVoid(); … … 2125 2125 } 2126 2126 2127 UIActionPool Selector *UIActionPool::toSelector()2128 { 2129 return qobject_cast<UIActionPool Selector*>(this);2127 UIActionPoolManager *UIActionPool::toManager() 2128 { 2129 return qobject_cast<UIActionPoolManager*>(this); 2130 2130 } 2131 2131 … … 2431 2431 { 2432 2432 /* Make sure index belongs to this class: */ 2433 if (iIndex > UIActionIndex_Max) 2434 return; 2433 AssertReturnVoid(iIndex < UIActionIndex_Max); 2435 2434 2436 2435 /* If menu with such index is invalidated -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.h
r75207 r75209 35 35 class UIActionPool; 36 36 class UIActionPoolRuntime; 37 class UIActionPool Selector;37 class UIActionPoolManager; 38 38 39 39 … … 41 41 enum UIActionPoolType 42 42 { 43 UIActionPoolType_ Selector,43 UIActionPoolType_Manager, 44 44 UIActionPoolType_Runtime 45 45 }; … … 474 474 /** Pointer to menu update-handler for this class. */ 475 475 typedef void (UIActionPool::*PTFActionPool)(); 476 /** Pointer to menu update-handler for Selector sub-class. */477 typedef void (UIActionPool Selector::*PTFActionPoolSelector)();476 /** Pointer to menu update-handler for Manager sub-class. */ 477 typedef void (UIActionPoolManager::*PTFActionPoolManager)(); 478 478 /** Pointer to menu update-handler for Runtime sub-class. */ 479 479 typedef void (UIActionPoolRuntime::*PTFActionPoolRuntime)(); … … 482 482 { 483 483 PTFActionPool ptf; 484 PTFActionPool Selector ptfs;484 PTFActionPoolManager ptfm; 485 485 PTFActionPoolRuntime ptfr; 486 486 }; … … 509 509 /** Cast action-pool to Runtime one. */ 510 510 UIActionPoolRuntime *toRuntime(); 511 /** Cast action-pool to Selector one. */512 UIActionPool Selector *toSelector();511 /** Cast action-pool to Manager one. */ 512 UIActionPoolManager *toManager(); 513 513 514 514 /** Returns action-pool type. */ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPoolManager.cpp
r75208 r75209 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - UIActionPool Selector class implementation.3 * VBox Qt GUI - UIActionPoolManager class implementation. 4 4 */ 5 5 … … 22 22 /* GUI includes: */ 23 23 # include "VBoxGlobal.h" 24 # include "UIActionPool Selector.h"24 # include "UIActionPoolManager.h" 25 25 # include "UIExtraDataManager.h" 26 26 # include "UIIconPool.h" … … 2495 2495 2496 2496 /********************************************************************************************************************************* 2497 * Class UIActionPool Selector implementation.*2497 * Class UIActionPoolManager implementation. * 2498 2498 *********************************************************************************************************************************/ 2499 2499 2500 UIActionPool Selector::UIActionPoolSelector(bool fTemporary /* = false */)2501 : UIActionPool(UIActionPoolType_ Selector, fTemporary)2500 UIActionPoolManager::UIActionPoolManager(bool fTemporary /* = false */) 2501 : UIActionPool(UIActionPoolType_Manager, fTemporary) 2502 2502 { 2503 2503 } 2504 2504 2505 void UIActionPool Selector::preparePool()2505 void UIActionPoolManager::preparePool() 2506 2506 { 2507 2507 /* 'File' actions: */ … … 2622 2622 2623 2623 /* Prepare update-handlers for known menus: */ 2624 m_menuUpdateHandlers[UIActionIndexST_M_File].ptf s = &UIActionPoolSelector::updateMenuFile;2625 m_menuUpdateHandlers[UIActionIndexST_M_Welcome].ptf s = &UIActionPoolSelector::updateMenuWelcome;2626 m_menuUpdateHandlers[UIActionIndexST_M_Group].ptf s = &UIActionPoolSelector::updateMenuGroup;2627 m_menuUpdateHandlers[UIActionIndexST_M_Machine].ptf s = &UIActionPoolSelector::updateMenuMachine;2628 m_menuUpdateHandlers[UIActionIndexST_M_Group_M_StartOrShow].ptf s = &UIActionPoolSelector::updateMenuGroupStartOrShow;2629 m_menuUpdateHandlers[UIActionIndexST_M_Machine_M_StartOrShow].ptf s = &UIActionPoolSelector::updateMenuMachineStartOrShow;2630 m_menuUpdateHandlers[UIActionIndexST_M_Group_M_Close].ptf s = &UIActionPoolSelector::updateMenuGroupClose;2631 m_menuUpdateHandlers[UIActionIndexST_M_Machine_M_Close].ptf s = &UIActionPoolSelector::updateMenuMachineClose;2632 m_menuUpdateHandlers[UIActionIndexST_M_MediumWindow].ptf s = &UIActionPoolSelector::updateMenuMediumWindow;2633 m_menuUpdateHandlers[UIActionIndexST_M_Medium].ptf s = &UIActionPoolSelector::updateMenuMedium;2634 m_menuUpdateHandlers[UIActionIndexST_M_NetworkWindow].ptf s = &UIActionPoolSelector::updateMenuNetworkWindow;2635 m_menuUpdateHandlers[UIActionIndexST_M_Network].ptf s = &UIActionPoolSelector::updateMenuNetwork;2636 m_menuUpdateHandlers[UIActionIndexST_M_CloudWindow].ptf s = &UIActionPoolSelector::updateMenuCloudWindow;2637 m_menuUpdateHandlers[UIActionIndexST_M_Cloud].ptf s = &UIActionPoolSelector::updateMenuCloud;2638 m_menuUpdateHandlers[UIActionIndexST_M_Snapshot].ptf s = &UIActionPoolSelector::updateMenuSnapshot;2624 m_menuUpdateHandlers[UIActionIndexST_M_File].ptfm = &UIActionPoolManager::updateMenuFile; 2625 m_menuUpdateHandlers[UIActionIndexST_M_Welcome].ptfm = &UIActionPoolManager::updateMenuWelcome; 2626 m_menuUpdateHandlers[UIActionIndexST_M_Group].ptfm = &UIActionPoolManager::updateMenuGroup; 2627 m_menuUpdateHandlers[UIActionIndexST_M_Machine].ptfm = &UIActionPoolManager::updateMenuMachine; 2628 m_menuUpdateHandlers[UIActionIndexST_M_Group_M_StartOrShow].ptfm = &UIActionPoolManager::updateMenuGroupStartOrShow; 2629 m_menuUpdateHandlers[UIActionIndexST_M_Machine_M_StartOrShow].ptfm = &UIActionPoolManager::updateMenuMachineStartOrShow; 2630 m_menuUpdateHandlers[UIActionIndexST_M_Group_M_Close].ptfm = &UIActionPoolManager::updateMenuGroupClose; 2631 m_menuUpdateHandlers[UIActionIndexST_M_Machine_M_Close].ptfm = &UIActionPoolManager::updateMenuMachineClose; 2632 m_menuUpdateHandlers[UIActionIndexST_M_MediumWindow].ptfm = &UIActionPoolManager::updateMenuMediumWindow; 2633 m_menuUpdateHandlers[UIActionIndexST_M_Medium].ptfm = &UIActionPoolManager::updateMenuMedium; 2634 m_menuUpdateHandlers[UIActionIndexST_M_NetworkWindow].ptfm = &UIActionPoolManager::updateMenuNetworkWindow; 2635 m_menuUpdateHandlers[UIActionIndexST_M_Network].ptfm = &UIActionPoolManager::updateMenuNetwork; 2636 m_menuUpdateHandlers[UIActionIndexST_M_CloudWindow].ptfm = &UIActionPoolManager::updateMenuCloudWindow; 2637 m_menuUpdateHandlers[UIActionIndexST_M_Cloud].ptfm = &UIActionPoolManager::updateMenuCloud; 2638 m_menuUpdateHandlers[UIActionIndexST_M_Snapshot].ptfm = &UIActionPoolManager::updateMenuSnapshot; 2639 2639 2640 2640 /* Call to base-class: */ … … 2642 2642 } 2643 2643 2644 void UIActionPool Selector::prepareConnections()2644 void UIActionPoolManager::prepareConnections() 2645 2645 { 2646 2646 /* Prepare connections: */ … … 2652 2652 } 2653 2653 2654 void UIActionPool Selector::updateMenu(int iIndex)2654 void UIActionPoolManager::updateMenu(int iIndex) 2655 2655 { 2656 2656 /* If index belongs to base-class => delegate to base-class: */ … … 2663 2663 && m_invalidations.contains(iIndex) 2664 2664 && m_menuUpdateHandlers.contains(iIndex)) 2665 (this->*(m_menuUpdateHandlers.value(iIndex).ptf s))();2665 (this->*(m_menuUpdateHandlers.value(iIndex).ptfm))(); 2666 2666 } 2667 2667 2668 void UIActionPool Selector::updateMenus()2668 void UIActionPoolManager::updateMenus() 2669 2669 { 2670 2670 /* Clear menu list: */ … … 2720 2720 } 2721 2721 2722 void UIActionPool Selector::updateMenuFile()2722 void UIActionPoolManager::updateMenuFile() 2723 2723 { 2724 2724 /* Get corresponding menu: */ … … 2813 2813 } 2814 2814 2815 void UIActionPool Selector::updateMenuWelcome()2815 void UIActionPoolManager::updateMenuWelcome() 2816 2816 { 2817 2817 /* Get corresponding menu: */ … … 2829 2829 } 2830 2830 2831 void UIActionPool Selector::updateMenuGroup()2831 void UIActionPoolManager::updateMenuGroup() 2832 2832 { 2833 2833 /* Get corresponding menu: */ … … 2862 2862 } 2863 2863 2864 void UIActionPool Selector::updateMenuMachine()2864 void UIActionPoolManager::updateMenuMachine() 2865 2865 { 2866 2866 /* Get corresponding menu: */ … … 2898 2898 } 2899 2899 2900 void UIActionPool Selector::updateMenuGroupStartOrShow()2900 void UIActionPoolManager::updateMenuGroupStartOrShow() 2901 2901 { 2902 2902 /* Get corresponding menu: */ … … 2915 2915 } 2916 2916 2917 void UIActionPool Selector::updateMenuMachineStartOrShow()2917 void UIActionPoolManager::updateMenuMachineStartOrShow() 2918 2918 { 2919 2919 /* Get corresponding menu: */ … … 2932 2932 } 2933 2933 2934 void UIActionPool Selector::updateMenuGroupClose()2934 void UIActionPoolManager::updateMenuGroupClose() 2935 2935 { 2936 2936 /* Get corresponding menu: */ … … 2950 2950 } 2951 2951 2952 void UIActionPool Selector::updateMenuMachineClose()2952 void UIActionPoolManager::updateMenuMachineClose() 2953 2953 { 2954 2954 /* Get corresponding menu: */ … … 2968 2968 } 2969 2969 2970 void UIActionPool Selector::updateMenuMediumWindow()2970 void UIActionPoolManager::updateMenuMediumWindow() 2971 2971 { 2972 2972 /* Update corresponding menu: */ … … 2977 2977 } 2978 2978 2979 void UIActionPool Selector::updateMenuMedium()2979 void UIActionPoolManager::updateMenuMedium() 2980 2980 { 2981 2981 /* Update corresponding menu: */ … … 2986 2986 } 2987 2987 2988 void UIActionPool Selector::updateMenuMediumWrapper(UIMenu *pMenu)2988 void UIActionPoolManager::updateMenuMediumWrapper(UIMenu *pMenu) 2989 2989 { 2990 2990 /* Clear contents: */ … … 3026 3026 } 3027 3027 3028 void UIActionPool Selector::updateMenuNetworkWindow()3028 void UIActionPoolManager::updateMenuNetworkWindow() 3029 3029 { 3030 3030 /* Update corresponding menu: */ … … 3035 3035 } 3036 3036 3037 void UIActionPool Selector::updateMenuNetwork()3037 void UIActionPoolManager::updateMenuNetwork() 3038 3038 { 3039 3039 /* Update corresponding menu: */ … … 3044 3044 } 3045 3045 3046 void UIActionPool Selector::updateMenuNetworkWrapper(UIMenu *pMenu)3046 void UIActionPoolManager::updateMenuNetworkWrapper(UIMenu *pMenu) 3047 3047 { 3048 3048 /* Clear contents: */ … … 3078 3078 } 3079 3079 3080 void UIActionPool Selector::updateMenuCloudWindow()3080 void UIActionPoolManager::updateMenuCloudWindow() 3081 3081 { 3082 3082 /* Update corresponding menu: */ … … 3087 3087 } 3088 3088 3089 void UIActionPool Selector::updateMenuCloud()3089 void UIActionPoolManager::updateMenuCloud() 3090 3090 { 3091 3091 /* Update corresponding menu: */ … … 3096 3096 } 3097 3097 3098 void UIActionPool Selector::updateMenuCloudWrapper(UIMenu *pMenu)3098 void UIActionPoolManager::updateMenuCloudWrapper(UIMenu *pMenu) 3099 3099 { 3100 3100 /* Clear contents: */ … … 3132 3132 } 3133 3133 3134 void UIActionPool Selector::updateMenuSnapshot()3134 void UIActionPoolManager::updateMenuSnapshot() 3135 3135 { 3136 3136 /* Get corresponding menu: */ … … 3151 3151 } 3152 3152 3153 void UIActionPool Selector::updateShortcuts()3153 void UIActionPoolManager::updateShortcuts() 3154 3154 { 3155 3155 /* Call to base-class: */ … … 3160 3160 } 3161 3161 3162 void UIActionPool Selector::setShortcutsVisible(int iIndex, bool fVisible)3162 void UIActionPoolManager::setShortcutsVisible(int iIndex, bool fVisible) 3163 3163 { 3164 3164 /* Prepare a list of actions: */ … … 3235 3235 } 3236 3236 3237 QString UIActionPool Selector::shortcutsExtraDataID() const3237 QString UIActionPoolManager::shortcutsExtraDataID() const 3238 3238 { 3239 3239 return GUI_Input_SelectorShortcuts; … … 3241 3241 3242 3242 3243 #include "UIActionPool Selector.moc"3243 #include "UIActionPoolManager.moc" -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPoolManager.h
r75208 r75209 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - UIActionPool Selector class declaration.3 * VBox Qt GUI - UIActionPoolManager class declaration. 4 4 */ 5 5 … … 16 16 */ 17 17 18 #ifndef ___UIActionPool Selector_h___19 #define ___UIActionPool Selector_h___18 #ifndef ___UIActionPoolManager_h___ 19 #define ___UIActionPoolManager_h___ 20 20 21 21 /* Qt includes: */ … … 158 158 159 159 /** UIActionPool extension 160 * representing action-pool singleton for Selector UI. */161 class SHARED_LIBRARY_STUFF UIActionPool Selector : public UIActionPool160 * representing action-pool singleton for Manager UI. */ 161 class SHARED_LIBRARY_STUFF UIActionPoolManager : public UIActionPool 162 162 { 163 163 Q_OBJECT; … … 168 168 * @param fTemporary Brings whether this action-pool is temporary, 169 169 * used to (re-)initialize shortcuts-pool. */ 170 UIActionPool Selector(bool fTemporary = false);170 UIActionPoolManager(bool fTemporary = false); 171 171 172 172 /** Prepares pool. */ … … 237 237 238 238 239 #endif /* !___UIActionPool Selector_h___ */240 239 #endif /* !___UIActionPoolManager_h___ */ 240 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPoolRuntime.cpp
r75191 r75209 4294 4294 /* Call to base-class: */ 4295 4295 UIActionPool::updateShortcuts(); 4296 /* Create temporary Selector UI pool to do the same: */4296 /* Create temporary Manager UI pool to do the same: */ 4297 4297 if (!m_fTemporary) 4298 UIActionPool::createTemporary(UIActionPoolType_ Selector);4298 UIActionPool::createTemporary(UIActionPoolType_Manager); 4299 4299 } 4300 4300 -
trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkManager.cpp
r75161 r75209 29 29 # include "QIDialogButtonBox.h" 30 30 # include "QITreeWidget.h" 31 # include "UIActionPool Selector.h"31 # include "UIActionPoolManager.h" 32 32 # include "UIExtraDataManager.h" 33 33 # include "UIIconPool.h" -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIToolPaneGlobal.cpp
r75054 r75209 28 28 29 29 /* GUI includes */ 30 # include "UIActionPool Selector.h"30 # include "UIActionPoolManager.h" 31 31 # include "UICloudProfileManager.h" 32 32 # include "UIHostNetworkManager.h" -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIToolPaneMachine.cpp
r75144 r75209 28 28 29 29 /* GUI includes */ 30 # include "UIActionPool Selector.h"30 # include "UIActionPoolManager.h" 31 31 # include "UIErrorPane.h" 32 32 # include "UIDetails.h" -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManager.cpp
r75207 r75209 29 29 /* GUI includes: */ 30 30 # include "QIFileDialog.h" 31 # include "UIActionPool Selector.h"31 # include "UIActionPoolManager.h" 32 32 # include "UICloudProfileManager.h" 33 33 # include "UIDesktopServices.h" … … 1272 1272 1273 1273 /* Create action-pool: */ 1274 m_pActionPool = UIActionPool::create(UIActionPoolType_ Selector);1274 m_pActionPool = UIActionPool::create(UIActionPoolType_Manager); 1275 1275 1276 1276 /* Build menu-bar: */ -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManagerWidget.cpp
r75093 r75209 28 28 /* GUI includes: */ 29 29 # include "QISplitter.h" 30 # include "UIActionPool Selector.h"30 # include "UIActionPoolManager.h" 31 31 # include "UIErrorString.h" 32 32 # include "UIExtraDataManager.h" -
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserItemMachine.cpp
r75204 r75209 33 33 # include "UIChooserItemMachine.h" 34 34 # include "UIChooserModel.h" 35 # include "UIActionPool Selector.h"35 # include "UIActionPoolManager.h" 36 36 # include "UIIconPool.h" 37 37 # include "UIImageTools.h" -
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserModel.cpp
r75102 r75209 34 34 # include "QIMessageBox.h" 35 35 # include "VBoxGlobal.h" 36 # include "UIActionPool Selector.h"36 # include "UIActionPoolManager.h" 37 37 # include "UIChooser.h" 38 38 # include "UIChooserHandlerMouse.h" -
trunk/src/VBox/Frontends/VirtualBox/src/manager/tools/UIToolsModel.cpp
r75102 r75209 33 33 # include "QIMessageBox.h" 34 34 # include "VBoxGlobal.h" 35 # include "UIActionPool Selector.h"35 # include "UIActionPoolManager.h" 36 36 # include "UIIconPool.h" 37 37 # include "UITools.h" -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumManager.cpp
r75161 r75209 36 36 # include "QITabWidget.h" 37 37 # include "VBoxGlobal.h" 38 # include "UIActionPool Selector.h"38 # include "UIActionPoolManager.h" 39 39 # include "UIExtraDataManager.h" 40 40 # include "UIMediumDetailsWidget.h" -
trunk/src/VBox/Frontends/VirtualBox/src/precomp.h
r73349 r75209 422 422 #include "UIActionPool.h" 423 423 #include "UIActionPoolRuntime.h" 424 #include "UIActionPool Selector.h"424 #include "UIActionPoolManager.h" 425 425 #include "UIAnimationFramework.h" 426 426 #include "UIApplianceEditorWidget.h" -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.cpp
r73859 r75209 482 482 { 483 483 /* Filter out unnecessary shortcuts: */ 484 if ((m_type == UIActionPoolType_ Selector && item.key().startsWith(GUI_Input_MachineShortcuts)) ||484 if ((m_type == UIActionPoolType_Manager && item.key().startsWith(GUI_Input_MachineShortcuts)) || 485 485 (m_type == UIActionPoolType_Runtime && item.key().startsWith(GUI_Input_SelectorShortcuts))) 486 486 continue; … … 1089 1089 1090 1090 /* Create Selector UI model: */ 1091 m_pSelectorModel = new UIHotKeyTableModel(this, UIActionPoolType_ Selector);1091 m_pSelectorModel = new UIHotKeyTableModel(this, UIActionPoolType_Manager); 1092 1092 1093 1093 /* Create Selector UI table: */ -
trunk/src/VBox/Frontends/VirtualBox/src/snapshots/UISnapshotPane.cpp
r75161 r75209 37 37 # include "QIMessageBox.h" 38 38 # include "QITreeWidget.h" 39 # include "UIActionPool Selector.h"39 # include "UIActionPoolManager.h" 40 40 # include "UIConverter.h" 41 41 # include "UIExtraDataManager.h"
Note:
See TracChangeset
for help on using the changeset viewer.