forked from organicmaps/organicmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch_panel.cpp
367 lines (308 loc) · 10.4 KB
/
search_panel.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
#include "qt/search_panel.hpp"
#include "qt/draw_widget.hpp"
#include "search/search_params.hpp"
#include "map/bookmark_manager.hpp"
#include "map/framework.hpp"
#include "base/assert.hpp"
#include <QtCore/QTimer>
#include <QtGui/QGuiApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QCheckBox>
#include <QtWidgets/QGroupBox>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QLabel>
#include <QtWidgets/QLineEdit>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QRadioButton>
#include <QtWidgets/QTableWidget>
#include <QtWidgets/QVBoxLayout>
namespace qt
{
SearchPanel::SearchPanel(DrawWidget * drawWidget, QWidget * parent)
: QWidget(parent)
, m_pDrawWidget(drawWidget)
, m_clearIcon(":/ui/x.png")
, m_busyIcon(":/ui/busy.png")
, m_mode(search::Mode::Everywhere)
, m_timestamp(0)
{
m_pEditor = new QLineEdit(this);
connect(m_pEditor, &QLineEdit::textChanged, this, &SearchPanel::OnSearchTextChanged);
m_pTable = new QTableWidget(0, 4 /*columns*/, this);
m_pTable->setFocusPolicy(Qt::NoFocus);
m_pTable->setAlternatingRowColors(true);
m_pTable->setShowGrid(false);
m_pTable->setSelectionBehavior(QAbstractItemView::SelectRows);
m_pTable->verticalHeader()->setVisible(false);
m_pTable->horizontalHeader()->setVisible(false);
m_pTable->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents);
connect(m_pTable, &QTableWidget::cellClicked, this, &SearchPanel::OnSearchPanelItemClicked);
m_pClearButton = new QPushButton(this);
connect(m_pClearButton, &QAbstractButton::pressed, this, &SearchPanel::OnClearButton);
m_pClearButton->setVisible(false);
m_pClearButton->setFocusPolicy(Qt::NoFocus);
m_pAnimationTimer = new QTimer(this);
connect(m_pAnimationTimer, &QTimer::timeout, this, &SearchPanel::OnAnimationTimer);
QButtonGroup * searchModeButtons = new QButtonGroup(this);
QGroupBox * groupBox = new QGroupBox();
QHBoxLayout * modeLayout = new QHBoxLayout();
QRadioButton * buttonE = new QRadioButton(tr("Everywhere"));
modeLayout->addWidget(buttonE);
searchModeButtons->addButton(buttonE, static_cast<int>(search::Mode::Everywhere));
QRadioButton * buttonV = new QRadioButton(tr("Viewport"));
modeLayout->addWidget(buttonV);
searchModeButtons->addButton(buttonV, static_cast<int>(search::Mode::Viewport));
groupBox->setLayout(modeLayout);
groupBox->setFlat(true);
searchModeButtons->button(static_cast<int>(search::Mode::Everywhere))->setChecked(true);
connect(searchModeButtons, SIGNAL(idClicked(int)), this, SLOT(OnSearchModeChanged(int)));
m_isCategory = new QCheckBox(tr("Category request"));
m_isCategory->setCheckState(Qt::Unchecked);
connect(m_isCategory, &QCheckBox::stateChanged, std::bind(&SearchPanel::RunSearch, this));
QHBoxLayout * requestLayout = new QHBoxLayout();
requestLayout->addWidget(m_pEditor);
requestLayout->addWidget(m_pClearButton);
QVBoxLayout * verticalLayout = new QVBoxLayout();
verticalLayout->addWidget(groupBox);
verticalLayout->addWidget(m_isCategory);
verticalLayout->addLayout(requestLayout);
verticalLayout->addWidget(m_pTable);
setLayout(verticalLayout);
}
namespace
{
QTableWidgetItem * CreateItem(std::string const & s)
{
QTableWidgetItem * item = new QTableWidgetItem(QString::fromStdString(s));
item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
return item;
}
} // namespace
void SearchPanel::ClearTable()
{
m_pTable->clear();
m_pTable->setRowCount(0);
}
void SearchPanel::ClearResults()
{
ClearTable();
m_results.Clear();
GetFramework().GetBookmarkManager().GetEditSession().ClearGroup(UserMark::Type::SEARCH);
}
void SearchPanel::StartBusyIndicator()
{
if (!m_pAnimationTimer->isActive())
m_pAnimationTimer->start(200 /* milliseconds */);
m_pClearButton->setFlat(true);
m_pClearButton->setVisible(true);
}
void SearchPanel::StopBusyIndicator()
{
m_pAnimationTimer->stop();
m_pClearButton->setIcon(m_clearIcon);
}
void SearchPanel::OnEverywhereSearchResults(uint64_t timestamp, search::Results results)
{
CHECK(m_threadChecker.CalledOnOriginalThread(), ());
CHECK_LESS_OR_EQUAL(timestamp, m_timestamp, ());
if (timestamp != m_timestamp)
return;
m_results = std::move(results);
ClearTable();
for (auto const & res : m_results)
{
QString const name = QString::fromStdString(res.GetString());
QString strHigh;
int pos = 0;
for (size_t r = 0; r < res.GetHighlightRangesCount(); ++r)
{
std::pair<uint16_t, uint16_t> const & range = res.GetHighlightRange(r);
strHigh.append(name.mid(pos, range.first - pos));
strHigh.append("<font color=\"green\">");
strHigh.append(name.mid(range.first, range.second));
strHigh.append("</font>");
pos = range.first + range.second;
}
strHigh.append(name.mid(pos));
int const rowCount = m_pTable->rowCount();
m_pTable->insertRow(rowCount);
m_pTable->setCellWidget(rowCount, 1, new QLabel(strHigh));
m_pTable->setItem(rowCount, 2, CreateItem(res.GetAddress()));
bool showDistance = true;
switch (res.GetResultType())
{
case search::Result::Type::SuggestFromFeature:
case search::Result::Type::PureSuggest:
showDistance = false;
break;
case search::Result::Type::Feature:
case search::Result::Type::Postcode:
m_pTable->setItem(rowCount, 0, CreateItem(res.GetLocalizedFeatureType()));
break;
case search::Result::Type::LatLon:
m_pTable->setItem(rowCount, 0, CreateItem("LatLon"));
break;
}
if (showDistance)
m_pTable->setItem(rowCount, 3, CreateItem(m_pDrawWidget->GetDistance(res)));
}
GetFramework().FillSearchResultsMarks(true /* clear */, m_results);
if (m_results.IsEndMarker())
StopBusyIndicator();
}
bool SearchPanel::Try3dModeCmd(std::string const & str)
{
bool const is3dModeOn = (str == "?3d");
bool const is3dBuildingsOn = (str == "?b3d");
bool const is3dModeOff = (str == "?2d");
if (!is3dModeOn && !is3dBuildingsOn && !is3dModeOff)
return false;
GetFramework().Save3dMode(is3dModeOn || is3dBuildingsOn, is3dBuildingsOn);
GetFramework().Allow3dMode(is3dModeOn || is3dBuildingsOn, is3dBuildingsOn);
return true;
}
bool SearchPanel::TryTrafficSimplifiedColorsCmd(std::string const & str)
{
bool const simplifiedMode = (str == "?tc:simp");
bool const normalMode = (str == "?tc:norm");
if (!simplifiedMode && !normalMode)
return false;
bool const isSimplified = simplifiedMode;
GetFramework().GetTrafficManager().SetSimplifiedColorScheme(isSimplified);
GetFramework().SaveTrafficSimplifiedColors(isSimplified);
return true;
}
std::string SearchPanel::GetCurrentInputLocale()
{
/// @DebugNote
// Hardcode search input language.
//return "de";
QString loc = QGuiApplication::inputMethod()->locale().name();
loc.replace('_', '-');
auto res = loc.toStdString();
if (CategoriesHolder::MapLocaleToInteger(res) < 0)
res = "en";
return res;
}
void SearchPanel::OnSearchTextChanged(QString const & str)
{
// Pass input query as-is without any normalization.
// Otherwise № -> No, and it's unexpectable for the search index.
//QString const normalized = str.normalized(QString::NormalizationForm_KC);
std::string const normalized = str.toStdString();
if (Try3dModeCmd(normalized))
return;
if (TryTrafficSimplifiedColorsCmd(normalized))
return;
ClearResults();
if (normalized.empty())
{
GetFramework().GetSearchAPI().CancelAllSearches();
// hide X button
m_pClearButton->setVisible(false);
return;
}
bool const isCategory = m_isCategory->isChecked();
auto const timestamp = ++m_timestamp;
using namespace search;
if (m_mode == Mode::Everywhere)
{
EverywhereSearchParams params
{
normalized, GetCurrentInputLocale(), {} /* timeout */, isCategory,
// m_onResults
[this, timestamp](Results results, std::vector<ProductInfo> /* productInfo */)
{
OnEverywhereSearchResults(timestamp, std::move(results));
}
};
if (GetFramework().GetSearchAPI().SearchEverywhere(std::move(params)))
StartBusyIndicator();
}
else if (m_mode == Mode::Viewport)
{
ViewportSearchParams params
{
normalized, GetCurrentInputLocale(), {} /* timeout */, isCategory,
// m_onStarted
[this]()
{
StartBusyIndicator();
},
// m_onCompleted
[this](search::Results results)
{
// |m_pTable| is not updated here because the OnResults callback is recreated within
// SearchAPI when the viewport is changed. Thus a single call to SearchInViewport may
// initiate an arbitrary amount of actual search requests with different viewports, and
// clearing the table would require additional care (or, most likely, we would need a better
// API). This is similar to the Android and iOS clients where we do not show the list of
// results in the viewport search mode.
GetFramework().FillSearchResultsMarks(true /* clear */, results);
StopBusyIndicator();
}
};
GetFramework().GetSearchAPI().SearchInViewport(std::move(params));
}
}
void SearchPanel::OnSearchModeChanged(int mode)
{
auto const newMode = static_cast<search::Mode>(mode);
switch (newMode)
{
case search::Mode::Everywhere:
case search::Mode::Viewport:
break;
default:
UNREACHABLE();
}
if (m_mode == newMode)
return;
m_mode = newMode;
RunSearch();
}
void SearchPanel::RunSearch()
{
auto const text = m_pEditor->text();
m_pEditor->setText(QString());
m_pEditor->setText(text);
}
void SearchPanel::OnSearchPanelItemClicked(int row, int)
{
ASSERT_EQUAL(m_results.GetCount(), static_cast<size_t>(m_pTable->rowCount()), ());
if (m_results[row].IsSuggest())
{
// insert suggestion into the search bar
std::string const suggestion = m_results[row].GetSuggestionString();
m_pEditor->setText(QString::fromUtf8(suggestion.c_str()));
}
else
{
// center viewport on clicked item
GetFramework().ShowSearchResult(m_results[row]);
}
}
void SearchPanel::hideEvent(QHideEvent *)
{
GetFramework().GetSearchAPI().CancelSearch(search::Mode::Everywhere);
}
void SearchPanel::OnAnimationTimer()
{
static int angle = 0;
QTransform transform;
angle += 15;
if (angle >= 360)
angle = 0;
transform.rotate(angle);
m_pClearButton->setIcon(QIcon(m_busyIcon.transformed(transform)));
}
void SearchPanel::OnClearButton()
{
m_pEditor->setText("");
}
Framework & SearchPanel::GetFramework() const
{
return m_pDrawWidget->GetFramework();
}
} // namespace qt