
If you don't want to see this commit on blames, use the hidden whitespace option on GitHub, or use `-w` in git-blame.
24 lines
340 B
C++
24 lines
340 B
C++
#ifndef AOLINEEDIT_H
|
|
#define AOLINEEDIT_H
|
|
|
|
#include <QLineEdit>
|
|
#include <QMouseEvent>
|
|
|
|
class AOLineEdit : public QLineEdit {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AOLineEdit(QWidget *parent);
|
|
|
|
protected:
|
|
void mouseDoubleClickEvent(QMouseEvent *e);
|
|
|
|
signals:
|
|
void double_clicked();
|
|
|
|
private slots:
|
|
void on_enter_pressed();
|
|
};
|
|
|
|
#endif // AOLINEEDIT_H
|