[desktop] Show wikipedia articles in a separate dialog

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2023-12-05 10:02:23 +01:00 committed by Alexander Borsuk
parent 3c38de1a10
commit f3bfe3c9a8
4 changed files with 79 additions and 23 deletions

View file

@ -1,16 +1,16 @@
#include "qt/place_page_dialog.hpp"
#include "map/place_page_info.hpp"
#include "qt/qt_common/text_dialog.hpp"
#include <string>
#include "map/place_page_info.hpp"
#include <QtWidgets/QDialogButtonBox>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QLabel>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QVBoxLayout>
#include <string>
PlacePageDialog::PlacePageDialog(QWidget * parent, place_page::Info const & info,
search::ReverseGeocoder::Address const & address)
@ -41,7 +41,8 @@ PlacePageDialog::PlacePageDialog(QWidget * parent, place_page::Info const & info
addEntry("CountryId", info.GetCountryId());
if (auto const & title = info.GetTitle(); !title.empty())
auto const & title = info.GetTitle();
if (!title.empty())
addEntry("Title", title);
if (auto const & subTitle = info.GetSubtitle(); !subTitle.empty())
@ -82,13 +83,28 @@ PlacePageDialog::PlacePageDialog(QWidget * parent, place_page::Info const & info
if (auto cuisines = info.FormatCuisines(); !cuisines.empty())
addEntry(DebugPrint(PropID::FMD_CUISINE), cuisines);
QDialogButtonBox * dbb = new QDialogButtonBox();
QPushButton * closeButton = new QPushButton("Close");
closeButton->setDefault(true);
connect(closeButton, &QAbstractButton::clicked, this, &PlacePageDialog::OnClose);
dbb->addButton(closeButton, QDialogButtonBox::RejectRole);
if (info.ShouldShowEditPlace())
{
QPushButton * editButton = new QPushButton("Edit Place");
connect(editButton, &QAbstractButton::clicked, this, &PlacePageDialog::OnEdit);
dbb->addButton(editButton, QDialogButtonBox::AcceptRole);
}
if (auto const & descr = info.GetWikiDescription(); !descr.empty())
{
QLabel * value = addEntry("Wiki Description", {});
auto const qWikiDescription = QString::fromStdString(descr);
QString clippedText = QFontMetrics{value->font()}.elidedText(qWikiDescription, Qt::ElideRight, value->width());
value->setText(clippedText);
value->setToolTip(qWikiDescription);
QPushButton * wikiButton = new QPushButton("Wiki Description");
connect(wikiButton, &QAbstractButton::clicked, this, [this, descr, title]()
{
auto textDialog = TextDialog(this, QString::fromStdString(descr), QString::fromStdString("Wikipedia: " + title));
textDialog.exec();
});
dbb->addButton(wikiButton, QDialogButtonBox::ActionRole);
}
info.ForEachMetadataReadable([&addEntry](PropID id, std::string const & value)
@ -114,23 +130,11 @@ PlacePageDialog::PlacePageDialog(QWidget * parent, place_page::Info const & info
addEntry(DebugPrint(id), value, isLink);
});
QDialogButtonBox * dbb = new QDialogButtonBox();
QPushButton * closeButton = new QPushButton("Close");
closeButton->setDefault(true);
connect(closeButton, &QAbstractButton::clicked, this, &PlacePageDialog::OnClose);
dbb->addButton(closeButton, QDialogButtonBox::RejectRole);
if (info.ShouldShowEditPlace())
{
QPushButton * editButton = new QPushButton("Edit Place");
connect(editButton, &QAbstractButton::clicked, this, &PlacePageDialog::OnEdit);
dbb->addButton(editButton, QDialogButtonBox::AcceptRole);
}
grid->addWidget(dbb);
setLayout(grid);
auto const title = std::string("Place Page") + (info.IsBookmark() ? " (bookmarked)" : "");
setWindowTitle(title.c_str());
auto const ppTitle = std::string("Place Page") + (info.IsBookmark() ? " (bookmarked)" : "");
setWindowTitle(ppTitle.c_str());
}
void PlacePageDialog::OnClose() { reject(); }

View file

@ -19,6 +19,8 @@ set(SRC
scale_slider.hpp
spinner.cpp
spinner.hpp
text_dialog.cpp
text_dialog.hpp
)
omim_add_library(${PROJECT_NAME} ${SRC} ${RESOURCES})

View file

@ -0,0 +1,36 @@
#include "qt/qt_common/text_dialog.hpp"
#include <QtWidgets/QDialogButtonBox>
#include <QtWidgets/QVBoxLayout>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QTextEdit>
TextDialog::TextDialog(QWidget * parent, QString const & htmlOrText, QString const & title)
: QDialog(parent)
{
auto * textEdit = new QTextEdit(this);
textEdit->setReadOnly(true);
textEdit->setHtml(htmlOrText);
auto * closeButton = new QPushButton("Close");
closeButton->setDefault(true);
connect(closeButton, &QAbstractButton::clicked, this, &TextDialog::OnClose);
auto * dbb = new QDialogButtonBox();
dbb->addButton(closeButton, QDialogButtonBox::RejectRole);
auto * vBoxLayout = new QVBoxLayout(this);
vBoxLayout->addWidget(textEdit);
vBoxLayout->addWidget(dbb);
setLayout(vBoxLayout);
setWindowTitle(title);
if (htmlOrText.size() > 10000)
setWindowState(Qt::WindowMaximized);
else
resize(parent->size());
}
void TextDialog::OnClose() { reject(); }

View file

@ -0,0 +1,14 @@
#pragma once
#include <QtWidgets/QDialog>
/// A reusable dialog that shows text or HTML.
class TextDialog : public QDialog
{
Q_OBJECT
public:
TextDialog(QWidget * parent, QString const & htmlOrText, QString const & title = "");
private slots:
void OnClose();
};