Mercurial > minori
view src/dialog/information.cpp @ 8:b1f73678ef61
update
text paragraphs are now their own objects, as they should be
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sat, 26 Aug 2023 03:39:34 -0400 |
parents | 07a9095eaeed |
children |
line wrap: on
line source
#include <QPlainTextEdit> #include <QVBoxLayout> #include <QTextStream> #include <QDebug> #include "window.h" #include "anime.h" #include "anime_list.h" #include "information.h" #include "ui_utils.h" #include "string_utils.h" #include <QDialogButtonBox> void InformationDialog::OnOK() { model->UpdateAnime(*anime); QDialog::accept(); } InformationDialog::InformationDialog(Anime& a, AnimeListWidgetModel* model, QWidget* parent) : QDialog(parent) { this->model = model; this->anime = &a; setFixedSize(842, 613); setWindowTitle(tr("Anime Information")); setWindowFlags(Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint | Qt::WindowCloseButtonHint); setObjectName("infodiag"); /* main widget */ QWidget* widget = new QWidget(this); widget->resize(842-175, 530); widget->move(175, 0); widget->setStyleSheet(UiUtils::IsInDarkMode() ? "" : "background-color: white"); widget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); /* anime title header text */ QPlainTextEdit* anime_title = new QPlainTextEdit(QString::fromUtf8(anime->GetUserPreferredTitle().c_str()), widget); anime_title->setReadOnly(true); anime_title->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); anime_title->setWordWrapMode(QTextOption::NoWrap); anime_title->setFrameShape(QFrame::NoFrame); anime_title->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); anime_title->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); anime_title->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); anime_title->setStyleSheet("font-size: 16px; color: blue; background: transparent;"); anime_title->resize(636, 28); anime_title->move(0, 12); /* tabbed widget */ QTabWidget* tabbed_widget = new QTabWidget(widget); tabbed_widget->resize(636, 485); tabbed_widget->move(0, 45); tabbed_widget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); /* main info tab */ QWidget* main_information_widget = new QWidget(tabbed_widget); main_information_widget->setLayout(new QVBoxLayout); /* alt titles */ main_information_widget->layout()->addWidget(new UiUtils::SelectableTextParagraph("Alternative titles", QString::fromUtf8(StringUtils::Implode(anime->GetTitleSynonyms(), ", ").c_str()), main_information_widget)); /* details */ QString details_data; QTextStream details_data_s(&details_data); details_data_s << AnimeFormatToStringMap[anime->type].c_str() << "\n" << anime->episodes << "\n" << AnimeAiringToStringMap[anime->airing].c_str() << "\n" << AnimeSeasonToStringMap[anime->season].c_str() << " " << anime->air_date.GetYear() << "\n" << StringUtils::Implode(anime->genres, ", ").c_str() << "\n" << anime->audience_score << "%"; main_information_widget->layout()->addWidget(new UiUtils::LabelledTextParagraph("Details", "Type:\nEpisodes:\nStatus:\nSeason:\nGenres:\nScore:", details_data, main_information_widget)); /* synopsis */ UiUtils::SelectableTextParagraph* synopsis = new UiUtils::SelectableTextParagraph("Synopsis", QString::fromUtf8(anime->synopsis.c_str()), main_information_widget); synopsis->GetParagraph()->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding); ((QVBoxLayout*)main_information_widget->layout())->addWidget(synopsis); //((QVBoxLayout*)main_information_widget->layout())->addStretch(); QWidget* settings_widget = new QWidget(tabbed_widget); tabbed_widget->addTab(main_information_widget, "Main information"); tabbed_widget->addTab(settings_widget, "My list and settings"); QDialogButtonBox* button_box = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, this); connect(button_box, &QDialogButtonBox::accepted, this, &InformationDialog::OnOK); connect(button_box, &QDialogButtonBox::rejected, this, &QDialog::reject); QVBoxLayout* buttons_layout = new QVBoxLayout(this); //buttons_layout->addWidget(widget, 0, Qt::AlignTop); buttons_layout->addWidget(button_box, 0, Qt::AlignBottom); // this should probably be win32-only setStyleSheet(UiUtils::IsInDarkMode() ? "" : "QDialog#infodiag{background-color: white;}"); setLayout(buttons_layout); } #include "moc_information.cpp"