mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
91baeb2c55
- add ability to remove a Key from the sequence - add ability to modify a sequence without retyping it from scratch git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25783 a592a061-630c-0410-9148-cb99ea01b6c8
51 lines
1.0 KiB
C++
51 lines
1.0 KiB
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
|
|
* \author Jürgen Spitzmüller
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef CUSTOMIZEDWIDGETS_H
|
|
#define CUSTOMIZEDWIDGETS_H
|
|
|
|
#include <QLabel>
|
|
#include "KeySequence.h"
|
|
|
|
class QEvent;
|
|
class QKeyEvent;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
/**
|
|
* A widget for inputting shortcuts
|
|
*/
|
|
class ShortcutWidget : public QLabel {
|
|
Q_OBJECT
|
|
public:
|
|
ShortcutWidget(QWidget * parent);
|
|
void reset();
|
|
bool eventFilter(QObject*, QEvent* e );
|
|
lyx::KeySequence const getKeySequence() const;
|
|
void setKeySequence(lyx::KeySequence const s);
|
|
void removeFromSequence();
|
|
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
|