/**************************************************************************** ** ** Copyright (c) 2007 Trolltech ASA ** ** Use, modification and distribution is allowed without limitation, ** warranty, liability or support of any kind. ** ****************************************************************************/ #ifndef LINEEDIT_H #define LINEEDIT_H #include class QToolButton; class LineEdit : public QLineEdit { Q_OBJECT public: LineEdit(QWidget *parent); protected: void resizeEvent(QResizeEvent *e) override; void keyPressEvent(QKeyEvent *event) override; private: QToolButton *m_searchButton; }; #endif // LIENEDIT_H