lyx_mirror/src/frontends/qt4/CustomizedWidgets.h
André Pönitz f1cba8ff64 more latin1..utf8 schanges. all of src/* should be utf8 now
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27425 a592a061-630c-0410-9148-cb99ea01b6c8
2008-11-14 15:58:50 +00:00

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 );
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);
KeySequence keysequence_;
bool has_cursor_;
};
} // namespace frontend
} // namespace lyx
#endif // CUSTOMIZEDWIDGETS_H