mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
608236c0db
- 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
48 lines
949 B
C++
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
|