diff --git a/qt/place_page_dialog_user.cpp b/qt/place_page_dialog_user.cpp
index 89e3766790..76118f12bd 100644
--- a/qt/place_page_dialog_user.cpp
+++ b/qt/place_page_dialog_user.cpp
@@ -22,6 +22,22 @@ namespace
static int constexpr kMaxLengthOfPlacePageDescription = 500;
static int constexpr kMinWidthOfShortDescription = 390;
+std::string getShortDescription(const std::string & description)
+{
+ std::string_view view(description);
+
+ auto const paragraphStart = view.find("
");
+ auto const paragraphEnd = view.find("
");
+
+ if (paragraphStart == 0 && paragraphEnd != std::string::npos)
+ view = view.substr(3, paragraphEnd - 3);
+
+ if (view.length() > kMaxLengthOfPlacePageDescription)
+ return std::string(view.substr(0, kMaxLengthOfPlacePageDescription - 3)) + "...";
+
+ return std::string(view);
+}
+
std::string_view stripSchemeFromURI(std::string_view uri) {
for (std::string_view prefix : {"https://", "http://"})
{
@@ -53,13 +69,25 @@ PlacePageDialogUser::PlacePageDialogUser(QWidget * parent, place_page::Info cons
QVBoxLayout * header = new QVBoxLayout();
if (!title.empty())
- header->addWidget(new QLabel(QString::fromStdString("" + title + "
")));
+ {
+ QLabel * titleLabel = new QLabel(QString::fromStdString("" + title + "
"));
+ titleLabel->setWordWrap(true);
+ header->addWidget(titleLabel);
+ }
- if (auto subTitle = info.GetSubtitle(); !subTitle.empty())
- header->addWidget(new QLabel(QString::fromStdString(subTitle)));
+ if (auto const subTitle = info.GetSubtitle(); !subTitle.empty())
+ {
+ QLabel * subtitleLabel = new QLabel(QString::fromStdString(subTitle));
+ subtitleLabel->setWordWrap(true);
+ header->addWidget(subtitleLabel);
+ }
- if (auto addressFormatted = address.FormatAddress(); !addressFormatted.empty())
- header->addWidget(new QLabel(QString::fromStdString(addressFormatted)));
+ if (auto const addressFormatted = address.FormatAddress(); !addressFormatted.empty())
+ {
+ QLabel * addressLabel = new QLabel(QString::fromStdString(addressFormatted));
+ addressLabel->setWordWrap(true);
+ header->addWidget(addressLabel);
+ }
layout->addLayout(header);
}
@@ -79,6 +107,7 @@ PlacePageDialogUser::PlacePageDialogUser(QWidget * parent, place_page::Info cons
data->addWidget(new QLabel(QString::fromStdString(key)), row, 0);
QLabel * label = new QLabel(QString::fromStdString(value));
label->setTextInteractionFlags(Qt::TextSelectableByMouse);
+ label->setWordWrap(true);
if (isLink)
{
label->setOpenExternalLinks(true);
@@ -104,9 +133,16 @@ PlacePageDialogUser::PlacePageDialogUser(QWidget * parent, place_page::Info cons
}
// Description
- if (auto description = info.GetWikiDescription(); !description.empty())
+ if (const auto & description = info.GetWikiDescription(); !description.empty())
{
- QPushButton * wikiButton = new QPushButton("Wikipedia Description");
+ auto descriptionShort = getShortDescription(description);
+
+ QLabel * value = new QLabel(QString::fromStdString(descriptionShort));
+ value->setWordWrap(true);
+
+ data->addWidget(value, row++, 0, 1, 2);
+
+ QPushButton * wikiButton = new QPushButton("More...", value);
wikiButton->setAutoDefault(false);
connect(wikiButton, &QAbstractButton::clicked, this, [this, description, title]()
{
@@ -179,7 +215,6 @@ PlacePageDialogUser::PlacePageDialogUser(QWidget * parent, place_page::Info cons
addSocialNetworkWidget("Facebook", feature::Metadata::EType::FMD_CONTACT_FACEBOOK);
addSocialNetworkWidget("Instagram", feature::Metadata::EType::FMD_CONTACT_INSTAGRAM);
- addSocialNetworkWidget("Instagram", feature::Metadata::EType::FMD_CONTACT_INSTAGRAM);
addSocialNetworkWidget("Twitter", feature::Metadata::EType::FMD_CONTACT_TWITTER);
addSocialNetworkWidget("VK", feature::Metadata::EType::FMD_CONTACT_VK);
addSocialNetworkWidget("Line", feature::Metadata::EType::FMD_CONTACT_LINE);
@@ -187,11 +222,13 @@ PlacePageDialogUser::PlacePageDialogUser(QWidget * parent, place_page::Info cons
if (auto wikimedia_commons = info.GetMetadata(feature::Metadata::EType::FMD_WIKIMEDIA_COMMONS); !wikimedia_commons.empty())
{
+ data->addWidget(new QLabel("Wikimedia Commons"), row, 0);
+
QLabel * value = new QLabel(QString::fromStdString("Wikimedia Commons"));
value->setOpenExternalLinks(true);
value->setTextInteractionFlags(Qt::TextBrowserInteraction);
- data->addWidget(value, row++, 0);
+ data->addWidget(value, row++, 1);
}
// Level fragment
@@ -209,9 +246,14 @@ PlacePageDialogUser::PlacePageDialogUser(QWidget * parent, place_page::Info cons
addEntry("Coordinates", strings::to_string_dac(ll.m_lat, 7) + ", " + strings::to_string_dac(ll.m_lon, 7));
}
+ data->setColumnStretch(0, 0);
+ data->setColumnStretch(1, 1);
+
layout->addLayout(data);
}
+ layout->addStretch();
+
{
QHLine * line = new QHLine();
layout->addWidget(line);