forked from Public/monero-gui
shortcuts fix + ctrl+tab/ctrl+shift+tab functionality + heperlinks fix
This commit is contained in:
9
filter.h
9
filter.h
@@ -6,10 +6,8 @@
|
||||
class filter : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
private:
|
||||
bool m_altPressed;
|
||||
bool m_mousePressed;
|
||||
bool m_tabPressed;
|
||||
|
||||
public:
|
||||
explicit filter(QObject *parent = 0);
|
||||
@@ -18,9 +16,8 @@ protected:
|
||||
bool eventFilter(QObject *obj, QEvent *ev);
|
||||
|
||||
signals:
|
||||
void altPressed();
|
||||
void altReleased();
|
||||
void sequencePressed(const QVariant &seq);
|
||||
void sequencePressed(const QVariant &o, const QVariant &seq);
|
||||
void sequenceReleased(const QVariant &o, const QVariant &seq);
|
||||
void mousePressed(const QVariant &o, const QVariant &x, const QVariant &y);
|
||||
void mouseReleased(const QVariant &o, const QVariant &x, const QVariant &y);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user