Mercurial > minori
annotate src/gui/pages/anime_list.cc @ 83:d02fdf1d6708
*: huuuge update
1. make the now playing page function correctly
2. de-constructorfy many of our custom widgets,
allowing them to be changed on-the-fly from
the Now Playing page
3. ... :)
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Tue, 24 Oct 2023 22:01:02 -0400 |
parents | 9b2b41f83a5e |
children | c912128af0eb |
rev | line source |
---|---|
10 | 1 /** |
2 * anime_list.cpp: defines the anime list page | |
3 * and widgets. | |
4 * | |
5 * much of this file is based around | |
6 * Qt's original QTabWidget implementation, because | |
7 * I needed a somewhat native way to create a tabbed | |
8 * widget with only one subwidget that worked exactly | |
9 * like a native tabbed widget. | |
10 **/ | |
11 #include "gui/pages/anime_list.h" | |
12 #include "core/anime.h" | |
13 #include "core/anime_db.h" | |
14 #include "core/session.h" | |
76 | 15 #include "core/strings.h" |
10 | 16 #include "core/time.h" |
17 #include "gui/dialog/information.h" | |
18 #include "gui/translate/anime.h" | |
52
0c4138de2ea7
anime list: we are finally read-write
Paper <mrpapersonic@gmail.com>
parents:
51
diff
changeset
|
19 #include "services/services.h" |
15 | 20 #include <QDebug> |
10 | 21 #include <QHBoxLayout> |
22 #include <QHeaderView> | |
23 #include <QMenu> | |
24 #include <QProgressBar> | |
25 #include <QShortcut> | |
26 #include <QStylePainter> | |
27 #include <QStyledItemDelegate> | |
77 | 28 #include <QThreadPool> |
29 #include <set> | |
10 | 30 |
64 | 31 AnimeListPageDelegate::AnimeListPageDelegate(QObject* parent) : QStyledItemDelegate(parent) { |
10 | 32 } |
33 | |
64 | 34 QWidget* AnimeListPageDelegate::createEditor(QWidget*, const QStyleOptionViewItem&, const QModelIndex&) const { |
10 | 35 // no edit 4 u |
36 return nullptr; | |
37 } | |
38 | |
64 | 39 void AnimeListPageDelegate::paint(QPainter* painter, const QStyleOptionViewItem& option, |
40 const QModelIndex& index) const { | |
10 | 41 switch (index.column()) { |
15 | 42 #if 0 |
64 | 43 case AnimeListPageModel::AL_PROGRESS: { |
10 | 44 const int progress = static_cast<int>(index.data(Qt::UserRole).toReal()); |
45 const int episodes = | |
64 | 46 static_cast<int>(index.siblingAtColumn(AnimeListPageModel::AL_EPISODES).data(Qt::UserRole).toReal()); |
10 | 47 |
48 int text_width = 59; | |
49 QRectF text_rect(option.rect.x() + text_width, option.rect.y(), text_width, option.decorationSize.height()); | |
50 painter->save(); | |
51 | 51 painter->drawText(text_rect, tr("/"), QTextOption(Qt::AlignCenter | Qt::AlignVCenter)); |
52 drawText(const QRectF &rectangle, const QString &text, const QTextOption &option = | |
15 | 53 QTextOption()) painter->drawText(QRectF(text_rect.x(), text_rect.y(), text_width / 2 - 2, |
54 text_rect.height()), QString::number(progress), QTextOption(Qt::AlignRight | Qt::AlignVCenter)); | |
55 painter->drawText( | |
56 QRectF(text_rect.x() + text_width / 2 + 2, text_rect.y(), text_width / 2 - 2, text_rect.height()), | |
57 QString::number(episodes), QTextOption(Qt::AlignLeft | Qt::AlignVCenter)); | |
58 painter->restore(); | |
59 QStyledItemDelegate::paint(painter, option, index); | |
60 break; | |
10 | 61 } |
15 | 62 #endif |
10 | 63 default: QStyledItemDelegate::paint(painter, option, index); break; |
64 } | |
65 } | |
66 | |
64 | 67 AnimeListPageSortFilter::AnimeListPageSortFilter(QObject* parent) : QSortFilterProxyModel(parent) { |
10 | 68 } |
69 | |
64 | 70 bool AnimeListPageSortFilter::lessThan(const QModelIndex& l, const QModelIndex& r) const { |
10 | 71 QVariant left = sourceModel()->data(l, sortRole()); |
72 QVariant right = sourceModel()->data(r, sortRole()); | |
73 | |
74 switch (left.userType()) { | |
75 case QMetaType::Int: | |
76 case QMetaType::UInt: | |
77 case QMetaType::LongLong: | |
78 case QMetaType::ULongLong: return left.toInt() < right.toInt(); | |
79 case QMetaType::QDate: return left.toDate() < right.toDate(); | |
80 case QMetaType::QString: | |
81 default: return QString::compare(left.toString(), right.toString(), Qt::CaseInsensitive) < 0; | |
82 } | |
83 } | |
84 | |
64 | 85 AnimeListPageModel::AnimeListPageModel(QWidget* parent, Anime::ListStatus _status) : QAbstractListModel(parent) { |
10 | 86 status = _status; |
87 return; | |
88 } | |
89 | |
64 | 90 int AnimeListPageModel::rowCount(const QModelIndex& parent) const { |
10 | 91 return list.size(); |
92 (void)(parent); | |
93 } | |
94 | |
64 | 95 int AnimeListPageModel::columnCount(const QModelIndex& parent) const { |
10 | 96 return NB_COLUMNS; |
97 (void)(parent); | |
98 } | |
99 | |
64 | 100 QVariant AnimeListPageModel::headerData(const int section, const Qt::Orientation orientation, const int role) const { |
10 | 101 if (role == Qt::DisplayRole) { |
102 switch (section) { | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
103 case AL_TITLE: return tr("Anime title"); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
104 case AL_PROGRESS: return tr("Progress"); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
105 case AL_EPISODES: return tr("Episodes"); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
106 case AL_TYPE: return tr("Type"); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
107 case AL_SCORE: return tr("Score"); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
108 case AL_SEASON: return tr("Season"); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
109 case AL_STARTED: return tr("Date started"); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
110 case AL_COMPLETED: return tr("Date completed"); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
111 case AL_NOTES: return tr("Notes"); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
112 case AL_AVG_SCORE: return tr("Average score"); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
113 case AL_UPDATED: return tr("Last updated"); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
114 default: return {}; |
10 | 115 } |
116 } else if (role == Qt::TextAlignmentRole) { | |
117 switch (section) { | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
118 case AL_TITLE: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
119 case AL_NOTES: return QVariant(Qt::AlignLeft | Qt::AlignVCenter); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
120 case AL_PROGRESS: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
121 case AL_EPISODES: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
122 case AL_TYPE: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
123 case AL_SCORE: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
124 case AL_AVG_SCORE: return QVariant(Qt::AlignCenter | Qt::AlignVCenter); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
125 case AL_SEASON: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
126 case AL_STARTED: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
127 case AL_COMPLETED: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
128 case AL_UPDATED: return QVariant(Qt::AlignRight | Qt::AlignVCenter); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
129 default: return QAbstractListModel::headerData(section, orientation, role); |
10 | 130 } |
131 } | |
132 return QAbstractListModel::headerData(section, orientation, role); | |
133 } | |
134 | |
64 | 135 QVariant AnimeListPageModel::data(const QModelIndex& index, int role) const { |
10 | 136 if (!index.isValid()) |
137 return QVariant(); | |
138 switch (role) { | |
139 case Qt::DisplayRole: | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
140 switch (index.column()) { |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
141 case AL_TITLE: return QString::fromUtf8(list[index.row()].GetUserPreferredTitle().c_str()); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
142 case AL_PROGRESS: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
143 return QString::number(list[index.row()].GetUserProgress()) + "/" + |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
144 QString::number(list[index.row()].GetEpisodes()); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
145 case AL_EPISODES: return list[index.row()].GetEpisodes(); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
146 case AL_SCORE: return list[index.row()].GetUserScore(); |
65
26721c28bf22
*: avoid usage of (to|from)StdString
Paper <mrpapersonic@gmail.com>
parents:
64
diff
changeset
|
147 case AL_TYPE: return Strings::ToQString(Translate::ToString(list[index.row()].GetFormat())); |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
148 case AL_SEASON: |
65
26721c28bf22
*: avoid usage of (to|from)StdString
Paper <mrpapersonic@gmail.com>
parents:
64
diff
changeset
|
149 return Strings::ToQString(Translate::ToString(list[index.row()].GetSeason())) + " " + |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
150 QString::number(list[index.row()].GetAirDate().GetYear()); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
151 case AL_AVG_SCORE: return QString::number(list[index.row()].GetAudienceScore()) + "%"; |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
152 case AL_STARTED: return list[index.row()].GetUserDateStarted().GetAsQDate(); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
153 case AL_COMPLETED: return list[index.row()].GetUserDateCompleted().GetAsQDate(); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
154 case AL_UPDATED: { |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
155 if (list[index.row()].GetUserTimeUpdated() == 0) |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
156 return QString("-"); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
157 Time::Duration duration(Time::GetSystemTime() - list[index.row()].GetUserTimeUpdated()); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
158 return QString::fromUtf8(duration.AsRelativeString().c_str()); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
159 } |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
160 case AL_NOTES: return QString::fromUtf8(list[index.row()].GetUserNotes().c_str()); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
161 default: return ""; |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
162 } |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
163 break; |
10 | 164 case Qt::UserRole: |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
165 switch (index.column()) { |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
166 case AL_PROGRESS: return list[index.row()].GetUserProgress(); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
167 case AL_TYPE: return static_cast<int>(list[index.row()].GetFormat()); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
168 case AL_SEASON: return list[index.row()].GetAirDate().GetAsQDate(); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
169 case AL_AVG_SCORE: return list[index.row()].GetAudienceScore(); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
170 case AL_UPDATED: return QVariant::fromValue(list[index.row()].GetUserTimeUpdated()); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
171 default: return data(index, Qt::DisplayRole); |
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 break; |
10 | 174 case Qt::TextAlignmentRole: |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
175 switch (index.column()) { |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
176 case AL_TITLE: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
177 case AL_NOTES: return QVariant(Qt::AlignLeft | Qt::AlignVCenter); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
178 case AL_PROGRESS: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
179 case AL_EPISODES: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
180 case AL_TYPE: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
181 case AL_SCORE: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
182 case AL_AVG_SCORE: return QVariant(Qt::AlignCenter | Qt::AlignVCenter); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
183 case AL_SEASON: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
184 case AL_STARTED: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
185 case AL_COMPLETED: |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
186 case AL_UPDATED: return QVariant(Qt::AlignRight | Qt::AlignVCenter); |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
187 default: break; |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
188 } |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
189 break; |
10 | 190 } |
191 return QVariant(); | |
192 } | |
193 | |
64 | 194 Anime::Anime* AnimeListPageModel::GetAnimeFromIndex(QModelIndex index) { |
10 | 195 return &list.at(index.row()); |
196 } | |
197 | |
64 | 198 void AnimeListPageModel::RefreshList() { |
10 | 199 bool has_children = !!rowCount(index(0)); |
77 | 200 if (!has_children) { |
201 beginInsertRows(QModelIndex(), 0, 0); | |
202 endInsertRows(); | |
15 | 203 } |
204 | |
77 | 205 beginResetModel(); |
206 | |
10 | 207 list.clear(); |
208 | |
11 | 209 for (const auto& a : Anime::db.items) { |
210 if (a.second.IsInUserList() && a.second.GetUserStatus() == status) { | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
211 list.push_back(a.second); |
10 | 212 } |
213 } | |
15 | 214 |
77 | 215 endResetModel(); |
10 | 216 } |
217 | |
64 | 218 int AnimeListPage::VisibleColumnsCount() const { |
10 | 219 int count = 0; |
220 | |
221 for (int i = 0, end = tree_view->header()->count(); i < end; i++) { | |
222 if (!tree_view->isColumnHidden(i)) | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
223 count++; |
10 | 224 } |
225 | |
226 return count; | |
227 } | |
228 | |
64 | 229 void AnimeListPage::SetColumnDefaults() { |
230 tree_view->setColumnHidden(AnimeListPageModel::AL_SEASON, false); | |
231 tree_view->setColumnHidden(AnimeListPageModel::AL_TYPE, false); | |
232 tree_view->setColumnHidden(AnimeListPageModel::AL_UPDATED, false); | |
233 tree_view->setColumnHidden(AnimeListPageModel::AL_PROGRESS, false); | |
234 tree_view->setColumnHidden(AnimeListPageModel::AL_SCORE, false); | |
235 tree_view->setColumnHidden(AnimeListPageModel::AL_TITLE, false); | |
236 tree_view->setColumnHidden(AnimeListPageModel::AL_EPISODES, true); | |
237 tree_view->setColumnHidden(AnimeListPageModel::AL_AVG_SCORE, true); | |
238 tree_view->setColumnHidden(AnimeListPageModel::AL_STARTED, true); | |
239 tree_view->setColumnHidden(AnimeListPageModel::AL_COMPLETED, true); | |
240 tree_view->setColumnHidden(AnimeListPageModel::AL_UPDATED, true); | |
241 tree_view->setColumnHidden(AnimeListPageModel::AL_NOTES, true); | |
10 | 242 } |
243 | |
77 | 244 void AnimeListPage::UpdateAnime(int id) { |
245 QThreadPool::globalInstance()->start([this, id] { | |
246 Services::UpdateAnimeEntry(id); | |
247 Refresh(); | |
248 }); | |
249 } | |
250 | |
251 void AnimeListPage::RemoveAnime(int id) { | |
252 Anime::Anime& anime = Anime::db.items[id]; | |
253 anime.RemoveFromUserList(); | |
254 Refresh(); | |
255 } | |
256 | |
64 | 257 void AnimeListPage::DisplayColumnHeaderMenu() { |
10 | 258 QMenu* menu = new QMenu(this); |
259 menu->setAttribute(Qt::WA_DeleteOnClose); | |
260 menu->setTitle(tr("Column visibility")); | |
261 menu->setToolTipsVisible(true); | |
262 | |
64 | 263 for (int i = 0; i < AnimeListPageModel::NB_COLUMNS; i++) { |
264 if (i == AnimeListPageModel::AL_TITLE) | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
265 continue; |
10 | 266 const auto column_name = |
15 | 267 sort_models[tab_bar->currentIndex()]->headerData(i, Qt::Horizontal, Qt::DisplayRole).toString(); |
10 | 268 QAction* action = menu->addAction(column_name, this, [this, i](const bool checked) { |
269 if (!checked && (VisibleColumnsCount() <= 1)) | |
270 return; | |
271 | |
272 tree_view->setColumnHidden(i, !checked); | |
273 | |
274 if (checked && (tree_view->columnWidth(i) <= 5)) | |
275 tree_view->resizeColumnToContents(i); | |
276 | |
277 // SaveSettings(); | |
278 }); | |
279 action->setCheckable(true); | |
280 action->setChecked(!tree_view->isColumnHidden(i)); | |
281 } | |
282 | |
283 menu->addSeparator(); | |
284 QAction* resetAction = menu->addAction(tr("Reset to defaults"), this, [this]() { | |
285 for (int i = 0, count = tree_view->header()->count(); i < count; ++i) { | |
286 SetColumnDefaults(); | |
287 } | |
288 // SaveSettings(); | |
289 }); | |
290 menu->popup(QCursor::pos()); | |
291 (void)(resetAction); | |
292 } | |
293 | |
64 | 294 void AnimeListPage::DisplayListMenu() { |
10 | 295 QMenu* menu = new QMenu(this); |
296 menu->setAttribute(Qt::WA_DeleteOnClose); | |
297 menu->setTitle(tr("Column visibility")); | |
298 menu->setToolTipsVisible(true); | |
299 | |
77 | 300 AnimeListPageModel* source_model = |
301 reinterpret_cast<AnimeListPageModel*>(sort_models[tab_bar->currentIndex()]->sourceModel()); | |
15 | 302 const QItemSelection selection = |
303 sort_models[tab_bar->currentIndex()]->mapSelectionToSource(tree_view->selectionModel()->selection()); | |
77 | 304 |
305 std::set<Anime::Anime*> animes; | |
306 for (const auto& index : selection.indexes()) { | |
307 if (!index.isValid()) | |
308 continue; | |
309 Anime::Anime* anime = source_model->GetAnimeFromIndex(index); | |
310 if (anime) | |
311 animes.insert(anime); | |
10 | 312 } |
313 | |
77 | 314 QAction* action = menu->addAction(tr("Information"), [this, animes] { |
315 for (auto& anime : animes) { | |
316 InformationDialog* dialog = new InformationDialog( | |
317 *anime, [this, anime] { UpdateAnime(anime->GetId()); }, this); | |
10 | 318 |
77 | 319 dialog->show(); |
320 dialog->raise(); | |
321 dialog->activateWindow(); | |
322 } | |
323 }); | |
324 menu->addSeparator(); | |
325 action = menu->addAction(tr("Delete from list..."), [this, animes] { | |
326 for (auto& anime : animes) { | |
327 RemoveAnime(anime->GetId()); | |
328 } | |
10 | 329 }); |
330 menu->popup(QCursor::pos()); | |
331 } | |
332 | |
64 | 333 void AnimeListPage::ItemDoubleClicked() { |
10 | 334 /* throw out any other garbage */ |
335 const QItemSelection selection = | |
15 | 336 sort_models[tab_bar->currentIndex()]->mapSelectionToSource(tree_view->selectionModel()->selection()); |
10 | 337 if (!selection.indexes().first().isValid()) { |
338 return; | |
339 } | |
340 | |
64 | 341 AnimeListPageModel* source_model = |
342 reinterpret_cast<AnimeListPageModel*>(sort_models[tab_bar->currentIndex()]->sourceModel()); | |
343 | |
344 const QModelIndex index = source_model->index(selection.indexes().first().row()); | |
345 Anime::Anime* anime = source_model->GetAnimeFromIndex(index); | |
10 | 346 |
63 | 347 InformationDialog* dialog = new InformationDialog( |
77 | 348 *anime, [this, anime] { UpdateAnime(anime->GetId()); }, this); |
10 | 349 |
350 dialog->show(); | |
351 dialog->raise(); | |
352 dialog->activateWindow(); | |
353 } | |
354 | |
64 | 355 void AnimeListPage::paintEvent(QPaintEvent*) { |
10 | 356 QStylePainter p(this); |
357 | |
358 QStyleOptionTabWidgetFrame opt; | |
359 InitStyle(&opt); | |
360 opt.rect = panelRect; | |
361 p.drawPrimitive(QStyle::PE_FrameTabWidget, opt); | |
362 } | |
363 | |
64 | 364 void AnimeListPage::resizeEvent(QResizeEvent* e) { |
10 | 365 QWidget::resizeEvent(e); |
366 SetupLayout(); | |
367 } | |
368 | |
64 | 369 void AnimeListPage::showEvent(QShowEvent*) { |
10 | 370 SetupLayout(); |
371 } | |
372 | |
64 | 373 void AnimeListPage::InitBasicStyle(QStyleOptionTabWidgetFrame* option) const { |
10 | 374 if (!option) |
375 return; | |
376 | |
377 option->initFrom(this); | |
378 option->lineWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth, nullptr, this); | |
379 option->shape = QTabBar::RoundedNorth; | |
380 option->tabBarRect = tab_bar->geometry(); | |
381 } | |
382 | |
64 | 383 void AnimeListPage::InitStyle(QStyleOptionTabWidgetFrame* option) const { |
10 | 384 if (!option) |
385 return; | |
386 | |
387 InitBasicStyle(option); | |
388 | |
389 // int exth = style()->pixelMetric(QStyle::PM_TabBarBaseHeight, nullptr, this); | |
390 QSize t(0, tree_view->frameWidth()); | |
391 if (tab_bar->isVisibleTo(this)) { | |
392 t = tab_bar->sizeHint(); | |
393 t.setWidth(width()); | |
394 } | |
46 | 395 |
10 | 396 option->tabBarSize = t; |
397 | |
398 QRect selected_tab_rect = tab_bar->tabRect(tab_bar->currentIndex()); | |
399 selected_tab_rect.moveTopLeft(selected_tab_rect.topLeft() + option->tabBarRect.topLeft()); | |
400 option->selectedTabRect = selected_tab_rect; | |
401 | |
402 option->lineWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth, nullptr, this); | |
403 } | |
404 | |
64 | 405 void AnimeListPage::SetupLayout() { |
10 | 406 QStyleOptionTabWidgetFrame option; |
407 InitStyle(&option); | |
408 | |
409 QRect tabRect = style()->subElementRect(QStyle::SE_TabWidgetTabBar, &option, this); | |
410 tabRect.setLeft(tabRect.left() + 1); | |
411 panelRect = style()->subElementRect(QStyle::SE_TabWidgetTabPane, &option, this); | |
412 QRect contentsRect = style()->subElementRect(QStyle::SE_TabWidgetTabContents, &option, this); | |
413 | |
414 tab_bar->setGeometry(tabRect); | |
415 tree_view->parentWidget()->setGeometry(contentsRect); | |
416 } | |
417 | |
64 | 418 AnimeListPage::AnimeListPage(QWidget* parent) : QWidget(parent) { |
10 | 419 /* Tab bar */ |
420 tab_bar = new QTabBar(this); | |
421 tab_bar->setExpanding(false); | |
422 tab_bar->setDrawBase(false); | |
423 | |
424 /* Tree view... */ | |
425 QWidget* tree_widget = new QWidget(this); | |
426 tree_view = new QTreeView(tree_widget); | |
64 | 427 tree_view->setItemDelegate(new AnimeListPageDelegate(tree_view)); |
10 | 428 tree_view->setUniformRowHeights(true); |
429 tree_view->setAllColumnsShowFocus(false); | |
430 tree_view->setAlternatingRowColors(true); | |
431 tree_view->setSortingEnabled(true); | |
432 tree_view->setSelectionMode(QAbstractItemView::ExtendedSelection); | |
433 tree_view->setItemsExpandable(false); | |
434 tree_view->setRootIsDecorated(false); | |
435 tree_view->setContextMenuPolicy(Qt::CustomContextMenu); | |
436 tree_view->setFrameShape(QFrame::NoFrame); | |
437 | |
83 | 438 for (unsigned int i = 0; i < sort_models.size(); i++) { |
65
26721c28bf22
*: avoid usage of (to|from)StdString
Paper <mrpapersonic@gmail.com>
parents:
64
diff
changeset
|
439 tab_bar->addTab(Strings::ToQString(Translate::ToString(Anime::ListStatuses[i])) + " (" + |
15 | 440 QString::number(Anime::db.GetListsAnimeAmount(Anime::ListStatuses[i])) + ")"); |
64 | 441 sort_models[i] = new AnimeListPageSortFilter(tree_view); |
442 sort_models[i]->setSourceModel(new AnimeListPageModel(this, Anime::ListStatuses[i])); | |
10 | 443 sort_models[i]->setSortRole(Qt::UserRole); |
444 sort_models[i]->setSortCaseSensitivity(Qt::CaseInsensitive); | |
445 } | |
15 | 446 tree_view->setModel(sort_models[0]); |
10 | 447 |
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
65
diff
changeset
|
448 QHBoxLayout* layout = new QHBoxLayout(tree_widget); |
10 | 449 layout->addWidget(tree_view); |
62 | 450 layout->setContentsMargins(0, 0, 0, 0); |
10 | 451 |
452 /* Double click stuff */ | |
64 | 453 connect(tree_view, &QAbstractItemView::doubleClicked, this, &AnimeListPage::ItemDoubleClicked); |
454 connect(tree_view, &QWidget::customContextMenuRequested, this, &AnimeListPage::DisplayListMenu); | |
10 | 455 |
456 /* Enter & return keys */ | |
15 | 457 connect(new QShortcut(Qt::Key_Return, tree_view, nullptr, nullptr, Qt::WidgetShortcut), &QShortcut::activated, this, |
64 | 458 &AnimeListPage::ItemDoubleClicked); |
10 | 459 |
15 | 460 connect(new QShortcut(Qt::Key_Enter, tree_view, nullptr, nullptr, Qt::WidgetShortcut), &QShortcut::activated, this, |
64 | 461 &AnimeListPage::ItemDoubleClicked); |
10 | 462 |
463 tree_view->header()->setStretchLastSection(false); | |
464 tree_view->header()->setContextMenuPolicy(Qt::CustomContextMenu); | |
64 | 465 connect(tree_view->header(), &QWidget::customContextMenuRequested, this, &AnimeListPage::DisplayColumnHeaderMenu); |
10 | 466 |
467 connect(tab_bar, &QTabBar::currentChanged, this, [this](int index) { | |
468 if (sort_models[index]) | |
469 tree_view->setModel(sort_models[index]); | |
470 }); | |
471 | |
69 | 472 SetColumnDefaults(); |
10 | 473 setFocusPolicy(Qt::TabFocus); |
474 setFocusProxy(tab_bar); | |
475 } | |
476 | |
64 | 477 void AnimeListPage::RefreshList() { |
83 | 478 for (unsigned int i = 0; i < sort_models.size(); i++) |
64 | 479 reinterpret_cast<AnimeListPageModel*>(sort_models[i]->sourceModel())->RefreshList(); |
10 | 480 } |
481 | |
64 | 482 void AnimeListPage::RefreshTabs() { |
83 | 483 for (unsigned int i = 0; i < sort_models.size(); i++) |
65
26721c28bf22
*: avoid usage of (to|from)StdString
Paper <mrpapersonic@gmail.com>
parents:
64
diff
changeset
|
484 tab_bar->setTabText(i, Strings::ToQString(Translate::ToString(Anime::ListStatuses[i])) + " (" + |
15 | 485 QString::number(Anime::db.GetListsAnimeAmount(Anime::ListStatuses[i])) + ")"); |
486 } | |
487 | |
64 | 488 void AnimeListPage::Refresh() { |
15 | 489 RefreshList(); |
490 RefreshTabs(); | |
491 } | |
492 | |
493 /* This function, really, really should not be called. | |
494 Ever. Why would you ever need to clear the anime list? | |
495 Also, this sucks. */ | |
64 | 496 void AnimeListPage::Reset() { |
10 | 497 while (tab_bar->count()) |
498 tab_bar->removeTab(0); | |
83 | 499 for (unsigned int i = 0; i < sort_models.size(); i++) |
10 | 500 delete sort_models[i]; |
501 } | |
502 | |
503 #include "gui/pages/moc_anime_list.cpp" |