Mercurial > minori
annotate src/gui/dialog/information.cpp @ 63:3d2decf093bb
*: fix many clang warnings
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sun, 01 Oct 2023 06:39:47 -0400 |
parents | 4c6dd5999b39 |
children | fe719c109dbc |
rev | line source |
---|---|
9 | 1 #include "gui/dialog/information.h" |
2 #include "core/anime.h" | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
3 #include "core/anime_db.h" |
46 | 4 #include "core/array.h" |
9 | 5 #include "core/strings.h" |
6 #include "gui/pages/anime_list.h" | |
7 #include "gui/translate/anime.h" | |
63 | 8 #include "gui/widgets/optional_date.h" |
46 | 9 #include "gui/widgets/text.h" |
9 | 10 #include "gui/window.h" |
46 | 11 #include <QCheckBox> |
12 #include <QComboBox> | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
13 #include <QDateEdit> |
9 | 14 #include <QDebug> |
15 #include <QDialogButtonBox> | |
46 | 16 #include <QLineEdit> |
9 | 17 #include <QPlainTextEdit> |
46 | 18 #include <QSpinBox> |
19 #include <QStringList> | |
9 | 20 #include <QTextStream> |
21 #include <QVBoxLayout> | |
22 #include <functional> | |
23 | |
46 | 24 /* TODO: Taiga disables rendering of the tab widget entirely when the anime is not part of a list, |
25 which sucks. Think of a better way to implement this later. */ | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
26 void InformationDialog::SaveData() { |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
27 Anime::Anime& anime = Anime::db.items[id]; |
51 | 28 anime.SetUserProgress(progress); |
29 anime.SetUserScore(score); | |
30 anime.SetUserIsRewatching(rewatching); | |
31 anime.SetUserStatus(status); | |
32 anime.SetUserNotes(notes); | |
33 anime.SetUserDateStarted(started); | |
34 anime.SetUserDateCompleted(completed); | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
35 } |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
36 |
46 | 37 InformationDialog::InformationDialog(const Anime::Anime& anime, std::function<void()> accept, QWidget* parent) |
15 | 38 : QDialog(parent) { |
9 | 39 setFixedSize(842, 613); |
40 setWindowTitle(tr("Anime Information")); | |
41 setWindowFlags(Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint | Qt::WindowCloseButtonHint); | |
36 | 42 |
43 { | |
44 QPalette pal; | |
45 pal.setColor(QPalette::Window, Qt::white); | |
46 setPalette(pal); | |
47 } | |
9 | 48 |
49 QWidget* widget = new QWidget(this); | |
50 | |
51 /* "sidebar", includes... just the anime image :) */ | |
52 QWidget* sidebar = new QWidget(widget); | |
53 sidebar->setFixedWidth(175); | |
54 | |
55 /* main widget */ | |
56 QWidget* main_widget = new QWidget(widget); | |
36 | 57 |
58 { | |
59 QPalette pal; | |
60 pal.setColor(QPalette::Window, Qt::white); | |
61 main_widget->setPalette(pal); | |
62 } | |
63 | |
9 | 64 main_widget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
65 | |
51 | 66 id = anime.GetId(); |
9 | 67 /* anime title header text */ |
46 | 68 TextWidgets::Paragraph* anime_title = |
69 new TextWidgets::Paragraph(QString::fromUtf8(anime.GetUserPreferredTitle().c_str()), main_widget); | |
9 | 70 anime_title->setReadOnly(true); |
71 anime_title->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); | |
72 anime_title->setWordWrapMode(QTextOption::NoWrap); | |
73 anime_title->setFrameShape(QFrame::NoFrame); | |
74 anime_title->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Maximum); | |
75 anime_title->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); | |
76 anime_title->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); | |
36 | 77 |
78 { | |
79 QFont font(anime_title->font()); | |
80 font.setPointSize(12); | |
81 anime_title->setFont(font); | |
82 } | |
83 | |
84 { | |
85 QPalette pal; | |
46 | 86 pal.setColor(QPalette::Window, Qt::transparent); |
36 | 87 pal.setColor(QPalette::WindowText, Qt::blue); |
88 } | |
9 | 89 |
90 /* tabbed widget */ | |
91 QTabWidget* tabbed_widget = new QTabWidget(main_widget); | |
92 tabbed_widget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); | |
93 | |
94 /* main info tab */ | |
95 QWidget* main_information_widget = new QWidget(tabbed_widget); | |
96 main_information_widget->setLayout(new QVBoxLayout); | |
97 | |
98 /* alt titles */ | |
46 | 99 main_information_widget->layout()->addWidget(new TextWidgets::SelectableTextParagraph( |
51 | 100 tr("Alternative titles"), QString::fromUtf8(Strings::Implode(anime.GetTitleSynonyms(), ", ").c_str()), |
15 | 101 main_information_widget)); |
9 | 102 |
103 /* details */ | |
104 QString details_data; | |
105 QTextStream details_data_s(&details_data); | |
15 | 106 details_data_s << Translate::ToString(anime.GetFormat()).c_str() << "\n" |
107 << anime.GetEpisodes() << "\n" | |
108 << Translate::ToString(anime.GetUserStatus()).c_str() << "\n" | |
46 | 109 << Translate::ToString(anime.GetSeason()).c_str() << " " << anime.GetAirDate().GetYear() << "\n" |
15 | 110 << Strings::Implode(anime.GetGenres(), ", ").c_str() << "\n" |
111 << anime.GetAudienceScore() << "%"; | |
63 | 112 main_information_widget->layout()->addWidget( |
113 new TextWidgets::LabelledTextParagraph(tr("Details"), tr("Type:\nEpisodes:\nStatus:\nSeason:\nGenres:\nScore:"), | |
114 details_data, main_information_widget)); | |
9 | 115 |
116 /* synopsis */ | |
46 | 117 TextWidgets::SelectableTextParagraph* synopsis = new TextWidgets::SelectableTextParagraph( |
51 | 118 tr("Synopsis"), QString::fromUtf8(anime.GetSynopsis().c_str()), main_information_widget); |
9 | 119 |
120 synopsis->GetParagraph()->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding); | |
46 | 121 main_information_widget->layout()->addWidget(synopsis); |
9 | 122 |
123 QWidget* settings_widget = new QWidget(tabbed_widget); | |
46 | 124 settings_widget->setLayout(new QVBoxLayout); |
125 settings_widget->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum); | |
126 | |
127 settings_widget->layout()->addWidget(new TextWidgets::Header(tr("Anime list"), settings_widget)); | |
128 | |
129 QWidget* sg_anime_list_content = new QWidget(settings_widget); | |
130 settings_widget->layout()->addWidget(sg_anime_list_content); | |
131 sg_anime_list_content->setLayout(new QVBoxLayout); | |
132 sg_anime_list_content->layout()->setSpacing(5); | |
133 sg_anime_list_content->layout()->setContentsMargins(12, 0, 0, 0); | |
134 | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
135 /* these macros make this a lot easier to edit */ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
136 #define LAYOUT_HORIZ_SPACING 25 |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
137 #define LAYOUT_VERT_SPACING 5 |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
138 #define LAYOUT_ITEM_WIDTH 175 |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
139 /* Creates a subsection with a width of 175 */ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
140 #define CREATE_SUBSECTION(x) \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
141 { \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
142 QWidget* subsection = new QWidget(section); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
143 subsection->setLayout(new QVBoxLayout); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
144 subsection->setFixedWidth(LAYOUT_ITEM_WIDTH); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
145 subsection->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Preferred); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
146 subsection->layout()->setSpacing(LAYOUT_VERT_SPACING); \ |
62 | 147 subsection->layout()->setContentsMargins(0, 0, 0, 0); \ |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
148 x; \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
149 layout->addWidget(subsection); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
150 } |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
151 /* Creates a section in the parent `a` */ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
152 #define CREATE_SECTION(a, x) \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
153 { \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
154 QWidget* section = new QWidget(a); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
155 QHBoxLayout* layout = new QHBoxLayout(section); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
156 layout->setSpacing(LAYOUT_HORIZ_SPACING); \ |
62 | 157 layout->setContentsMargins(0, 0, 0, 0); \ |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
158 x; \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
159 layout->addStretch(); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
160 a->layout()->addWidget(section); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
161 } |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
162 /* Creates a subsection that takes up whatever space is necessary */ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
163 #define CREATE_FULL_WIDTH_SUBSECTION(x) \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
164 { \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
165 QWidget* subsection = new QWidget(section); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
166 subsection->setLayout(new QVBoxLayout); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
167 subsection->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
168 subsection->layout()->setSpacing(LAYOUT_VERT_SPACING); \ |
62 | 169 subsection->layout()->setContentsMargins(0, 0, 0, 0); \ |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
170 x; \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
171 layout->addWidget(subsection); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
172 } |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
173 /* Creates a section in the parent `a` */ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
174 #define CREATE_FULL_WIDTH_SECTION(a, x) \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
175 { \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
176 QWidget* section = new QWidget(a); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
177 QHBoxLayout* layout = new QHBoxLayout(section); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
178 layout->setSpacing(LAYOUT_HORIZ_SPACING); \ |
62 | 179 layout->setContentsMargins(0, 0, 0, 0); \ |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
180 x; \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
181 a->layout()->addWidget(section); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
182 } |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
183 |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
184 CREATE_SECTION(sg_anime_list_content, { |
46 | 185 /* Episodes watched section */ |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
186 CREATE_SUBSECTION({ |
46 | 187 subsection->layout()->addWidget(new QLabel(tr("Episodes watched:"), subsection)); |
188 | |
189 QSpinBox* spin_box = new QSpinBox(subsection); | |
63 | 190 connect(spin_box, QOverload<int>::of(&QSpinBox::valueChanged), this, [this](int i) { progress = i; }); |
46 | 191 spin_box->setRange(0, anime.GetEpisodes()); |
192 spin_box->setSingleStep(1); | |
51 | 193 spin_box->setValue(progress = anime.GetUserProgress()); |
46 | 194 subsection->layout()->addWidget(spin_box); |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
195 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
196 CREATE_SUBSECTION({ |
46 | 197 subsection->layout()->addWidget(new QLabel(tr(" "), subsection)); |
198 | |
51 | 199 QCheckBox* checkbox = new QCheckBox(tr("Rewatching")); |
63 | 200 connect(checkbox, QOverload<int>::of(&QCheckBox::stateChanged), this, |
201 [this](int state) { rewatching = (state == Qt::Checked); }); | |
51 | 202 checkbox->setCheckState(anime.GetUserIsRewatching() ? Qt::Checked : Qt::Unchecked); |
203 subsection->layout()->addWidget(checkbox); | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
204 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
205 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
206 CREATE_SECTION(sg_anime_list_content, { |
46 | 207 /* Status & score section */ |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
208 CREATE_SUBSECTION({ |
46 | 209 subsection->layout()->addWidget(new QLabel(tr("Status:"), subsection)); |
210 | |
211 QStringList string_list; | |
212 for (unsigned int i = 0; i < ARRAYSIZE(Anime::ListStatuses); i++) | |
213 string_list.append(QString::fromStdString(Translate::ToString(Anime::ListStatuses[i]))); | |
214 | |
215 QComboBox* combo_box = new QComboBox(subsection); | |
216 combo_box->addItems(string_list); | |
63 | 217 connect(combo_box, QOverload<int>::of(&QComboBox::currentIndexChanged), this, |
218 [this](int i) { status = Anime::ListStatuses[i]; }); | |
219 combo_box->setCurrentIndex(static_cast<int>(status = anime.GetUserStatus()) - 1); | |
46 | 220 subsection->layout()->addWidget(combo_box); |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
221 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
222 CREATE_SUBSECTION({ |
46 | 223 subsection->layout()->addWidget(new QLabel(tr("Score:"), subsection)); |
224 | |
225 QSpinBox* spin_box = new QSpinBox(subsection); | |
63 | 226 connect(spin_box, QOverload<int>::of(&QSpinBox::valueChanged), this, [this](int i) { score = i; }); |
46 | 227 spin_box->setRange(0, 100); |
228 spin_box->setSingleStep(5); | |
51 | 229 spin_box->setValue(score = anime.GetUserScore()); |
46 | 230 subsection->layout()->addWidget(spin_box); |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
231 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
232 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
233 CREATE_FULL_WIDTH_SECTION(sg_anime_list_content, { |
46 | 234 /* Notes section */ |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
235 CREATE_FULL_WIDTH_SUBSECTION({ |
46 | 236 subsection->layout()->addWidget(new QLabel(tr("Notes:"), subsection)); |
237 | |
51 | 238 QLineEdit* line_edit = new QLineEdit(subsection); |
239 connect(line_edit, &QLineEdit::textChanged, this, [this](const QString& text) { | |
240 /* this sucks but I don't really want to implement anything smarter :) */ | |
241 notes = text.toStdString(); | |
242 }); | |
243 line_edit->setText(QString::fromStdString(notes = anime.GetUserNotes())); | |
46 | 244 line_edit->setPlaceholderText(tr("Enter your notes about this anime")); |
245 subsection->layout()->addWidget(line_edit); | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
246 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
247 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
248 CREATE_SECTION(sg_anime_list_content, { |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
249 /* Dates section */ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
250 CREATE_SUBSECTION({ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
251 subsection->layout()->addWidget(new QLabel(tr("Date started:"), subsection)); |
46 | 252 |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
253 OptionalDate* date = new OptionalDate(true, subsection); |
63 | 254 connect(date, &OptionalDate::DataChanged, this, |
255 [this](bool enabled, Date date) { started = (enabled) ? date : Date(); }); | |
51 | 256 started = anime.GetUserDateStarted(); |
257 if (!started.IsValid()) { | |
258 date->SetEnabled(false); | |
259 started = anime.GetAirDate(); | |
260 } | |
261 date->SetDate(started); | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
262 subsection->layout()->addWidget(date); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
263 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
264 CREATE_SUBSECTION({ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
265 subsection->layout()->addWidget(new QLabel(tr("Date completed:"), subsection)); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
266 |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
267 OptionalDate* date = new OptionalDate(true, subsection); |
63 | 268 connect(date, &OptionalDate::DataChanged, this, |
269 [this](bool enabled, Date date) { completed = (enabled) ? date : Date(); }); | |
51 | 270 completed = anime.GetUserDateCompleted(); |
271 if (!completed.IsValid()) { | |
272 date->SetEnabled(false); | |
273 completed = anime.GetAirDate(); | |
274 } | |
275 date->SetDate(completed); | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
276 subsection->layout()->addWidget(date); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
277 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
278 }); |
46 | 279 |
280 settings_widget->layout()->addWidget(new TextWidgets::Header(tr("Local settings"), settings_widget)); | |
281 | |
282 QWidget* sg_local_content = new QWidget(settings_widget); | |
283 settings_widget->layout()->addWidget(sg_local_content); | |
284 sg_local_content->setLayout(new QVBoxLayout); | |
285 sg_local_content->layout()->setSpacing(5); | |
286 sg_local_content->layout()->setContentsMargins(12, 0, 0, 0); | |
287 | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
288 CREATE_FULL_WIDTH_SECTION(sg_local_content, { |
46 | 289 /* Alternative titles */ |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
290 CREATE_FULL_WIDTH_SUBSECTION({ |
46 | 291 subsection->layout()->addWidget(new QLabel(tr("Alternative titles:"), subsection)); |
292 | |
293 QLineEdit* line_edit = new QLineEdit(QString::fromStdString(anime.GetUserNotes()), subsection); | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
294 line_edit->setPlaceholderText( |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
295 tr("Enter alternative titles here, separated by a semicolon (i.e. Title 1; Title 2)")); |
46 | 296 subsection->layout()->addWidget(line_edit); |
297 | |
51 | 298 QCheckBox* checkbox = new QCheckBox(tr("Use the first alternative title to search for torrents")); |
46 | 299 subsection->layout()->addWidget(checkbox); |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
300 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
301 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
302 #undef CREATE_SECTION |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
303 #undef CREATE_SUBSECTION |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
304 #undef CREATE_FULL_WIDTH_SECTION |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
305 #undef CREATE_FULL_WIDTH_SUBSECTION |
46 | 306 |
307 static_cast<QBoxLayout*>(settings_widget->layout())->addStretch(); | |
9 | 308 |
51 | 309 tabbed_widget->addTab(main_information_widget, tr("Main information")); |
310 tabbed_widget->addTab(settings_widget, tr("My list and settings")); | |
9 | 311 |
312 QVBoxLayout* main_layout = new QVBoxLayout; | |
313 main_layout->addWidget(anime_title); | |
314 main_layout->addWidget(tabbed_widget); | |
62 | 315 main_layout->setContentsMargins(0, 0, 0, 0); |
9 | 316 main_widget->setLayout(main_layout); |
317 | |
318 QHBoxLayout* layout = new QHBoxLayout; | |
319 layout->addWidget(sidebar); | |
320 layout->addWidget(main_widget); | |
321 widget->setLayout(layout); | |
322 | |
323 QDialogButtonBox* button_box = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, this); | |
324 connect(button_box, &QDialogButtonBox::accepted, this, [this, accept] { | |
51 | 325 SaveData(); |
9 | 326 accept(); |
327 QDialog::accept(); | |
328 }); | |
329 connect(button_box, &QDialogButtonBox::rejected, this, &QDialog::reject); | |
330 | |
331 QVBoxLayout* buttons_layout = new QVBoxLayout; | |
332 buttons_layout->addWidget(widget); | |
333 buttons_layout->addWidget(button_box, 0, Qt::AlignBottom); | |
334 setLayout(buttons_layout); | |
335 } | |
336 | |
337 #include "gui/dialog/moc_information.cpp" |