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