Mercurial > minori
annotate src/gui/dialog/information.cc @ 355:83e6ba09338f
gui/pages/seasons: fix function disambiguation on win32
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Sun, 14 Jul 2024 23:46:18 -0400 |
parents | 6b0768158dcd |
children |
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" |
258 | 4 #include "core/session.h" |
9 | 5 #include "core/strings.h" |
6 #include "gui/pages/anime_list.h" | |
7 #include "gui/translate/anime.h" | |
64 | 8 #include "gui/widgets/anime_info.h" |
76 | 9 #include "gui/widgets/optional_date.h" |
66
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
65
diff
changeset
|
10 #include "gui/widgets/poster.h" |
46 | 11 #include "gui/widgets/text.h" |
9 | 12 #include "gui/window.h" |
258 | 13 |
46 | 14 #include <QCheckBox> |
15 #include <QComboBox> | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
16 #include <QDateEdit> |
9 | 17 #include <QDebug> |
18 #include <QDialogButtonBox> | |
76 | 19 #include <QLabel> |
46 | 20 #include <QLineEdit> |
9 | 21 #include <QPlainTextEdit> |
46 | 22 #include <QSpinBox> |
23 #include <QStringList> | |
9 | 24 #include <QTextStream> |
25 #include <QVBoxLayout> | |
258 | 26 |
9 | 27 #include <functional> |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
28 #include <iostream> |
108 | 29 #ifdef WIN32 |
258 | 30 # include "sys/win32/dark_theme.h" |
108 | 31 #endif |
9 | 32 |
46 | 33 /* TODO: Taiga disables rendering of the tab widget entirely when the anime is not part of a list, |
34 which sucks. Think of a better way to implement this later. */ | |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
35 void InformationDialog::SaveData(Anime::Anime* anime) { |
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
36 if (!anime->IsInUserList()) |
250 | 37 return; |
38 | |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
39 anime->SetUserProgress(_progress); |
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
40 anime->SetUserScore(_score); |
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
41 anime->SetUserIsRewatching(_rewatching); |
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
42 anime->SetUserStatus(_status); |
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
43 anime->SetUserNotes(_notes); |
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
44 anime->SetUserDateStarted(_started); |
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
45 anime->SetUserDateCompleted(_completed); |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
46 } |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
47 |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
48 InformationDialog::InformationDialog(Anime::Anime* anime, std::function<void(Anime::Anime*)> accept, enum Pages page, |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
49 QWidget* parent) |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
50 : QDialog(parent) { |
258 | 51 /* ack. lots of brackets here, but MUCH, MUCH MUCH better than what it used to be */ |
9 | 52 setFixedSize(842, 613); |
53 setWindowTitle(tr("Anime Information")); | |
54 setWindowFlags(Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint | Qt::WindowCloseButtonHint); | |
36 | 55 |
56 { | |
105
6d8da6e64d61
theme: add dark stylesheet, make it actually usable
Paper <mrpapersonic@gmail.com>
parents:
89
diff
changeset
|
57 QPalette pal; |
69 | 58 pal.setColor(QPalette::Window, pal.color(QPalette::Base)); |
36 | 59 setPalette(pal); |
60 } | |
9 | 61 |
108 | 62 QVBoxLayout* full_layout = new QVBoxLayout(this); |
63 | |
64 { | |
65 /* this handles the actual page. */ | |
66 QWidget* widget = new QWidget(this); | |
67 QHBoxLayout* layout = new QHBoxLayout(widget); | |
68 | |
69 { | |
70 /* Sidebar */ | |
71 QWidget* sidebar = new QWidget(widget); | |
72 QVBoxLayout* sidebar_layout = new QVBoxLayout(sidebar); | |
73 { | |
74 /* Poster */ | |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
75 Poster* poster = new Poster(*anime, sidebar); |
108 | 76 sidebar_layout->addWidget(poster); |
77 } | |
78 sidebar_layout->setContentsMargins(0, 0, 0, 0); | |
79 sidebar_layout->addStretch(); | |
80 layout->addWidget(sidebar); | |
81 } | |
82 | |
83 { | |
84 /* ... everything else. */ | |
85 QWidget* main_widget = new QWidget(widget); | |
86 QVBoxLayout* main_layout = new QVBoxLayout(main_widget); | |
87 | |
88 main_widget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); | |
9 | 89 |
108 | 90 { |
91 /* Anime title */ | |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
92 TextWidgets::Title* anime_title = new TextWidgets::Title(main_widget); |
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
93 anime_title->SetText(anime->GetUserPreferredTitle()); |
108 | 94 main_layout->addWidget(anime_title); |
95 } | |
96 | |
97 { | |
98 /* Tab widget, contains main info and settings */ | |
99 QTabWidget* tabbed_widget = new QTabWidget(main_widget); | |
253 | 100 tabbed_widget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
9 | 101 |
108 | 102 { |
103 /* Main information */ | |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
104 AnimeInfoWidget* main_information_widget = new AnimeInfoWidget(*anime, tabbed_widget); |
108 | 105 tabbed_widget->addTab(main_information_widget, tr("Main information")); |
106 } | |
36 | 107 |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
108 if (anime->IsInUserList()) { |
108 | 109 /* My list and settings */ |
110 QWidget* settings_widget = new QWidget(tabbed_widget); | |
111 settings_widget->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum); | |
9 | 112 |
108 | 113 QVBoxLayout* settings_layout = new QVBoxLayout(settings_widget); |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
114 |
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
115 TextWidgets::Header* header = new TextWidgets::Header(settings_widget); |
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
116 header->SetText(Strings::Translate("Anime list")); |
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
117 settings_layout->addWidget(header); |
108 | 118 |
119 { | |
120 /* Anime List */ | |
121 QWidget* sg_anime_list_content = new QWidget(settings_widget); | |
9 | 122 |
108 | 123 constexpr int LAYOUT_HORIZ_SPACING = 25; |
258 | 124 constexpr int LAYOUT_VERT_SPACING = 5; |
125 constexpr int LAYOUT_ITEM_WIDTH = 175; | |
108 | 126 |
127 QVBoxLayout* al_layout = new QVBoxLayout(sg_anime_list_content); | |
128 al_layout->setSpacing(LAYOUT_VERT_SPACING); | |
129 al_layout->setContentsMargins(12, 0, 0, 0); | |
9 | 130 |
108 | 131 /* Helper function for creating sections, reduces clutter. */ |
132 const auto CREATE_SECTION = [](QWidget* parent, std::function<void(QWidget*, QGridLayout*)> x) { | |
133 QWidget* section = new QWidget(parent); | |
134 QGridLayout* layout = new QGridLayout(section); | |
135 layout->setHorizontalSpacing(LAYOUT_HORIZ_SPACING); | |
136 layout->setVerticalSpacing(LAYOUT_VERT_SPACING); | |
137 layout->setContentsMargins(0, 0, 0, 0); | |
138 x(section, layout); | |
139 parent->layout()->addWidget(section); | |
140 }; | |
9 | 141 |
258 | 142 CREATE_SECTION(sg_anime_list_content, [this, &anime](QWidget* section, QGridLayout* layout) { |
108 | 143 { |
144 /* Episodes watched... */ | |
145 layout->addWidget(new QLabel(tr("Episodes watched:"), section), 0, 0); | |
46 | 146 |
108 | 147 QSpinBox* spin_box = new QSpinBox(section); |
258 | 148 connect(spin_box, QOverload<int>::of(&QSpinBox::valueChanged), this, |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
149 [this](int i) { _progress = i; }); |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
150 spin_box->setRange(0, anime->GetEpisodes()); |
108 | 151 spin_box->setSingleStep(1); |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
152 spin_box->setValue(_progress = anime->GetUserProgress()); |
108 | 153 spin_box->setFixedWidth(LAYOUT_ITEM_WIDTH); |
154 layout->addWidget(spin_box, 1, 0); | |
155 } | |
46 | 156 |
108 | 157 { |
158 /* Rewatching? */ | |
159 QCheckBox* checkbox = new QCheckBox(tr("Rewatching")); | |
160 connect(checkbox, QOverload<int>::of(&QCheckBox::stateChanged), this, | |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
161 [this](int state) { _rewatching = (state == Qt::Checked); }); |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
162 checkbox->setCheckState((_rewatching = anime->GetUserIsRewatching()) ? Qt::Checked |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
163 : Qt::Unchecked); |
108 | 164 checkbox->setFixedWidth(LAYOUT_ITEM_WIDTH); |
165 layout->addWidget(checkbox, 1, 1); | |
166 } | |
167 layout->setColumnStretch(layout->columnCount(), 1); | |
168 }); | |
88
1b19d80b3f8c
dialog/information.cc: fix QGridLayout :)
Paper <mrpapersonic@gmail.com>
parents:
87
diff
changeset
|
169 |
258 | 170 CREATE_SECTION(sg_anime_list_content, [this, &anime](QWidget* section, QGridLayout* layout) { |
108 | 171 { |
172 /* Status */ | |
173 layout->addWidget(new QLabel(tr("Status:"), section), 0, 0); | |
174 | |
175 QComboBox* combo_box = new QComboBox(section); | |
176 | |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
177 _status = anime->GetUserStatus(); |
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
178 for (unsigned int i = 0; i < Anime::ListStatuses.size(); i++) { |
291 | 179 combo_box->addItem(Strings::ToQString(Translate::ToLocalString(Anime::ListStatuses[i])), |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
180 static_cast<int>(Anime::ListStatuses[i])); |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
181 if (Anime::ListStatuses[i] == _status) |
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
182 combo_box->setCurrentIndex(i); |
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
183 } |
108 | 184 |
258 | 185 connect(combo_box, QOverload<int>::of(&QComboBox::currentIndexChanged), this, |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
186 [this, combo_box](int) { |
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
187 _status = static_cast<Anime::ListStatus>(combo_box->currentData().toInt()); |
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
188 }); |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
189 |
108 | 190 /* this should NEVER, EVER, be NOT_IN_LIST */ |
191 combo_box->setFixedWidth(LAYOUT_ITEM_WIDTH); | |
192 layout->addWidget(combo_box, 1, 0); | |
193 } | |
194 | |
195 { | |
196 /* Score */ | |
197 layout->addWidget(new QLabel(tr("Score:"), section), 0, 1); | |
198 | |
199 QSpinBox* spin_box = new QSpinBox(section); | |
258 | 200 connect(spin_box, QOverload<int>::of(&QSpinBox::valueChanged), this, |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
201 [this](int i) { _score = i; }); |
108 | 202 spin_box->setRange(0, 100); |
203 spin_box->setSingleStep(5); | |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
204 spin_box->setValue(_score = anime->GetUserScore()); |
108 | 205 spin_box->setFixedWidth(LAYOUT_ITEM_WIDTH); |
206 layout->addWidget(spin_box, 1, 1); | |
207 } | |
208 layout->setColumnStretch(layout->columnCount(), 1); | |
209 }); | |
210 | |
258 | 211 CREATE_SECTION(sg_anime_list_content, [this, &anime](QWidget* section, QGridLayout* layout) { |
108 | 212 layout->addWidget(new QLabel(tr("Notes:"), section), 0, 0); |
64 | 213 |
108 | 214 QLineEdit* line_edit = new QLineEdit(section); |
215 connect(line_edit, &QLineEdit::textChanged, this, [this](const QString& text) { | |
216 /* this sucks but I don't really want to implement anything smarter :) */ | |
217 _notes = Strings::ToUtf8String(text); | |
218 }); | |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
219 line_edit->setText(Strings::ToQString(_notes = anime->GetUserNotes())); |
108 | 220 line_edit->setPlaceholderText(tr("Enter your notes about this anime")); |
221 layout->addWidget(line_edit, 1, 0); | |
222 }); | |
223 | |
258 | 224 CREATE_SECTION(sg_anime_list_content, [this, &anime](QWidget* section, QGridLayout* layout) { |
108 | 225 /* Started */ |
226 { | |
227 layout->addWidget(new QLabel(tr("Date started:"), section), 0, 0); | |
46 | 228 |
108 | 229 OptionalDate* date = new OptionalDate(true, section); |
230 connect(date, &OptionalDate::DataChanged, this, | |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
231 [this](bool enabled, Date date) { _started = enabled ? date : Date(); }); |
108 | 232 date->setFixedWidth(LAYOUT_ITEM_WIDTH); |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
233 _started = anime->GetUserDateStarted(); |
108 | 234 if (!_started.IsValid()) { |
235 date->SetEnabled(false); | |
324
5d3c9b31aa6e
anime: add completed date member
Paper <paper@paper.us.eu.org>
parents:
305
diff
changeset
|
236 _started = anime->GetStartedDate(); |
108 | 237 } |
238 date->SetDate(_started); | |
239 layout->addWidget(date, 1, 0); | |
240 } | |
241 | |
242 /* Completed */ | |
243 { | |
244 layout->addWidget(new QLabel(tr("Date completed:"), section), 0, 1); | |
46 | 245 |
108 | 246 OptionalDate* date = new OptionalDate(true, section); |
247 connect(date, &OptionalDate::DataChanged, this, | |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
248 [this](bool enabled, Date date) { _completed = enabled ? date : Date(); }); |
108 | 249 date->setFixedWidth(LAYOUT_ITEM_WIDTH); |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
250 _completed = anime->GetUserDateCompleted(); |
108 | 251 if (!_completed.IsValid()) { |
252 date->SetEnabled(false); | |
324
5d3c9b31aa6e
anime: add completed date member
Paper <paper@paper.us.eu.org>
parents:
305
diff
changeset
|
253 _completed = anime->GetCompletedDate(); |
108 | 254 } |
255 date->SetDate(_completed); | |
256 layout->addWidget(date, 1, 1); | |
257 } | |
258 layout->setColumnStretch(layout->columnCount(), 1); | |
259 }); | |
88
1b19d80b3f8c
dialog/information.cc: fix QGridLayout :)
Paper <mrpapersonic@gmail.com>
parents:
87
diff
changeset
|
260 |
108 | 261 settings_layout->addWidget(sg_anime_list_content); |
262 } | |
263 | |
264 /* | |
265 { | |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
266 // commenting this out until it actually gets implemented :) |
46 | 267 |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
268 settings_layout->addWidget(new TextWidgets::Header(tr("Local settings"), settings_widget)); |
108 | 269 |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
270 QWidget* sg_local_content = new QWidget(settings_widget); |
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
271 QVBoxLayout* sg_local_layout = new QVBoxLayout(sg_local_content); |
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
272 sg_local_layout->setSpacing(5); |
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
273 sg_local_layout->setContentsMargins(12, 0, 0, 0); |
108 | 274 |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
275 CREATE_SECTION(sg_local_content, [this, &anime](QWidget* section, QGridLayout* layout){ |
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
276 layout->addWidget(new QLabel(tr("Alternative titles:"), section), 0, 0); |
89
e6fab256ddc4
dialog/info: make some stuff more sane
Paper <mrpapersonic@gmail.com>
parents:
88
diff
changeset
|
277 |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
278 QLineEdit* line_edit = new QLineEdit("", section); |
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
279 line_edit->setPlaceholderText( |
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
280 tr("Enter alternative titles here, separated by a semicolon (i.e. Title 1; Title 2)")); |
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
281 layout->addWidget(line_edit, 1, 0); |
108 | 282 |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
283 QCheckBox* checkbox = new QCheckBox(tr("Use the first alternative title to search for |
258 | 284 torrents")); layout->addWidget(checkbox, 2, 0); |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
285 }); |
108 | 286 |
348
6b0768158dcd
text: redesign almost every widget
Paper <paper@paper.us.eu.org>
parents:
324
diff
changeset
|
287 settings_layout->addWidget(sg_local_content); |
108 | 288 } |
289 */ | |
290 | |
291 settings_layout->addStretch(); | |
46 | 292 |
108 | 293 tabbed_widget->addTab(settings_widget, tr("My list and settings")); |
294 } | |
118
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
108
diff
changeset
|
295 tabbed_widget->setCurrentIndex(static_cast<int>(page)); |
108 | 296 main_layout->addWidget(tabbed_widget); |
297 main_layout->setContentsMargins(0, 0, 0, 0); | |
298 main_layout->setSpacing(12); | |
299 } | |
89
e6fab256ddc4
dialog/info: make some stuff more sane
Paper <mrpapersonic@gmail.com>
parents:
88
diff
changeset
|
300 |
108 | 301 layout->addWidget(main_widget); |
302 } | |
303 layout->setSpacing(12); | |
294 | 304 layout->setContentsMargins(0, 0, 0, 0); |
108 | 305 full_layout->addWidget(widget); |
306 } | |
46 | 307 |
108 | 308 { |
309 /* Dialog box buttons */ | |
310 QDialogButtonBox* button_box = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, this); | |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
311 connect(button_box, &QDialogButtonBox::accepted, this, [this, accept, anime] { |
108 | 312 SaveData(anime); |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
294
diff
changeset
|
313 accept(anime); |
108 | 314 QDialog::accept(); |
89
e6fab256ddc4
dialog/info: make some stuff more sane
Paper <mrpapersonic@gmail.com>
parents:
88
diff
changeset
|
315 }); |
108 | 316 connect(button_box, &QDialogButtonBox::rejected, this, &QDialog::reject); |
317 full_layout->addWidget(button_box, 0, Qt::AlignBottom); | |
318 } | |
319 } | |
46 | 320 |
108 | 321 void InformationDialog::showEvent(QShowEvent* event) { |
322 QDialog::showEvent(event); | |
323 #ifdef WIN32 | |
324 win32::SetTitleBarsToBlack(session.config.theme.IsInDarkTheme()); | |
325 #endif | |
9 | 326 } |