1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#pragma once #include <QEvent> #include <QLineEdit> class AOLineEditFilter : public QObject { Q_OBJECT public: bool preserve_selection = false; Q_SIGNALS: void double_clicked(); protected: bool eventFilter(QObject *obj, QEvent *event) override; };