Changeset 44448 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jan 29, 2013 6:37:30 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83440
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.cpp
r44436 r44448 72 72 void UIAction::setShortcut(const QKeySequence &shortcut) 73 73 { 74 /* Call to base-class: */ 75 QAction::setShortcut(shortcut); 76 /* Remember shortcut: */ 77 m_shortcut = shortcut; 74 /* Only for selector's action-pool: */ 75 if (m_actionPoolType == UIActionPoolType_Selector) 76 { 77 /* Call to base-class: */ 78 QAction::setShortcut(shortcut); 79 /* Remember shortcut: */ 80 m_shortcut = shortcut; 81 } 78 82 /* Update text according new shortcut: */ 79 83 updateText(); … … 568 572 createMenus(); 569 573 /* Apply shortcuts: */ 570 gShortcutPool->applyShortcuts(this);574 sltApplyShortcuts(); 571 575 } 572 576 … … 608 612 } 609 613 return false; 614 } 615 616 void UIActionPool::sltApplyShortcuts() 617 { 618 gShortcutPool->applyShortcuts(this); 610 619 } 611 620 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.h
r44434 r44448 259 259 bool processHotKey(const QKeySequence &key); 260 260 261 protected slots: 262 263 /* Handler: Shortcuts stuff: */ 264 void sltApplyShortcuts(); 265 261 266 protected: 262 267 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIExtraDataEventHandler.cpp
r44307 r44448 7 7 8 8 /* 9 * Copyright (C) 2010 Oracle Corporation9 * Copyright (C) 2010-2013 Oracle Corporation 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 26 26 #include "VBoxGlobal.h" 27 27 #include "VBoxGlobalSettings.h" 28 #include "UIActionPool.h" 28 29 29 30 /* COM includes: */ … … 119 120 } 120 121 if (strKey == GUI_LanguageId) 121 emit sigGUILanguageChange(strValue); 122 emit sigGUILanguageChange(strValue); 123 if (strKey == GUI_Input_SelectorShortcuts && gActionPool->type() == UIActionPoolType_Selector) 124 emit sigSelectorShortcutsChanged(); 125 if (strKey == GUI_Input_MachineShortcuts && gActionPool->type() == UIActionPoolType_Runtime) 126 emit sigMachineShortcutsChanged(); 122 127 #ifdef VBOX_GUI_WITH_SYSTRAY 123 128 if (strKey == GUI_MainWindowCount) … … 178 183 void sigCanShowRegistrationDlg(bool fEnabled); 179 184 void sigGUILanguageChange(QString strLang); 185 void sigSelectorShortcutsChanged(); 186 void sigMachineShortcutsChanged(); 180 187 #ifdef VBOX_GUI_WITH_SYSTRAY 181 188 void sigMainWindowCountChange(int count); … … 258 265 Qt::QueuedConnection); 259 266 267 connect(m_pHandler, SIGNAL(sigSelectorShortcutsChanged()), 268 this, SIGNAL(sigSelectorShortcutsChanged()), 269 Qt::QueuedConnection); 270 271 connect(m_pHandler, SIGNAL(sigMachineShortcutsChanged()), 272 this, SIGNAL(sigMachineShortcutsChanged()), 273 Qt::QueuedConnection); 274 260 275 #ifdef VBOX_GUI_WITH_SYSTRAY 261 276 connect(m_pHandler, SIGNAL(sigMainWindowCountChange(int)), -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIExtraDataEventHandler.h
r41587 r44448 6 6 7 7 /* 8 * Copyright (C) 2010 Oracle Corporation8 * Copyright (C) 2010-2013 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 38 38 void sigCanShowRegistrationDlg(bool fEnabled); 39 39 void sigGUILanguageChange(QString strLang); 40 void sigSelectorShortcutsChanged(); 41 void sigMachineShortcutsChanged(); 40 42 #ifdef VBOX_GUI_WITH_SYSTRAY 41 43 void sigMainWindowCountChange(int count); -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIShortcutPool.cpp
r44436 r44448 20 20 #include "UIShortcutPool.h" 21 21 #include "UIActionPool.h" 22 #include "UIExtraDataEventHandler.h" 22 23 23 24 void UIShortcut::setDescription(const QString &strDescription) … … 116 117 UIShortcut &existingShortcut = m_shortcuts[strShortcutKey]; 117 118 /* Copy the sequence from the shortcut to the action: */ 118 if (pActionPool->type() != UIActionPoolType_Runtime) 119 pAction->setShortcut(existingShortcut.sequence()); 119 pAction->setShortcut(existingShortcut.sequence()); 120 120 /* Copy the description from the action to the shortcut if necessary: */ 121 121 if (existingShortcut.description().isNull()) … … 129 129 /* Copy the action's default to both the shortcut & the action: */ 130 130 newShortcut.setSequence(pAction->defaultShortcut(pActionPool->type())); 131 if (pActionPool->type() != UIActionPoolType_Runtime) 132 pAction->setShortcut(newShortcut.sequence()); 131 pAction->setShortcut(newShortcut.sequence()); 133 132 /* Copy the description from the action to the shortcut: */ 134 133 newShortcut.setDescription(pAction->name()); … … 137 136 } 138 137 138 void UIShortcutPool::sltReloadSelectorShortcuts() 139 { 140 /* Clear selector shortcuts first: */ 141 QList<QString> shortcutKeyList = m_shortcuts.keys(); 142 foreach (const QString &strShortcutKey, shortcutKeyList) 143 if (strShortcutKey.startsWith(GUI_Input_SelectorShortcuts)) 144 m_shortcuts.remove(strShortcutKey); 145 /* Load selector overrides: */ 146 loadOverridesFor(GUI_Input_SelectorShortcuts); 147 /* Notify selector shortcuts reloaded: */ 148 emit sigSelectorShortcutsReloaded(); 149 } 150 151 void UIShortcutPool::sltReloadMachineShortcuts() 152 { 153 /* Clear machine shortcuts first: */ 154 QList<QString> shortcutKeyList = m_shortcuts.keys(); 155 foreach (const QString &strShortcutKey, shortcutKeyList) 156 if (strShortcutKey.startsWith(GUI_Input_MachineShortcuts)) 157 m_shortcuts.remove(strShortcutKey); 158 /* Load machine overrides: */ 159 loadOverridesFor(GUI_Input_MachineShortcuts); 160 /* Notify machine shortcuts reloaded: */ 161 emit sigMachineShortcutsReloaded(); 162 } 163 139 164 UIShortcutPool::UIShortcutPool() 140 165 { … … 157 182 /* Load overrides: */ 158 183 loadOverrides(); 184 /* Prepare connections: */ 185 prepareConnections(); 186 } 187 188 void UIShortcutPool::prepareConnections() 189 { 190 /* Connect to extra-data signals: */ 191 connect(gEDataEvents, SIGNAL(sigSelectorShortcutsChanged()), this, SLOT(sltReloadSelectorShortcuts())); 192 connect(gEDataEvents, SIGNAL(sigMachineShortcutsChanged()), this, SLOT(sltReloadMachineShortcuts())); 159 193 } 160 194 … … 170 204 void UIShortcutPool::loadOverrides() 171 205 { 172 /* Selector shortcut prefix: */ 173 QString strSelectorShortcutPrefix(GUI_Input_SelectorShortcuts); 174 /* Selector shortcut key template: */ 175 QString strSelectorShortcutKeyTemplate(m_strShortcutKeyTemplate.arg(strSelectorShortcutPrefix)); 176 /* Runtime shortcut prefix: */ 177 QString strRuntimeShortcutPrefix(GUI_Input_MachineShortcuts); 178 /* Runtime shortcut key template: */ 179 QString strRuntimeShortcutKeyTemplate(m_strShortcutKeyTemplate.arg(strRuntimeShortcutPrefix)); 180 181 /* Iterate over all the selector records: */ 182 parseOverrides(vboxGlobal().virtualBox().GetExtraDataStringList(strSelectorShortcutPrefix), strSelectorShortcutKeyTemplate); 183 /* Iterate over all the runtime records: */ 184 parseOverrides(vboxGlobal().virtualBox().GetExtraDataStringList(strRuntimeShortcutPrefix), strRuntimeShortcutKeyTemplate); 206 /* Load selector overrides: */ 207 loadOverridesFor(GUI_Input_SelectorShortcuts); 208 /* Load machine overrides: */ 209 loadOverridesFor(GUI_Input_MachineShortcuts); 210 } 211 212 void UIShortcutPool::loadOverridesFor(const QString &strExtraDataID) 213 { 214 /* Shortcut prefix: */ 215 QString strShortcutPrefix(strExtraDataID); 216 /* Shortcut key template: */ 217 QString strShortcutKeyTemplate(m_strShortcutKeyTemplate.arg(strShortcutPrefix)); 218 /* Iterate over all the records: */ 219 parseOverrides(vboxGlobal().virtualBox().GetExtraDataStringList(strShortcutPrefix), strShortcutKeyTemplate); 185 220 } 186 221 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIShortcutPool.h
r44436 r44448 63 63 Q_OBJECT; 64 64 65 signals: 66 67 /* Notifiers: Extra-data stuff: */ 68 void sigSelectorShortcutsReloaded(); 69 void sigMachineShortcutsReloaded(); 70 65 71 public: 66 72 … … 77 83 void applyShortcuts(UIActionPool *pActionPool); 78 84 85 private slots: 86 87 /* Handlers: Extra-data stuff: */ 88 void sltReloadSelectorShortcuts(); 89 void sltReloadMachineShortcuts(); 90 79 91 private: 80 92 … … 83 95 ~UIShortcutPool(); 84 96 85 /* Prepare/cleanup helpers: */97 /* Helpers: Prepare stuff: */ 86 98 void prepare(); 99 void prepareConnections(); 100 101 /* Helper: Cleanup stuff: */ 87 102 void cleanup() {} 88 103 … … 90 105 void loadDefaults(); 91 106 void loadOverrides(); 107 void loadOverridesFor(const QString &strExtraDataID); 92 108 void parseOverrides(const QStringList &overrides, const QString &strTemplate); 93 109 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIActionPoolRuntime.cpp
r44436 r44448 1047 1047 #endif /* Q_WS_MAC */ 1048 1048 1049 1050 UIActionPoolRuntime::UIActionPoolRuntime() 1051 : UIActionPool(UIActionPoolType_Runtime) 1052 { 1053 /* Prepare connections: */ 1054 connect(gShortcutPool, SIGNAL(sigMachineShortcutsReloaded()), this, SLOT(sltApplyShortcuts())); 1055 } 1049 1056 1050 1057 QString UIActionPoolRuntime::shortcutsExtraDataID() const -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIActionPoolRuntime.h
r44434 r44448 93 93 94 94 /* Constructor: */ 95 UIActionPoolRuntime() : UIActionPool(UIActionPoolType_Runtime) {}95 UIActionPoolRuntime(); 96 96 97 97 /* Helper: Shortcuts stuff: */ -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIActionPoolSelector.cpp
r44435 r44448 20 20 /* Local includes: */ 21 21 #include "UIActionPoolSelector.h" 22 #include "UIShortcutPool.h" 22 23 #include "UIDefs.h" 23 24 … … 975 976 976 977 978 UIActionPoolSelector::UIActionPoolSelector() 979 : UIActionPool(UIActionPoolType_Selector) 980 { 981 /* Prepare connections: */ 982 connect(gShortcutPool, SIGNAL(sigSelectorShortcutsReloaded()), this, SLOT(sltApplyShortcuts())); 983 } 984 977 985 QString UIActionPoolSelector::shortcutsExtraDataID() const 978 986 { -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIActionPoolSelector.h
r44434 r44448 81 81 82 82 /* Constructor: */ 83 UIActionPoolSelector() : UIActionPool(UIActionPoolType_Selector) {}83 UIActionPoolSelector(); 84 84 85 85 /* Helper: Shortcuts stuff: */
Note:
See TracChangeset
for help on using the changeset viewer.