Close variable chooser when pressing escape.

Even if the variable chooser currently doesn't have focus.

Task-number: QTCREATORBUG-7155
Change-Id: Ie3a7527e13dd6c3f37c1abe86a596753d2b8e286
Reviewed-by: Robert Loehning <robert.loehning@digia.com>
This commit is contained in:
Eike Ziller
2012-12-20 15:34:42 +01:00
committed by Robert Loehning
parent ed69c5f9c9
commit cec327bd4a
2 changed files with 22 additions and 3 deletions

View File

@@ -87,7 +87,8 @@ void VariableChooser::updateDescription(const QString &variable)
void VariableChooser::updateCurrentEditor(QWidget *old, QWidget *widget)
{
Q_UNUSED(old)
if (old)
old->removeEventFilter(this);
if (!widget) // we might loose focus, but then keep the previous state
return;
// prevent children of the chooser itself, and limit to children of chooser's parent
@@ -104,6 +105,7 @@ void VariableChooser::updateCurrentEditor(QWidget *old, QWidget *widget)
}
if (!handle)
return;
widget->installEventFilter(this); // for intercepting escape key presses
QLineEdit *previousLineEdit = m_lineEdit;
m_lineEdit = 0;
m_textEdit = 0;
@@ -182,10 +184,26 @@ void VariableChooser::insertVariable(const QString &variable)
}
}
void VariableChooser::keyPressEvent(QKeyEvent *ke)
static bool handleEscapePressed(QKeyEvent *ke, QWidget *widget)
{
if (ke->key() == Qt::Key_Escape && !ke->modifiers()) {
ke->accept();
QTimer::singleShot(0, this, SLOT(close()));
QTimer::singleShot(0, widget, SLOT(close()));
return true;
}
return false;
}
void VariableChooser::keyPressEvent(QKeyEvent *ke)
{
handleEscapePressed(ke, this);
}
bool VariableChooser::eventFilter(QObject *, QEvent *event)
{
if (event->type() == QEvent::KeyPress && isVisible()) {
QKeyEvent *ke = static_cast<QKeyEvent *>(event);
return handleEscapePressed(ke, this);
}
return false;
}

View File

@@ -58,6 +58,7 @@ public:
protected:
void keyPressEvent(QKeyEvent *ke);
bool eventFilter(QObject *, QEvent *event);
private slots:
void updateDescription(const QString &variable);