blob: 5324554d66ccd33e143b6ae04e2bd2e02f805ed8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
// Copyright 2018 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include "DolphinQt/SearchBar.h"
#include <QEvent>
#include <QHBoxLayout>
#include <QKeyEvent>
#include <QLineEdit>
#include <QPushButton>
SearchBar::SearchBar(QWidget* parent) : QWidget(parent)
{
CreateWidgets();
ConnectWidgets();
setFixedHeight(32);
setHidden(true);
installEventFilter(this);
}
void SearchBar::CreateWidgets()
{
m_search_edit = new QLineEdit;
m_close_button = new QPushButton(tr("Close"));
m_search_edit->setPlaceholderText(tr("Search games..."));
auto* layout = new QHBoxLayout;
layout->addWidget(m_search_edit);
layout->addWidget(m_close_button);
layout->setSizeConstraint(QLayout::SetMinAndMaxSize);
setLayout(layout);
}
void SearchBar::Show()
{
m_search_edit->setFocus();
m_search_edit->selectAll();
// Re-apply the filter string.
emit Search(m_search_edit->text());
show();
}
void SearchBar::Hide()
{
// Clear the filter string.
emit Search(QString());
m_search_edit->clearFocus();
hide();
}
void SearchBar::ConnectWidgets()
{
connect(m_search_edit, &QLineEdit::textChanged, this, &SearchBar::Search);
connect(m_close_button, &QPushButton::clicked, this, &SearchBar::Hide);
}
bool SearchBar::eventFilter(QObject* object, QEvent* event)
{
if (event->type() == QEvent::KeyPress)
{
if (static_cast<QKeyEvent*>(event)->key() == Qt::Key_Escape)
Hide();
}
return false;
}
|