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
|
/*
* This file is part of smolbote. It's copyrighted by the contributors recorded
* in the version control history of the file, available from its original
* location: git://neueland.iserlohn-fortress.net/smolbote.git
*
* SPDX-License-Identifier: GPL-3.0
*/
#include "searchform.h"
#include "../mainwindow.h"
#include "ui_searchform.h"
#include <settings/configuration.h>
SearchForm::SearchForm(MainWindow *parentWindow, QWidget *parent)
: QWidget(parent)
, ui(new Ui::SearchForm)
{
Q_CHECK_PTR(parentWindow);
ui->setupUi(this);
ui->lineEdit->setPlaceholderText(tr("Search"));
ui->lineEdit->setClearButtonEnabled(true);
// show/hide action
QAction *toggleSearchBox = new QAction(this);
toggleSearchBox->setShortcut(QKeySequence(QString::fromStdString(parentWindow->m_config->value<std::string>("browser.shortcuts.toggleSearchBox").value())));
connect(toggleSearchBox, &QAction::triggered, this, [this, parentWindow]() {
if(isVisible()) {
setVisible(false);
// remove highlighting by passing an empty string
parentWindow->m_currentView->findText("");
} else {
setVisible(true);
setFocus();
}
});
parentWindow->addAction(toggleSearchBox);
connect(ui->lineEdit, &QLineEdit::returnPressed, this, [this, parentWindow]() {
QWebEnginePage::FindFlags searchFlags;
searchFlags.setFlag(QWebEnginePage::FindCaseSensitively, ui->caseSensitivity_checkBox->isChecked());
searchFlags.setFlag(QWebEnginePage::FindBackward, ui->reverseSearch_checkBox->isChecked());
parentWindow->m_currentView->findText(ui->lineEdit->text(), searchFlags);
});
}
SearchForm::~SearchForm()
{
delete ui;
}
void SearchForm::focusInEvent(QFocusEvent *e)
{
ui->lineEdit->setFocus();
QWidget::focusInEvent(e);
}
|