Mercurial > minori
annotate src/gui/dialog/information.cpp @ 68:2417121d894e
*: normalize usage of layouts
before, I used them two ways, once was by setting the layout later
by using setLayout(QWidget), and the other was just using the constructor.
I find the constructor to be easier to read, so I chose that one.
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Mon, 02 Oct 2023 21:33:25 -0400 |
parents | 6481c5aed3e1 |
children | 27a19dd6cba1 |
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" | |
64 | 8 #include "gui/widgets/anime_info.h" |
66
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
65
diff
changeset
|
9 #include "gui/widgets/poster.h" |
63 | 10 #include "gui/widgets/optional_date.h" |
46 | 11 #include "gui/widgets/text.h" |
9 | 12 #include "gui/window.h" |
46 | 13 #include <QCheckBox> |
14 #include <QComboBox> | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
15 #include <QDateEdit> |
9 | 16 #include <QDebug> |
17 #include <QDialogButtonBox> | |
46 | 18 #include <QLineEdit> |
9 | 19 #include <QPlainTextEdit> |
46 | 20 #include <QSpinBox> |
21 #include <QStringList> | |
9 | 22 #include <QTextStream> |
23 #include <QVBoxLayout> | |
24 #include <functional> | |
25 | |
46 | 26 /* TODO: Taiga disables rendering of the tab widget entirely when the anime is not part of a list, |
27 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
|
28 void InformationDialog::SaveData() { |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
29 Anime::Anime& anime = Anime::db.items[id]; |
51 | 30 anime.SetUserProgress(progress); |
31 anime.SetUserScore(score); | |
32 anime.SetUserIsRewatching(rewatching); | |
33 anime.SetUserStatus(status); | |
34 anime.SetUserNotes(notes); | |
35 anime.SetUserDateStarted(started); | |
36 anime.SetUserDateCompleted(completed); | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
37 } |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
38 |
46 | 39 InformationDialog::InformationDialog(const Anime::Anime& anime, std::function<void()> accept, QWidget* parent) |
15 | 40 : QDialog(parent) { |
9 | 41 setFixedSize(842, 613); |
42 setWindowTitle(tr("Anime Information")); | |
43 setWindowFlags(Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint | Qt::WindowCloseButtonHint); | |
36 | 44 |
45 { | |
46 QPalette pal; | |
47 pal.setColor(QPalette::Window, Qt::white); | |
48 setPalette(pal); | |
49 } | |
9 | 50 |
51 QWidget* widget = new QWidget(this); | |
52 | |
53 /* "sidebar", includes... just the anime image :) */ | |
54 QWidget* sidebar = new QWidget(widget); | |
66
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
65
diff
changeset
|
55 QVBoxLayout* sidebar_layout = new QVBoxLayout(sidebar); |
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
65
diff
changeset
|
56 Poster* poster = new Poster(anime.GetId(), sidebar); |
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
65
diff
changeset
|
57 sidebar_layout->addWidget(poster); |
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
65
diff
changeset
|
58 sidebar_layout->setContentsMargins(0, 0, 0, 0); |
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
65
diff
changeset
|
59 sidebar_layout->addStretch(); |
9 | 60 |
61 /* main widget */ | |
62 QWidget* main_widget = new QWidget(widget); | |
36 | 63 |
64 { | |
65 QPalette pal; | |
66 pal.setColor(QPalette::Window, Qt::white); | |
67 main_widget->setPalette(pal); | |
68 } | |
69 | |
9 | 70 main_widget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
71 | |
51 | 72 id = anime.GetId(); |
9 | 73 /* anime title header text */ |
64 | 74 TextWidgets::Title* anime_title = |
65
26721c28bf22
*: avoid usage of (to|from)StdString
Paper <mrpapersonic@gmail.com>
parents:
64
diff
changeset
|
75 new TextWidgets::Title(Strings::ToQString(anime.GetUserPreferredTitle()), main_widget); |
9 | 76 |
77 /* tabbed widget */ | |
78 QTabWidget* tabbed_widget = new QTabWidget(main_widget); | |
79 tabbed_widget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); | |
80 | |
81 /* main info tab */ | |
64 | 82 AnimeInfoWidget* main_information_widget = new AnimeInfoWidget(anime, tabbed_widget); |
9 | 83 |
84 QWidget* settings_widget = new QWidget(tabbed_widget); | |
46 | 85 settings_widget->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum); |
86 | |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
87 QVBoxLayout* settings_layout = new QVBoxLayout(settings_widget); |
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
88 settings_layout->addWidget(new TextWidgets::Header(tr("Anime list"), settings_widget)); |
46 | 89 |
90 QWidget* sg_anime_list_content = new QWidget(settings_widget); | |
91 | |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
92 QVBoxLayout* al_layout = new QVBoxLayout(sg_anime_list_content); |
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
93 al_layout->setSpacing(5); |
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
94 al_layout->setContentsMargins(12, 0, 0, 0); |
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
95 |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
96 #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
|
97 #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
|
98 #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
|
99 /* 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
|
100 #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
|
101 { \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
102 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
|
103 subsection->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); \ |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
104 QVBoxLayout* subsection_layout = new QVBoxLayout(subsection); \ |
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
105 subsection_layout->setSpacing(LAYOUT_VERT_SPACING); \ |
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
106 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
|
107 x; \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
108 layout->addWidget(subsection); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
109 } |
64 | 110 |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
111 /* 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
|
112 #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
|
113 { \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
114 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
|
115 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
|
116 layout->setSpacing(LAYOUT_HORIZ_SPACING); \ |
62 | 117 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
|
118 x; \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
119 a->layout()->addWidget(section); \ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
120 } |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
121 |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
122 /* Creates a subsection with a width of 175 */ |
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
123 #define CREATE_SUBSECTION(x) CREATE_FULL_WIDTH_SUBSECTION(x subsection->setFixedWidth(LAYOUT_ITEM_WIDTH);) |
64 | 124 /* Creates a section in the parent `a` */ |
125 #define CREATE_SECTION(a, x) CREATE_FULL_WIDTH_SECTION(a, x layout->addStretch();) | |
126 | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
127 CREATE_SECTION(sg_anime_list_content, { |
46 | 128 /* Episodes watched section */ |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
129 CREATE_SUBSECTION({ |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
130 subsection_layout->addWidget(new QLabel(tr("Episodes watched:"), subsection)); |
46 | 131 |
132 QSpinBox* spin_box = new QSpinBox(subsection); | |
63 | 133 connect(spin_box, QOverload<int>::of(&QSpinBox::valueChanged), this, [this](int i) { progress = i; }); |
46 | 134 spin_box->setRange(0, anime.GetEpisodes()); |
135 spin_box->setSingleStep(1); | |
51 | 136 spin_box->setValue(progress = anime.GetUserProgress()); |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
137 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
|
138 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
139 CREATE_SUBSECTION({ |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
140 subsection_layout->addWidget(new QLabel(tr(" "), subsection)); |
46 | 141 |
51 | 142 QCheckBox* checkbox = new QCheckBox(tr("Rewatching")); |
63 | 143 connect(checkbox, QOverload<int>::of(&QCheckBox::stateChanged), this, |
144 [this](int state) { rewatching = (state == Qt::Checked); }); | |
51 | 145 checkbox->setCheckState(anime.GetUserIsRewatching() ? Qt::Checked : Qt::Unchecked); |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
146 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
|
147 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
148 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
149 CREATE_SECTION(sg_anime_list_content, { |
46 | 150 /* Status & score section */ |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
151 CREATE_SUBSECTION({ |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
152 subsection_layout->addWidget(new QLabel(tr("Status:"), subsection)); |
46 | 153 |
154 QStringList string_list; | |
155 for (unsigned int i = 0; i < ARRAYSIZE(Anime::ListStatuses); i++) | |
65
26721c28bf22
*: avoid usage of (to|from)StdString
Paper <mrpapersonic@gmail.com>
parents:
64
diff
changeset
|
156 string_list.append(Strings::ToQString(Translate::ToString(Anime::ListStatuses[i]))); |
46 | 157 |
158 QComboBox* combo_box = new QComboBox(subsection); | |
159 combo_box->addItems(string_list); | |
63 | 160 connect(combo_box, QOverload<int>::of(&QComboBox::currentIndexChanged), this, |
161 [this](int i) { status = Anime::ListStatuses[i]; }); | |
162 combo_box->setCurrentIndex(static_cast<int>(status = anime.GetUserStatus()) - 1); | |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
163 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
|
164 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
165 CREATE_SUBSECTION({ |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
166 subsection_layout->addWidget(new QLabel(tr("Score:"), subsection)); |
46 | 167 |
168 QSpinBox* spin_box = new QSpinBox(subsection); | |
63 | 169 connect(spin_box, QOverload<int>::of(&QSpinBox::valueChanged), this, [this](int i) { score = i; }); |
46 | 170 spin_box->setRange(0, 100); |
171 spin_box->setSingleStep(5); | |
51 | 172 spin_box->setValue(score = anime.GetUserScore()); |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
173 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
|
174 }); |
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 CREATE_FULL_WIDTH_SECTION(sg_anime_list_content, { |
46 | 177 /* Notes section */ |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
178 CREATE_FULL_WIDTH_SUBSECTION({ |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
179 subsection_layout->addWidget(new QLabel(tr("Notes:"), subsection)); |
46 | 180 |
51 | 181 QLineEdit* line_edit = new QLineEdit(subsection); |
182 connect(line_edit, &QLineEdit::textChanged, this, [this](const QString& text) { | |
183 /* this sucks but I don't really want to implement anything smarter :) */ | |
65
26721c28bf22
*: avoid usage of (to|from)StdString
Paper <mrpapersonic@gmail.com>
parents:
64
diff
changeset
|
184 notes = Strings::ToUtf8String(text); |
51 | 185 }); |
65
26721c28bf22
*: avoid usage of (to|from)StdString
Paper <mrpapersonic@gmail.com>
parents:
64
diff
changeset
|
186 line_edit->setText(Strings::ToQString(notes = anime.GetUserNotes())); |
46 | 187 line_edit->setPlaceholderText(tr("Enter your notes about this anime")); |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
188 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
|
189 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
190 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
191 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
|
192 /* Dates section */ |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
193 CREATE_SUBSECTION({ |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
194 subsection_layout->addWidget(new QLabel(tr("Date started:"), subsection)); |
46 | 195 |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
196 OptionalDate* date = new OptionalDate(true, subsection); |
63 | 197 connect(date, &OptionalDate::DataChanged, this, |
198 [this](bool enabled, Date date) { started = (enabled) ? date : Date(); }); | |
51 | 199 started = anime.GetUserDateStarted(); |
200 if (!started.IsValid()) { | |
201 date->SetEnabled(false); | |
202 started = anime.GetAirDate(); | |
203 } | |
204 date->SetDate(started); | |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
205 subsection_layout->addWidget(date); |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
206 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
207 CREATE_SUBSECTION({ |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
208 subsection_layout->addWidget(new QLabel(tr("Date completed:"), subsection)); |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
209 |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
210 OptionalDate* date = new OptionalDate(true, subsection); |
63 | 211 connect(date, &OptionalDate::DataChanged, this, |
212 [this](bool enabled, Date date) { completed = (enabled) ? date : Date(); }); | |
51 | 213 completed = anime.GetUserDateCompleted(); |
214 if (!completed.IsValid()) { | |
215 date->SetEnabled(false); | |
216 completed = anime.GetAirDate(); | |
217 } | |
218 date->SetDate(completed); | |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
219 subsection_layout->addWidget(date); |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
220 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
221 }); |
46 | 222 |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
223 settings_layout->addWidget(sg_anime_list_content); |
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
224 |
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
225 settings_layout->addWidget(new TextWidgets::Header(tr("Local settings"), settings_widget)); |
46 | 226 |
227 QWidget* sg_local_content = new QWidget(settings_widget); | |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
228 QVBoxLayout* sg_local_layout = new QVBoxLayout(sg_local_content); |
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
229 sg_local_layout->setSpacing(5); |
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
230 sg_local_layout->setContentsMargins(12, 0, 0, 0); |
46 | 231 |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
232 CREATE_FULL_WIDTH_SECTION(sg_local_content, { |
46 | 233 /* Alternative titles */ |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
234 CREATE_FULL_WIDTH_SUBSECTION({ |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
235 subsection_layout->addWidget(new QLabel(tr("Alternative titles:"), subsection)); |
46 | 236 |
65
26721c28bf22
*: avoid usage of (to|from)StdString
Paper <mrpapersonic@gmail.com>
parents:
64
diff
changeset
|
237 QLineEdit* line_edit = new QLineEdit(Strings::ToQString(anime.GetUserNotes()), subsection); |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
238 line_edit->setPlaceholderText( |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
239 tr("Enter alternative titles here, separated by a semicolon (i.e. Title 1; Title 2)")); |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
240 subsection_layout->addWidget(line_edit); |
46 | 241 |
51 | 242 QCheckBox* checkbox = new QCheckBox(tr("Use the first alternative title to search for torrents")); |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
243 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
|
244 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
245 }); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
246 #undef CREATE_SECTION |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
247 #undef CREATE_SUBSECTION |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
248 #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
|
249 #undef CREATE_FULL_WIDTH_SUBSECTION |
46 | 250 |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
251 settings_layout->addWidget(sg_local_content); |
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
252 settings_layout->addStretch(); |
9 | 253 |
51 | 254 tabbed_widget->addTab(main_information_widget, tr("Main information")); |
255 tabbed_widget->addTab(settings_widget, tr("My list and settings")); | |
9 | 256 |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
257 QVBoxLayout* main_layout = new QVBoxLayout(main_widget); |
9 | 258 main_layout->addWidget(anime_title); |
259 main_layout->addWidget(tabbed_widget); | |
62 | 260 main_layout->setContentsMargins(0, 0, 0, 0); |
9 | 261 |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
262 QHBoxLayout* layout = new QHBoxLayout(widget); |
9 | 263 layout->addWidget(sidebar); |
264 layout->addWidget(main_widget); | |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
265 layout->setSpacing(12); |
9 | 266 |
267 QDialogButtonBox* button_box = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, this); | |
268 connect(button_box, &QDialogButtonBox::accepted, this, [this, accept] { | |
51 | 269 SaveData(); |
9 | 270 accept(); |
271 QDialog::accept(); | |
272 }); | |
273 connect(button_box, &QDialogButtonBox::rejected, this, &QDialog::reject); | |
274 | |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
275 QVBoxLayout* buttons_layout = new QVBoxLayout(this); |
9 | 276 buttons_layout->addWidget(widget); |
277 buttons_layout->addWidget(button_box, 0, Qt::AlignBottom); | |
278 } | |
279 | |
280 #include "gui/dialog/moc_information.cpp" |