-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathspacesearchbox.cpp
102 lines (86 loc) · 2.63 KB
/
spacesearchbox.cpp
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#include "spacesearchbox.h"
SpaceSearchBox::SpaceSearchBox(QWidget *parent) : QLineEdit(parent)
{
}
void SpaceSearchBox::focusInEvent(QFocusEvent *event) {
event->accept();
updateText();
this->selectAll();
this->setCursor(QCursor(Qt::IBeamCursor));
emit GotFocus();
}
void SpaceSearchBox::focusOutEvent(QFocusEvent *event) {
event->accept();
updateText();
this->setCursor(QCursor(Qt::ArrowCursor));
}
void SpaceSearchBox::setCurrentUrl(QUrl currentUrl) {
url = currentUrl;
if (!this->hasFocus()) {
updateText();
}
}
QUrl SpaceSearchBox::currentUrl() {
return url;
}
void SpaceSearchBox::setCurrentSecurity(SecurityType securityType) {
this->sec = securityType;
}
void SpaceSearchBox::updateText() {
if (currentUrl().host().startsWith("www.google.")) {
QString query;
QStringList params = currentUrl().query().split("&");
for (QString p : params) {
if (p.startsWith("q")) {
query = p.split("=").at(1);
}
}
if (query == "") {
params = currentUrl().fragment().split("&");
for (QString p : params) {
if (p.startsWith("q")) {
query = p.split("=").at(1);
}
}
if (query == "") {
if (this->hasFocus()) {
this->setText(currentUrl().toString());
} else {
this->setText(currentUrl().host());
}
} else {
this->setText(query.replace("+", " "));
}
} else {
this->setText(query.replace("+", " "));
}
} else {
if (this->hasFocus()) {
this->setText(currentUrl().toString());
} else {
this->setText(currentUrl().host());
}
}
}
SpaceSearchBox::SecurityType SpaceSearchBox::CurrentSecurity() {
return sec;
}
void SpaceSearchBox::setHoverText(QString text) {
hoverText = text;
this->update();
}
void SpaceSearchBox::clearHoverText() {
hoverText = "";
this->update();
}
void SpaceSearchBox::paintEvent(QPaintEvent *event) {
QLineEdit::paintEvent(event);
if (hoverText != "") {
int width = this->width() - 30;
width -= this->fontMetrics().width(this->text());
QString renderText = this->fontMetrics().elidedText(hoverText, Qt::ElideMiddle, width);
QPainter painter(this);
painter.setPen(this->palette().color(QPalette::Disabled, QPalette::WindowText));
painter.drawText(0, 0, this->width() - 5, this->height(), Qt::AlignVCenter | Qt::AlignRight, renderText);
}
}