qBittorrent/src/gui/lineedit.h

30 lines
647 B
C
Raw Normal View History

2014-12-20 20:29:17 +03:00
/****************************************************************************
**
** 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
2014-12-20 20:29:17 +03:00
#include <QLineEdit>
class QToolButton;
class LineEdit final : public QLineEdit
2014-12-20 20:29:17 +03:00
{
Q_OBJECT
2014-12-20 20:29:17 +03:00
public:
LineEdit(QWidget *parent);
2014-12-20 20:29:17 +03:00
protected:
void resizeEvent(QResizeEvent *e) override;
2018-05-23 23:41:13 +03:00
void keyPressEvent(QKeyEvent *event) override;
2014-12-20 20:29:17 +03:00
private:
QToolButton *m_searchButton;
2014-12-20 20:29:17 +03:00
};