-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patholdOnSearchButtonClick.cpp
More file actions
84 lines (71 loc) · 2.54 KB
/
Copy patholdOnSearchButtonClick.cpp
File metadata and controls
84 lines (71 loc) · 2.54 KB
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
77
78
79
80
81
82
83
84
void MainWindow::on_searchButton_clicked() {
QPushButton *buttonSender = qobject_cast<QPushButton*>(sender());
QHash<QWidget*, int>::const_iterator i = _totalWindows.find(buttonSender->parentWidget());
QWidget *widget = nullptr;
int place;
QTextEdit* textEdit;
QLineEdit* lineEdit;
QString plainText;
if(i != _totalWindows.end()) {
widget = i.key();
place = i.value();
}
if(widget != nullptr) {
textEdit = _textEditPerWindow[place];
plainText = textEdit->toPlainText();
lineEdit = _searchBarRecord[place];
QString wordToHighLight = lineEdit->text();
QStringList list = plainText.split(" ");
QStringList trimmedList;
for(int i = 0; i < list.size(); i++) {
QString tmp = list.at(i);
trimmedList << tmp.trimmed();
}
QStringList alteredList;
for(int i = 0; i < trimmedList.size(); i++) {
if(trimmedList.at(i) == wordToHighLight.trimmed()) {
QString tmp = "<span style='background-color: red;'>";
tmp += trimmedList.at(i);
tmp += "</span>";
alteredList << tmp;
} else {
alteredList << trimmedList.at(i);
}
}
QString newList = alteredList.join(" ");
textEdit->setHtml(newList);
}
}
void MainWindow::on_searchButton_clicked() {
QPushButton *buttonSender = qobject_cast<QPushButton*>(sender());
QHash<QWidget*, int>::const_iterator i = _totalWindows.find(buttonSender->parentWidget());
QWidget *widget = nullptr;
int place;
QTextEdit* textEdit;
QLineEdit* lineEdit;
QString plainText;
if(i != _totalWindows.end()) {
widget = i.key();
place = i.value();
}
if(widget != nullptr) {
textEdit = _textEditPerWindow[place];
plainText = textEdit->toPlainText();
lineEdit = _searchBarRecord[place];
QString wordToHighLight = lineEdit->text();
QStringList list = plainText.split(" ");
QStringList alteredList;
for(int i = 0; i < trimmedList.size(); i++) {
if(trimmedList.at(i) == wordToHighLight.trimmed()) {
QString tmp = "<span style='background-color: red;'>";
tmp += trimmedList.at(i);
tmp += "</span>";
alteredList << tmp;
} else {
alteredList << trimmedList.at(i);
}
}
QString newList = alteredList.join(" ");
textEdit->setHtml(newList);
}
}