Searched defs:pActionPool (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DUIShortcutPool.cpp105 UIShortcut& UIShortcutPool::shortcut(UIActionPool *pActionPool, UIAction *pAction) argument
108 const QString strShortcutKey(m_sstrShortcutKeyTemplate.arg(pActionPool->shortcutsExtraDataID(),
116 newShortcut.setSequence(pAction->defaultShortcut(pActionPool->type()));
117 newShortcut.setDefaultSequence(pAction->defaultShortcut(pActionPool->type()));
143 void UIShortcutPool::applyShortcuts(UIActionPool *pActionPool) argument
146 foreach (UIAction *pAction, pActionPool->actions())
153 const QString strShortcutKey = m_sstrShortcutKeyTemplate.arg(pActionPool->shortcutsExtraDataID(),
165 existingShortcut.setDefaultSequence(pAction->defaultShortcut(pActionPool->type()));
173 newShortcut.setSequence(pAction->defaultShortcut(pActionPool->type()));
174 newShortcut.setDefaultSequence(pAction->defaultShortcut(pActionPool
[all...]
H A DUIActionPool.cpp756 UIActionPool *pActionPool = 0; local
759 case UIActionPoolType_Selector: pActionPool = new UIActionPoolSelector; break;
760 case UIActionPoolType_Runtime: pActionPool = new UIActionPoolRuntime; break;
763 AssertPtrReturn(pActionPool, 0);
764 pActionPool->prepare();
765 return pActionPool;
769 void UIActionPool::destroy(UIActionPool *pActionPool) argument
771 AssertPtrReturnVoid(pActionPool);
772 pActionPool->cleanup();
773 delete pActionPool;
779 UIActionPool *pActionPool = 0; local
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIMenuBarEditorWindow.cpp50 UIActionPool *pActionPool /* = 0 */)
55 , m_pActionPool(pActionPool)
75 void UIMenuBarEditorWidget::setActionPool(UIActionPool *pActionPool) argument
78 m_pActionPool = pActionPool;
1029 UIMenuBarEditorWindow::UIMenuBarEditorWindow(UIMachineWindow *pParent, UIActionPool *pActionPool) argument
1031 : UISlidingToolBar(pParent, pParent->menuBar(), new UIMenuBarEditorWidget(0, false, vboxGlobal().managedVMUuid(), pActionPool), UISlidingToolBar::Position_Top)
1033 : UISlidingToolBar(pParent, 0, new UIMenuBarEditorWidget(0, false, vboxGlobal().managedVMUuid(), pActionPool), UISlidingToolBar::Position_Top)

Completed in 66 milliseconds