forked from organicmaps/organicmaps
[qt] [routing] Removed a temporary debugging command.
The proper way to change the router is by pressing the routing button first. The button did not exist when this command was introduced.
This commit is contained in:
parent
dc3449e422
commit
0ba54fdb5d
2 changed files with 0 additions and 24 deletions
|
@ -134,27 +134,6 @@ void SearchPanel::OnSearchResults(uint64_t timestamp, search::Results const & re
|
|||
}
|
||||
}
|
||||
|
||||
// TODO: This code only for demonstration purposes and will be removed soon
|
||||
bool SearchPanel::TryChangeRouterCmd(QString const & str)
|
||||
{
|
||||
routing::RouterType routerType;
|
||||
if (str == "?pedestrian")
|
||||
routerType = routing::RouterType::Pedestrian;
|
||||
else if (str == "?vehicle")
|
||||
routerType = routing::RouterType::Vehicle;
|
||||
else if (str == "?bicycle")
|
||||
routerType = routing::RouterType::Bicycle;
|
||||
else if (str == "?transit")
|
||||
routerType = routing::RouterType::Transit;
|
||||
else
|
||||
return false;
|
||||
|
||||
m_pEditor->setText("");
|
||||
parentWidget()->hide();
|
||||
m_pDrawWidget->SetRouter(routerType);
|
||||
return true;
|
||||
}
|
||||
|
||||
// TODO: This code only for demonstration purposes and will be removed soon
|
||||
bool SearchPanel::Try3dModeCmd(QString const & str)
|
||||
{
|
||||
|
@ -213,8 +192,6 @@ void SearchPanel::OnSearchTextChanged(QString const & str)
|
|||
QString const normalized = str.normalized(QString::NormalizationForm_KC);
|
||||
|
||||
// TODO: This code only for demonstration purposes and will be removed soon
|
||||
if (TryChangeRouterCmd(normalized))
|
||||
return;
|
||||
if (Try3dModeCmd(normalized))
|
||||
return;
|
||||
if (TryDisplacementModeCmd(normalized))
|
||||
|
|
|
@ -56,7 +56,6 @@ private slots:
|
|||
void OnAnimationTimer();
|
||||
void OnClearButton();
|
||||
|
||||
bool TryChangeRouterCmd(QString const & str);
|
||||
bool Try3dModeCmd(QString const & str);
|
||||
bool TryDisplacementModeCmd(QString const & str);
|
||||
bool TryTrafficSimplifiedColorsCmd(QString const & str);
|
||||
|
|
Loading…
Add table
Reference in a new issue