2006-03-05 17:24:44 +00:00
|
|
|
/**
|
2007-04-26 03:53:02 +00:00
|
|
|
* \file QCommandEdit.cpp
|
2006-03-05 17:24:44 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "QCommandEdit.h"
|
2006-10-22 14:37:32 +00:00
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
#include <QKeyEvent>
|
|
|
|
#include <QEvent>
|
|
|
|
|
2007-08-19 09:44:34 +00:00
|
|
|
#undef KeyPress
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
QCommandEdit::QCommandEdit(QWidget * parent)
|
|
|
|
: QLineEdit(parent)
|
|
|
|
{
|
|
|
|
setFocusPolicy(Qt::ClickFocus);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QCommandEdit::keyPressEvent(QKeyEvent * e)
|
|
|
|
{
|
|
|
|
switch (e->key()) {
|
|
|
|
case Qt::Key_Escape:
|
2006-10-22 14:37:32 +00:00
|
|
|
// emit signal
|
2006-06-30 14:11:50 +00:00
|
|
|
escapePressed();
|
2006-03-05 17:24:44 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Qt::Key_Up:
|
2006-10-22 14:37:32 +00:00
|
|
|
// emit signal
|
2006-06-30 14:11:50 +00:00
|
|
|
upPressed();
|
2006-03-05 17:24:44 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Qt::Key_Down:
|
2006-10-22 14:37:32 +00:00
|
|
|
// emit signal
|
2006-06-30 14:11:50 +00:00
|
|
|
downPressed();
|
2006-03-05 17:24:44 +00:00
|
|
|
break;
|
|
|
|
|
2007-04-29 08:58:09 +00:00
|
|
|
case Qt::Key_X:
|
|
|
|
if (e->modifiers() == Qt::AltModifier
|
|
|
|
|| e->modifiers() == Qt::MetaModifier) {
|
|
|
|
// emit signal
|
|
|
|
hidePressed();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
default:
|
|
|
|
QLineEdit::keyPressEvent(e);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool QCommandEdit::event(QEvent * e)
|
|
|
|
{
|
|
|
|
if (e->type() != QEvent::KeyPress)
|
|
|
|
return QLineEdit::event(e);
|
|
|
|
|
|
|
|
QKeyEvent * ev = (QKeyEvent *)e;
|
|
|
|
|
|
|
|
if (ev->key() != Qt::Key_Tab)
|
|
|
|
return QLineEdit::event(e);
|
|
|
|
|
2006-10-22 14:37:32 +00:00
|
|
|
// emit signal
|
2006-06-30 14:11:50 +00:00
|
|
|
tabPressed();
|
2006-03-05 17:24:44 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
2006-05-18 08:51:12 +00:00
|
|
|
|
|
|
|
#include "QCommandEdit_moc.cpp"
|