mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
f52f6e2d44
git-subtree-dir: src/gui/qocoa git-subtree-split: ffe23cbb2f221bc9eacd1de2134c2947fed71c12
49 lines
1.0 KiB
C++
49 lines
1.0 KiB
C++
#ifndef QSEARCHFIELD_H
|
|
#define QSEARCHFIELD_H
|
|
|
|
#include <QWidget>
|
|
#include <QPointer>
|
|
#include <QMenu>
|
|
|
|
class QSearchFieldPrivate;
|
|
class QSearchField : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QString text READ text WRITE setText NOTIFY textChanged USER true);
|
|
Q_PROPERTY(QString placeholderText READ placeholderText WRITE setPlaceholderText);
|
|
|
|
public:
|
|
explicit QSearchField(QWidget *parent);
|
|
|
|
QString text() const;
|
|
QString placeholderText() const;
|
|
void setFocus(Qt::FocusReason);
|
|
void setMenu(QMenu *menu);
|
|
|
|
public slots:
|
|
void setText(const QString &text);
|
|
void setPlaceholderText(const QString &text);
|
|
void clear();
|
|
void selectAll();
|
|
void setFocus();
|
|
|
|
signals:
|
|
void textChanged(const QString &text);
|
|
void editingFinished();
|
|
void returnPressed();
|
|
|
|
private slots:
|
|
void popupMenu();
|
|
|
|
protected:
|
|
void changeEvent(QEvent*);
|
|
void resizeEvent(QResizeEvent*);
|
|
|
|
private:
|
|
friend class QSearchFieldPrivate;
|
|
QPointer <QSearchFieldPrivate> pimpl;
|
|
};
|
|
|
|
#endif // QSEARCHFIELD_H
|