Prioritize the shortcuts from the work areas

* Fix bug #10261 : KDE smartly adds conflicting accelerators.

* Prevent bugs like #9495 in the future.

Issues (non-regression):

* It does not appear possible to prevent Ubuntu's Unity from grabbing the
  accelerators for the menus. For instance Alt+A still opens _Affichage in the
  French localization.

(cherry picked from commit eb8c5905f6)
This commit is contained in:
Guillaume Munch 2016-07-04 04:23:32 +02:00
parent 7f7d473eb1
commit 2514a6baba
7 changed files with 80 additions and 20 deletions

View File

@ -2082,19 +2082,43 @@ void GuiApplication::handleKeyFunc(FuncCode action)
} }
//Keep this in sync with GuiApplication::processKeySym below
bool GuiApplication::queryKeySym(KeySymbol const & keysym,
KeyModifier state) const
{
// Do nothing if we have nothing
if (!keysym.isOK() || keysym.isModifier())
return false;
// Do a one-deep top-level lookup for cancel and meta-fake keys.
KeySequence seq;
FuncRequest func = seq.addkey(keysym, state);
// When not cancel or meta-fake, do the normal lookup.
if ((func.action() != LFUN_CANCEL) && (func.action() != LFUN_META_PREFIX)) {
seq = d->keyseq;
func = seq.addkey(keysym, (state | d->meta_fake_bit));
}
// Maybe user can only reach the key via holding down shift.
// Let's see. But only if shift is the only modifier
if (func.action() == LFUN_UNKNOWN_ACTION && state == ShiftModifier)
// If addkey looked up a command and did not find further commands then
// seq has been reset at this point
func = seq.addkey(keysym, NoModifier);
LYXERR(Debug::KEY, " Key (queried) [action=" << func.action() << "]["
<< seq.print(KeySequence::Portable) << ']');
return func.action() != LFUN_UNKNOWN_ACTION;
}
//Keep this in sync with GuiApplication::queryKeySym above
void GuiApplication::processKeySym(KeySymbol const & keysym, KeyModifier state) void GuiApplication::processKeySym(KeySymbol const & keysym, KeyModifier state)
{ {
LYXERR(Debug::KEY, "KeySym is " << keysym.getSymbolName()); LYXERR(Debug::KEY, "KeySym is " << keysym.getSymbolName());
// Do nothing if we have nothing (JMarc) // Do nothing if we have nothing (JMarc)
if (!keysym.isOK()) { if (!keysym.isOK() || keysym.isModifier()) {
LYXERR(Debug::KEY, "Empty kbd action (probably composing)"); if (!keysym.isOK())
if (current_view_) LYXERR(Debug::KEY, "Empty kbd action (probably composing)");
current_view_->restartCursor();
return;
}
if (keysym.isModifier()) {
if (current_view_) if (current_view_)
current_view_->restartCursor(); current_view_->restartCursor();
return; return;
@ -2140,6 +2164,8 @@ void GuiApplication::processKeySym(KeySymbol const & keysym, KeyModifier state)
// Let's see. But only if shift is the only modifier // Let's see. But only if shift is the only modifier
if (func.action() == LFUN_UNKNOWN_ACTION && state == ShiftModifier) { if (func.action() == LFUN_UNKNOWN_ACTION && state == ShiftModifier) {
LYXERR(Debug::KEY, "Trying without shift"); LYXERR(Debug::KEY, "Trying without shift");
// If addkey looked up a command and did not find further commands then
// seq has been reset at this point
func = d->keyseq.addkey(keysym, NoModifier); func = d->keyseq.addkey(keysym, NoModifier);
LYXERR(Debug::KEY, "Action now " << func.action()); LYXERR(Debug::KEY, "Action now " << func.action());
} }

View File

@ -165,6 +165,9 @@ public:
#endif #endif
} }
/// return true if the key is part of a shortcut
bool queryKeySym(KeySymbol const & key, KeyModifier state) const;
///
void processKeySym(KeySymbol const & key, KeyModifier state); void processKeySym(KeySymbol const & key, KeyModifier state);
/// return the status bar state string /// return the status bar state string
docstring viewStatusMessage(); docstring viewStatusMessage();

View File

@ -612,7 +612,7 @@ static char encode(string const & encoding, QString const & str)
#endif #endif
void setKeySymbol(KeySymbol * sym, QKeyEvent * ev) void setKeySymbol(KeySymbol * sym, QKeyEvent const * ev)
{ {
sym->setKey(ev->key()); sym->setKey(ev->key());
if (ev->text().isNull()) { if (ev->text().isNull()) {

View File

@ -18,7 +18,7 @@ class QKeyEvent;
namespace lyx { namespace lyx {
/// delayed constructor /// delayed constructor
void setKeySymbol(KeySymbol * sym, QKeyEvent * ev); void setKeySymbol(KeySymbol * sym, QKeyEvent const * ev);
/// return the LyX key state from Qt's /// return the LyX key state from Qt's
KeyModifier q_key_state(Qt::KeyboardModifiers state); KeyModifier q_key_state(Qt::KeyboardModifiers state);

View File

@ -3194,6 +3194,9 @@ void PrefShortcuts::shortcutOkPressed()
shortcutsTW->setCurrentItem(item); shortcutsTW->setCurrentItem(item);
shortcutsTW->scrollToItem(item); shortcutsTW->scrollToItem(item);
} else { } else {
// FIXME: The error message could be more explicit. This can happen in
// particular if the user wants to introduce a LFUN which is Hidden such
// as self-insert.
Alert::error(_("Failed to create shortcut"), Alert::error(_("Failed to create shortcut"),
_("Can not insert shortcut to the list")); _("Can not insert shortcut to the list"));
return; return;

View File

@ -504,6 +504,14 @@ void GuiWorkArea::redraw(bool update_metrics)
} }
// Keep in sync with GuiWorkArea::processKeySym below
bool GuiWorkArea::queryKeySym(KeySymbol const & key, KeyModifier mod) const
{
return guiApp->queryKeySym(key, mod);
}
// Keep in sync with GuiWorkArea::queryKeySym above
void GuiWorkArea::processKeySym(KeySymbol const & key, KeyModifier mod) void GuiWorkArea::processKeySym(KeySymbol const & key, KeyModifier mod)
{ {
if (d->lyx_view_->isFullScreen() && d->lyx_view_->menuBar()->isVisible() if (d->lyx_view_->isFullScreen() && d->lyx_view_->menuBar()->isVisible()
@ -723,6 +731,12 @@ bool GuiWorkArea::event(QEvent * e)
return true; return true;
} }
case QEvent::ShortcutOverride:
// keyPressEvent is ShortcutOverride-aware and only accepts the event in
// this case
keyPressEvent(static_cast<QKeyEvent *>(e));
return e->isAccepted();
case QEvent::KeyPress: { case QEvent::KeyPress: {
// We catch this event in order to catch the Tab or Shift+Tab key press // We catch this event in order to catch the Tab or Shift+Tab key press
// which are otherwise reserved to focus switching between controls // which are otherwise reserved to focus switching between controls
@ -1037,6 +1051,10 @@ void GuiWorkArea::generateSyntheticMouseEvent()
void GuiWorkArea::keyPressEvent(QKeyEvent * ev) void GuiWorkArea::keyPressEvent(QKeyEvent * ev)
{ {
// this is also called for ShortcutOverride events. In this case, one must
// not act but simply accept the event explicitly.
bool const act = (ev->type() != QEvent::ShortcutOverride);
// Do not process here some keys if dialog_mode_ is set // Do not process here some keys if dialog_mode_ is set
if (d->dialog_mode_ if (d->dialog_mode_
&& (ev->modifiers() == Qt::NoModifier && (ev->modifiers() == Qt::NoModifier
@ -1054,7 +1072,8 @@ void GuiWorkArea::keyPressEvent(QKeyEvent * ev)
switch (ev->key()) { switch (ev->key()) {
case Qt::Key_Enter: case Qt::Key_Enter:
case Qt::Key_Return: case Qt::Key_Return:
d->completer_->activate(); if (act)
d->completer_->activate();
ev->accept(); ev->accept();
return; return;
} }
@ -1064,7 +1083,9 @@ void GuiWorkArea::keyPressEvent(QKeyEvent * ev)
// (the auto repeated events come too fast) // (the auto repeated events come too fast)
// it looks like this is only needed on X11 // it looks like this is only needed on X11
#if defined(Q_WS_X11) || defined(QPA_XCB) #if defined(Q_WS_X11) || defined(QPA_XCB)
if (qApp->hasPendingEvents() && ev->isAutoRepeat()) { // FIXME: this is a weird way to implement event compression. Also, this is
// broken with IBus.
if (act && qApp->hasPendingEvents() && ev->isAutoRepeat()) {
switch (ev->key()) { switch (ev->key()) {
case Qt::Key_PageDown: case Qt::Key_PageDown:
case Qt::Key_PageUp: case Qt::Key_PageUp:
@ -1079,7 +1100,7 @@ void GuiWorkArea::keyPressEvent(QKeyEvent * ev)
} }
#endif #endif
KeyModifier m = q_key_state(ev->modifiers()); KeyModifier const m = q_key_state(ev->modifiers());
std::string str; std::string str;
if (m & ShiftModifier) if (m & ShiftModifier)
@ -1090,16 +1111,20 @@ void GuiWorkArea::keyPressEvent(QKeyEvent * ev)
str += "Alt-"; str += "Alt-";
if (m & MetaModifier) if (m & MetaModifier)
str += "Meta-"; str += "Meta-";
LYXERR(Debug::KEY, " count: " << ev->count() << " text: " << ev->text() if (act)
<< " isAutoRepeat: " << ev->isAutoRepeat() << " key: " << ev->key() LYXERR(Debug::KEY, " count: " << ev->count() << " text: " << ev->text()
<< " keyState: " << str); << " isAutoRepeat: " << ev->isAutoRepeat() << " key: " << ev->key()
<< " keyState: " << str);
KeySymbol sym; KeySymbol sym;
setKeySymbol(&sym, ev); setKeySymbol(&sym, ev);
if (sym.isOK()) { if (sym.isOK()) {
processKeySym(sym, q_key_state(ev->modifiers())); if (act) {
ev->accept(); processKeySym(sym, m);
ev->accept();
} else
ev->setAccepted(queryKeySym(sym, m));
} else { } else {
ev->ignore(); ev->ignore();
} }

View File

@ -68,6 +68,8 @@ public:
/// ///
void redraw(bool update_metrics); void redraw(bool update_metrics);
/// return true if the key is part of a shortcut
bool queryKeySym(KeySymbol const & key, KeyModifier mod) const;
/// Process Key pressed event. /// Process Key pressed event.
/// This needs to be public because it is accessed externally by GuiView. /// This needs to be public because it is accessed externally by GuiView.
void processKeySym(KeySymbol const & key, KeyModifier mod); void processKeySym(KeySymbol const & key, KeyModifier mod);
@ -141,7 +143,8 @@ private:
void mouseMoveEvent(QMouseEvent * ev); void mouseMoveEvent(QMouseEvent * ev);
/// wheel event /// wheel event
void wheelEvent(QWheelEvent * ev); void wheelEvent(QWheelEvent * ev);
/// key press /// key press event. It also knows how to handle ShortcutOverride events to
/// avoid code duplication.
void keyPressEvent(QKeyEvent * ev); void keyPressEvent(QKeyEvent * ev);
/// IM events /// IM events
void inputMethodEvent(QInputMethodEvent * ev); void inputMethodEvent(QInputMethodEvent * ev);