VirtualBox

Changeset 44448 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Jan 29, 2013 6:37:30 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
83440
Message:

FE/Qt: 6065: Global/machine keyboard shortcut processing: Make sure shortcuts will be updated at runtime.

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  
    7272void UIAction::setShortcut(const QKeySequence &shortcut)
    7373{
    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    }
    7882    /* Update text according new shortcut: */
    7983    updateText();
     
    568572    createMenus();
    569573    /* Apply shortcuts: */
    570     gShortcutPool->applyShortcuts(this);
     574        sltApplyShortcuts();
    571575}
    572576
     
    608612    }
    609613    return false;
     614}
     615
     616void UIActionPool::sltApplyShortcuts()
     617{
     618    gShortcutPool->applyShortcuts(this);
    610619}
    611620
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.h

    r44434 r44448  
    259259    bool processHotKey(const QKeySequence &key);
    260260
     261protected slots:
     262
     263    /* Handler: Shortcuts stuff: */
     264    void sltApplyShortcuts();
     265
    261266protected:
    262267
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIExtraDataEventHandler.cpp

    r44307 r44448  
    77
    88/*
    9  * Copyright (C) 2010 Oracle Corporation
     9 * Copyright (C) 2010-2013 Oracle Corporation
    1010 *
    1111 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    2626#include "VBoxGlobal.h"
    2727#include "VBoxGlobalSettings.h"
     28#include "UIActionPool.h"
    2829
    2930/* COM includes: */
     
    119120               }
    120121               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();
    122127#ifdef VBOX_GUI_WITH_SYSTRAY
    123128               if (strKey == GUI_MainWindowCount)
     
    178183    void sigCanShowRegistrationDlg(bool fEnabled);
    179184    void sigGUILanguageChange(QString strLang);
     185    void sigSelectorShortcutsChanged();
     186    void sigMachineShortcutsChanged();
    180187#ifdef VBOX_GUI_WITH_SYSTRAY
    181188    void sigMainWindowCountChange(int count);
     
    258265            Qt::QueuedConnection);
    259266
     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
    260275#ifdef VBOX_GUI_WITH_SYSTRAY
    261276    connect(m_pHandler, SIGNAL(sigMainWindowCountChange(int)),
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIExtraDataEventHandler.h

    r41587 r44448  
    66
    77/*
    8  * Copyright (C) 2010 Oracle Corporation
     8 * Copyright (C) 2010-2013 Oracle Corporation
    99 *
    1010 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    3838    void sigCanShowRegistrationDlg(bool fEnabled);
    3939    void sigGUILanguageChange(QString strLang);
     40    void sigSelectorShortcutsChanged();
     41    void sigMachineShortcutsChanged();
    4042#ifdef VBOX_GUI_WITH_SYSTRAY
    4143    void sigMainWindowCountChange(int count);
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIShortcutPool.cpp

    r44436 r44448  
    2020#include "UIShortcutPool.h"
    2121#include "UIActionPool.h"
     22#include "UIExtraDataEventHandler.h"
    2223
    2324void UIShortcut::setDescription(const QString &strDescription)
     
    116117            UIShortcut &existingShortcut = m_shortcuts[strShortcutKey];
    117118            /* 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());
    120120            /* Copy the description from the action to the shortcut if necessary: */
    121121            if (existingShortcut.description().isNull())
     
    129129            /* Copy the action's default to both the shortcut & the action: */
    130130            newShortcut.setSequence(pAction->defaultShortcut(pActionPool->type()));
    131             if (pActionPool->type() != UIActionPoolType_Runtime)
    132                 pAction->setShortcut(newShortcut.sequence());
     131            pAction->setShortcut(newShortcut.sequence());
    133132            /* Copy the description from the action to the shortcut: */
    134133            newShortcut.setDescription(pAction->name());
     
    137136}
    138137
     138void 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
     151void 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
    139164UIShortcutPool::UIShortcutPool()
    140165{
     
    157182    /* Load overrides: */
    158183    loadOverrides();
     184    /* Prepare connections: */
     185    prepareConnections();
     186}
     187
     188void 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()));
    159193}
    160194
     
    170204void UIShortcutPool::loadOverrides()
    171205{
    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
     212void 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);
    185220}
    186221
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIShortcutPool.h

    r44436 r44448  
    6363    Q_OBJECT;
    6464
     65signals:
     66
     67    /* Notifiers: Extra-data stuff: */
     68    void sigSelectorShortcutsReloaded();
     69    void sigMachineShortcutsReloaded();
     70
    6571public:
    6672
     
    7783    void applyShortcuts(UIActionPool *pActionPool);
    7884
     85private slots:
     86
     87    /* Handlers: Extra-data stuff: */
     88    void sltReloadSelectorShortcuts();
     89    void sltReloadMachineShortcuts();
     90
    7991private:
    8092
     
    8395    ~UIShortcutPool();
    8496
    85     /* Prepare/cleanup helpers: */
     97    /* Helpers: Prepare stuff: */
    8698    void prepare();
     99    void prepareConnections();
     100
     101    /* Helper: Cleanup stuff: */
    87102    void cleanup() {}
    88103
     
    90105    void loadDefaults();
    91106    void loadOverrides();
     107    void loadOverridesFor(const QString &strExtraDataID);
    92108    void parseOverrides(const QStringList &overrides, const QString &strTemplate);
    93109
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIActionPoolRuntime.cpp

    r44436 r44448  
    10471047#endif /* Q_WS_MAC */
    10481048
     1049
     1050UIActionPoolRuntime::UIActionPoolRuntime()
     1051    : UIActionPool(UIActionPoolType_Runtime)
     1052{
     1053    /* Prepare connections: */
     1054    connect(gShortcutPool, SIGNAL(sigMachineShortcutsReloaded()), this, SLOT(sltApplyShortcuts()));
     1055}
    10491056
    10501057QString UIActionPoolRuntime::shortcutsExtraDataID() const
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIActionPoolRuntime.h

    r44434 r44448  
    9393
    9494    /* Constructor: */
    95     UIActionPoolRuntime() : UIActionPool(UIActionPoolType_Runtime) {}
     95    UIActionPoolRuntime();
    9696
    9797    /* Helper: Shortcuts stuff: */
  • trunk/src/VBox/Frontends/VirtualBox/src/selector/UIActionPoolSelector.cpp

    r44435 r44448  
    2020/* Local includes: */
    2121#include "UIActionPoolSelector.h"
     22#include "UIShortcutPool.h"
    2223#include "UIDefs.h"
    2324
     
    975976
    976977
     978UIActionPoolSelector::UIActionPoolSelector()
     979    : UIActionPool(UIActionPoolType_Selector)
     980{
     981    /* Prepare connections: */
     982    connect(gShortcutPool, SIGNAL(sigSelectorShortcutsReloaded()), this, SLOT(sltApplyShortcuts()));
     983}
     984
    977985QString UIActionPoolSelector::shortcutsExtraDataID() const
    978986{
  • trunk/src/VBox/Frontends/VirtualBox/src/selector/UIActionPoolSelector.h

    r44434 r44448  
    8181
    8282    /* Constructor: */
    83     UIActionPoolSelector() : UIActionPool(UIActionPoolType_Selector) {}
     83    UIActionPoolSelector();
    8484
    8585    /* Helper: Shortcuts stuff: */
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette