mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-04 22:27:28 +03:00
29 lines
647 B
C++
29 lines
647 B
C++
/****************************************************************************
|
|
**
|
|
** Copyright (c) 2007 Trolltech ASA <info@trolltech.com>
|
|
**
|
|
** Use, modification and distribution is allowed without limitation,
|
|
** warranty, liability or support of any kind.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <QLineEdit>
|
|
|
|
class QToolButton;
|
|
|
|
class LineEdit final : public QLineEdit
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
LineEdit(QWidget *parent);
|
|
|
|
protected:
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
void keyPressEvent(QKeyEvent *event) override;
|
|
|
|
private:
|
|
QToolButton *m_searchButton;
|
|
};
|