lyx_mirror/src/frontends/qt4/CustomizedWidgets.h
Edwin Leuven 608236c0db - add label and remove subclassed SearchLineEdit
- put ShortcutLineEdit in namespace lyx::frontend
- additional dialog layout tweaks

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21254 a592a061-630c-0410-9148-cb99ea01b6c8
2007-10-29 08:56:30 +00:00

48 lines
949 B
C++

// -*- C++ -*-
/**
* \file CustomizedWidgets.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Bo Peng
* \author Edwin Leuven
*
* Full author contact details are available in file CREDITS.
*/
#ifndef CUSTOMIZEDWIDGETS_H
#define CUSTOMIZEDWIDGETS_H
#include <QLineEdit>
#include "KeySequence.h"
class QEvent;
class QKeyEvent;
namespace lyx {
namespace frontend {
/**
* A lineedit for inputting shortcuts
*/
class ShortcutLineEdit : public QLineEdit {
Q_OBJECT
public:
ShortcutLineEdit(QWidget * parent);
void reset();
bool eventFilter(QObject*, QEvent* e );
lyx::KeySequence const getKeySequence() const;
protected Q_SLOTS:
bool event(QEvent* e);
void keyPressEvent(QKeyEvent * e);
private:
void appendToSequence(QKeyEvent * e);
lyx::KeySequence keysequence_;
bool has_cursor_;
};
} // namespace frontend
} // namespace lyx
#endif // CUSTOMIZEDWIDGETS_H