mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-05 13:03:55 -07:00
* Sort *every* file into a doxygen group. Took 7 hours 9 minutes Took 18 seconds Took 2 minutes * Lint some ingroup definitions. Took 10 minutes Took 2 seconds * Just include the groups in the Doxyfile in this commit. Took 3 minutes * Update some group comments so they link! Took 14 minutes --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
36 lines
611 B
C++
36 lines
611 B
C++
/**
|
|
* @file key_signals.h
|
|
* @ingroup Core
|
|
* @ingroup UI
|
|
* @brief TODO: Document this.
|
|
*/
|
|
|
|
#ifndef KEYSIGNALS_H
|
|
#define KEYSIGNALS_H
|
|
|
|
#include <QEvent>
|
|
#include <QObject>
|
|
|
|
class KeySignals : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
signals:
|
|
void onEnter();
|
|
void onCtrlEnter();
|
|
void onCtrlAltEnter();
|
|
void onShiftLeft();
|
|
void onShiftRight();
|
|
void onDelete();
|
|
void onCtrlAltMinus();
|
|
void onCtrlAltEqual();
|
|
void onCtrlAltLBracket();
|
|
void onCtrlAltRBracket();
|
|
void onShiftS();
|
|
void onCtrlC();
|
|
|
|
protected:
|
|
bool eventFilter(QObject *, QEvent *event) override;
|
|
};
|
|
|
|
#endif
|