lyx_mirror/src/frontends/qt/GuiCommandEdit.h
Yuriy Skalko d82adc625b Amend efc0877f
Add more `override` specifiers. Replace `throw()` to `noexcept`.
2020-10-05 09:37:15 +02:00

50 lines
839 B
C++

// -*- C++ -*-
/**
* \file GuiCommandEdit.h
* 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.
*/
#ifndef GUICOMMANDEDIT_H
#define GUICOMMANDEDIT_H
#include <QLineEdit>
#include <QKeyEvent>
#include <QEvent>
namespace lyx {
namespace frontend {
class GuiCommandEdit : public QLineEdit
{
Q_OBJECT
public:
GuiCommandEdit(QWidget * parent);
Q_SIGNALS:
/// cancel
void escapePressed();
/// up history
void upPressed();
/// down history
void downPressed();
/// complete
void tabPressed();
protected:
///
virtual bool event(QEvent * e) override;
///
virtual void keyPressEvent(QKeyEvent * e) override;
};
} // namespace frontend
} // namespace lyx
#endif // GUICOMMANDEDIT_H