[qt][editor] Display copyable coordinates for convenience.

This commit is contained in:
Alex Zolotarev 2016-01-16 21:47:15 +03:00 committed by Sergey Yershov
parent 89a7e22666
commit cb2d67f229

View file

@ -6,6 +6,7 @@
#include "indexer/classificator.hpp"
#include "indexer/feature.hpp"
#include "indexer/feature_algo.hpp"
#include "indexer/osm_editor.hpp"
#include "base/collection_cast.hpp"
@ -34,6 +35,16 @@ EditorDialog::EditorDialog(QWidget * parent, FeatureType const & feature, Framew
QVBoxLayout * vLayout = new QVBoxLayout();
// Zero uneditable row: coordinates.
ms::LatLon const ll = MercatorBounds::ToLatLon(feature::GetCenter(feature));
QHBoxLayout * coordinatesRow = new QHBoxLayout();
coordinatesRow->addWidget(new QLabel("Latitude, Longitude:"));
QLabel * coords = new QLabel(QString::fromStdString(strings::to_string_dac(ll.lat, 6) +
"," + strings::to_string_dac(ll.lon, 6)));
coords->setTextInteractionFlags(Qt::TextSelectableByMouse);
coordinatesRow->addWidget(coords);
vLayout->addLayout(coordinatesRow);
// First uneditable row: feature types.
string strTypes;
feature.ForEachType([&strTypes](uint32_t type)