Mercurial > minori
annotate src/gui/pages/anime_list.cc @ 295:b82841e76e79
*: better support on Windows
things now look much better in dark mode
| author | Paper <paper@paper.us.eu.org> |
|---|---|
| date | Sun, 12 May 2024 20:24:09 -0400 |
| parents | 9a88e1725fd2 |
| children | 91ac90a34003 |
| 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" |
|
178
bc8d2ccff09c
win32/dark: use existing STL classes for dwmapi
Paper <mrpapersonic@gmail.com>
parents:
118
diff
changeset
|
20 |
|
187
9613d72b097e
*: multiple performance improvements
Paper <mrpapersonic@gmail.com>
parents:
185
diff
changeset
|
21 #include <QDate> |
| 15 | 22 #include <QDebug> |
| 10 | 23 #include <QHBoxLayout> |
| 24 #include <QHeaderView> | |
| 25 #include <QMenu> | |
| 26 #include <QProgressBar> | |
| 27 #include <QShortcut> | |
| 28 #include <QStylePainter> | |
| 29 #include <QStyledItemDelegate> | |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
30 #include <QThreadPool> |
|
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
31 #include <QRunnable> |
| 258 | 32 #include <QTreeView> |
|
178
bc8d2ccff09c
win32/dark: use existing STL classes for dwmapi
Paper <mrpapersonic@gmail.com>
parents:
118
diff
changeset
|
33 |
| 77 | 34 #include <set> |
| 10 | 35 |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
36 AnimeListPageUpdateEntryThread::AnimeListPageUpdateEntryThread(AnimeListPage* parent) : QThread(parent) { |
|
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
37 page_ = parent; |
|
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
38 } |
|
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
39 |
|
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
40 void AnimeListPageUpdateEntryThread::AddToQueue(int id) { |
|
274
f6a756c19bfb
anime_list.cc: use mutexes so we don't sex the stack
Paper <paper@paper.us.eu.org>
parents:
273
diff
changeset
|
41 const std::lock_guard<std::mutex> guard(_queue_mutex); |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
42 queue_.push(id); |
|
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
43 } |
|
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
44 |
|
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
45 /* processes the queue... */ |
|
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
46 void AnimeListPageUpdateEntryThread::run() { |
|
274
f6a756c19bfb
anime_list.cc: use mutexes so we don't sex the stack
Paper <paper@paper.us.eu.org>
parents:
273
diff
changeset
|
47 { |
|
f6a756c19bfb
anime_list.cc: use mutexes so we don't sex the stack
Paper <paper@paper.us.eu.org>
parents:
273
diff
changeset
|
48 const std::lock_guard<std::mutex> guard(_queue_mutex); |
|
f6a756c19bfb
anime_list.cc: use mutexes so we don't sex the stack
Paper <paper@paper.us.eu.org>
parents:
273
diff
changeset
|
49 while (!queue_.empty() && !isInterruptionRequested()) { |
|
f6a756c19bfb
anime_list.cc: use mutexes so we don't sex the stack
Paper <paper@paper.us.eu.org>
parents:
273
diff
changeset
|
50 Services::UpdateAnimeEntry(queue_.front()); |
|
f6a756c19bfb
anime_list.cc: use mutexes so we don't sex the stack
Paper <paper@paper.us.eu.org>
parents:
273
diff
changeset
|
51 queue_.pop(); |
|
f6a756c19bfb
anime_list.cc: use mutexes so we don't sex the stack
Paper <paper@paper.us.eu.org>
parents:
273
diff
changeset
|
52 } |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
53 } |
|
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
54 page_->Refresh(); |
|
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
55 } |
|
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
56 |
| 64 | 57 AnimeListPageSortFilter::AnimeListPageSortFilter(QObject* parent) : QSortFilterProxyModel(parent) { |
| 10 | 58 } |
| 59 | |
| 64 | 60 bool AnimeListPageSortFilter::lessThan(const QModelIndex& l, const QModelIndex& r) const { |
| 10 | 61 QVariant left = sourceModel()->data(l, sortRole()); |
| 62 QVariant right = sourceModel()->data(r, sortRole()); | |
| 63 | |
| 64 switch (left.userType()) { | |
| 65 case QMetaType::Int: | |
| 66 case QMetaType::UInt: | |
| 67 case QMetaType::LongLong: | |
| 68 case QMetaType::ULongLong: return left.toInt() < right.toInt(); | |
| 69 case QMetaType::QDate: return left.toDate() < right.toDate(); | |
| 70 case QMetaType::QString: | |
| 71 default: return QString::compare(left.toString(), right.toString(), Qt::CaseInsensitive) < 0; | |
| 72 } | |
| 73 } | |
| 74 | |
|
114
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
75 /* -------------------------------------------------- */ |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
76 |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
77 AnimeListPageModel::AnimeListPageModel(QObject* parent, Anime::ListStatus _status) : QAbstractListModel(parent) { |
| 10 | 78 status = _status; |
| 79 return; | |
| 80 } | |
| 81 | |
| 64 | 82 int AnimeListPageModel::rowCount(const QModelIndex& parent) const { |
| 10 | 83 return list.size(); |
| 84 (void)(parent); | |
| 85 } | |
| 86 | |
| 64 | 87 int AnimeListPageModel::columnCount(const QModelIndex& parent) const { |
| 10 | 88 return NB_COLUMNS; |
| 89 (void)(parent); | |
| 90 } | |
| 91 | |
| 64 | 92 QVariant AnimeListPageModel::headerData(const int section, const Qt::Orientation orientation, const int role) const { |
| 10 | 93 if (role == Qt::DisplayRole) { |
| 94 switch (section) { | |
|
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
95 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
|
96 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
|
97 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
|
98 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
|
99 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
|
100 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
|
101 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
|
102 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
|
103 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
|
104 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
|
105 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
|
106 default: return {}; |
| 10 | 107 } |
| 108 } else if (role == Qt::TextAlignmentRole) { | |
| 109 switch (section) { | |
|
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
110 case AL_TITLE: |
|
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 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
|
112 case AL_PROGRESS: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
113 case AL_EPISODES: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
114 case AL_TYPE: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
115 case AL_SCORE: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
116 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
|
117 case AL_SEASON: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
118 case AL_STARTED: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
119 case AL_COMPLETED: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
120 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
|
121 default: return QAbstractListModel::headerData(section, orientation, role); |
| 10 | 122 } |
| 123 } | |
| 124 return QAbstractListModel::headerData(section, orientation, role); | |
| 125 } | |
| 126 | |
| 64 | 127 QVariant AnimeListPageModel::data(const QModelIndex& index, int role) const { |
| 10 | 128 if (!index.isValid()) |
| 129 return QVariant(); | |
| 130 switch (role) { | |
| 131 case Qt::DisplayRole: | |
|
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
132 switch (index.column()) { |
|
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
133 case AL_TITLE: return Strings::ToQString(list[index.row()].GetUserPreferredTitle()); |
|
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
134 case AL_PROGRESS: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
135 return QString::number(list[index.row()].GetUserProgress()) + "/" + |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
136 QString::number(list[index.row()].GetEpisodes()); |
|
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
137 case AL_EPISODES: return list[index.row()].GetEpisodes(); |
|
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
138 case AL_SCORE: return Strings::ToQString(list[index.row()].GetUserPresentableScore()); |
|
65
26721c28bf22
*: avoid usage of (to|from)StdString
Paper <mrpapersonic@gmail.com>
parents:
64
diff
changeset
|
139 case AL_TYPE: return Strings::ToQString(Translate::ToString(list[index.row()].GetFormat())); |
| 197 | 140 case AL_SEASON: { |
|
198
bc1ae1810855
dep/animia: switch from using classes to global functions
Paper <mrpapersonic@gmail.com>
parents:
197
diff
changeset
|
141 std::optional<unsigned int> year = list[index.row()].GetAirDate().GetYear(); |
|
bc1ae1810855
dep/animia: switch from using classes to global functions
Paper <mrpapersonic@gmail.com>
parents:
197
diff
changeset
|
142 if (!year) |
|
bc1ae1810855
dep/animia: switch from using classes to global functions
Paper <mrpapersonic@gmail.com>
parents:
197
diff
changeset
|
143 return "Unknown Unknown"; |
| 258 | 144 return Strings::ToQString(Translate::ToLocalString(list[index.row()].GetSeason()) + " " + |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
145 Strings::ToUtf8String(year.value())); |
| 197 | 146 } |
|
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
147 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
|
148 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
|
149 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
|
150 case AL_UPDATED: { |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
151 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
|
152 return QString("-"); |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
153 Time::Duration duration(Time::GetSystemTime() - list[index.row()].GetUserTimeUpdated()); |
|
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
154 return Strings::ToQString(duration.AsRelativeString()); |
|
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
155 } |
|
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
156 case AL_NOTES: return Strings::ToQString(list[index.row()].GetUserNotes()); |
|
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
157 default: return ""; |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
158 } |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
159 break; |
| 10 | 160 case Qt::UserRole: |
|
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
161 switch (index.column()) { |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
162 case AL_PROGRESS: return list[index.row()].GetUserProgress(); |
|
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
163 case AL_SCORE: return list[index.row()].GetUserScore(); |
|
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
164 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
|
165 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
|
166 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
|
167 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
|
168 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
|
169 } |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
170 break; |
| 10 | 171 case Qt::TextAlignmentRole: |
|
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
172 switch (index.column()) { |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
173 case AL_TITLE: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
174 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
|
175 case AL_PROGRESS: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
176 case AL_EPISODES: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
177 case AL_TYPE: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
178 case AL_SCORE: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
179 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
|
180 case AL_SEASON: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
181 case AL_STARTED: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
182 case AL_COMPLETED: |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
183 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
|
184 default: break; |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
185 } |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
186 break; |
| 10 | 187 } |
| 188 return QVariant(); | |
| 189 } | |
| 190 | |
| 64 | 191 Anime::Anime* AnimeListPageModel::GetAnimeFromIndex(QModelIndex index) { |
| 10 | 192 return &list.at(index.row()); |
| 193 } | |
| 194 | |
| 64 | 195 void AnimeListPageModel::RefreshList() { |
|
118
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
196 /* equivalent to hasChildren()... */ |
|
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
197 if (!rowCount(index(0))) { |
| 77 | 198 beginInsertRows(QModelIndex(), 0, 0); |
| 199 endInsertRows(); | |
| 15 | 200 } |
| 201 | |
| 77 | 202 beginResetModel(); |
| 203 | |
| 10 | 204 list.clear(); |
| 205 | |
| 11 | 206 for (const auto& a : Anime::db.items) { |
| 207 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
|
208 list.push_back(a.second); |
| 10 | 209 } |
| 210 } | |
| 15 | 211 |
| 77 | 212 endResetModel(); |
| 10 | 213 } |
| 214 | |
|
114
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
215 /* ----------------------------------------------------------------- */ |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
216 |
| 64 | 217 int AnimeListPage::VisibleColumnsCount() const { |
| 10 | 218 int count = 0; |
| 219 | |
| 220 for (int i = 0, end = tree_view->header()->count(); i < end; i++) { | |
| 221 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
|
222 count++; |
| 10 | 223 } |
| 224 | |
| 225 return count; | |
| 226 } | |
| 227 | |
| 64 | 228 void AnimeListPage::SetColumnDefaults() { |
| 229 tree_view->setColumnHidden(AnimeListPageModel::AL_SEASON, false); | |
| 230 tree_view->setColumnHidden(AnimeListPageModel::AL_TYPE, false); | |
| 231 tree_view->setColumnHidden(AnimeListPageModel::AL_UPDATED, false); | |
| 232 tree_view->setColumnHidden(AnimeListPageModel::AL_PROGRESS, false); | |
| 233 tree_view->setColumnHidden(AnimeListPageModel::AL_SCORE, false); | |
| 234 tree_view->setColumnHidden(AnimeListPageModel::AL_TITLE, false); | |
| 235 tree_view->setColumnHidden(AnimeListPageModel::AL_EPISODES, true); | |
| 236 tree_view->setColumnHidden(AnimeListPageModel::AL_AVG_SCORE, true); | |
| 237 tree_view->setColumnHidden(AnimeListPageModel::AL_STARTED, true); | |
| 238 tree_view->setColumnHidden(AnimeListPageModel::AL_COMPLETED, true); | |
| 239 tree_view->setColumnHidden(AnimeListPageModel::AL_UPDATED, true); | |
| 240 tree_view->setColumnHidden(AnimeListPageModel::AL_NOTES, true); | |
| 10 | 241 } |
| 242 | |
| 77 | 243 void AnimeListPage::UpdateAnime(int id) { |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
244 /* this ought to just add to the thread's buffer. */ |
|
274
f6a756c19bfb
anime_list.cc: use mutexes so we don't sex the stack
Paper <paper@paper.us.eu.org>
parents:
273
diff
changeset
|
245 if (update_entry_thread_.isRunning()) |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
246 update_entry_thread_.requestInterruption(); |
|
230
2f5a9247e501
torrents: implement download button
Paper <paper@paper.us.eu.org>
parents:
211
diff
changeset
|
247 |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
248 update_entry_thread_.AddToQueue(id); |
|
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
249 update_entry_thread_.start(); |
| 77 | 250 } |
| 251 | |
| 252 void AnimeListPage::RemoveAnime(int id) { | |
| 253 Anime::Anime& anime = Anime::db.items[id]; | |
| 254 anime.RemoveFromUserList(); | |
| 255 Refresh(); | |
| 256 } | |
| 257 | |
| 64 | 258 void AnimeListPage::DisplayColumnHeaderMenu() { |
| 10 | 259 QMenu* menu = new QMenu(this); |
| 260 menu->setAttribute(Qt::WA_DeleteOnClose); | |
| 261 menu->setTitle(tr("Column visibility")); | |
| 262 menu->setToolTipsVisible(true); | |
| 263 | |
| 64 | 264 for (int i = 0; i < AnimeListPageModel::NB_COLUMNS; i++) { |
| 265 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
|
266 continue; |
| 10 | 267 const auto column_name = |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
268 sort_models[tab_bar->currentIndex()]->headerData(i, Qt::Horizontal, Qt::DisplayRole).toString(); |
|
118
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
269 |
| 10 | 270 QAction* action = menu->addAction(column_name, this, [this, i](const bool checked) { |
| 271 if (!checked && (VisibleColumnsCount() <= 1)) | |
| 272 return; | |
| 273 | |
| 274 tree_view->setColumnHidden(i, !checked); | |
| 275 | |
| 276 if (checked && (tree_view->columnWidth(i) <= 5)) | |
| 277 tree_view->resizeColumnToContents(i); | |
| 278 | |
| 279 // SaveSettings(); | |
| 280 }); | |
|
118
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
281 |
| 10 | 282 action->setCheckable(true); |
| 283 action->setChecked(!tree_view->isColumnHidden(i)); | |
| 284 } | |
| 285 | |
| 286 menu->addSeparator(); | |
|
105
6d8da6e64d61
theme: add dark stylesheet, make it actually usable
Paper <mrpapersonic@gmail.com>
parents:
102
diff
changeset
|
287 menu->addAction(tr("Reset to defaults"), this, [this]() { |
| 10 | 288 for (int i = 0, count = tree_view->header()->count(); i < count; ++i) { |
| 289 SetColumnDefaults(); | |
| 290 } | |
| 291 // SaveSettings(); | |
| 292 }); | |
| 293 menu->popup(QCursor::pos()); | |
| 294 } | |
| 295 | |
| 64 | 296 void AnimeListPage::DisplayListMenu() { |
| 10 | 297 QMenu* menu = new QMenu(this); |
| 298 menu->setAttribute(Qt::WA_DeleteOnClose); | |
| 299 menu->setToolTipsVisible(true); | |
| 300 | |
| 77 | 301 AnimeListPageModel* source_model = |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
302 reinterpret_cast<AnimeListPageModel*>(sort_models[tab_bar->currentIndex()]->sourceModel()); |
| 15 | 303 const QItemSelection selection = |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
304 sort_models[tab_bar->currentIndex()]->mapSelectionToSource(tree_view->selectionModel()->selection()); |
| 77 | 305 |
| 306 std::set<Anime::Anime*> animes; | |
| 307 for (const auto& index : selection.indexes()) { | |
| 308 if (!index.isValid()) | |
| 309 continue; | |
| 310 Anime::Anime* anime = source_model->GetAnimeFromIndex(index); | |
| 311 if (anime) | |
| 312 animes.insert(anime); | |
| 10 | 313 } |
| 314 | |
|
105
6d8da6e64d61
theme: add dark stylesheet, make it actually usable
Paper <mrpapersonic@gmail.com>
parents:
102
diff
changeset
|
315 menu->addAction(tr("Information"), [this, animes] { |
| 77 | 316 for (auto& anime : animes) { |
| 258 | 317 InformationDialog* dialog = new InformationDialog( |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
318 *anime, [this, anime] { UpdateAnime(anime->GetId()); }, InformationDialog::PAGE_MAIN_INFO, this); |
| 10 | 319 |
| 77 | 320 dialog->show(); |
| 321 dialog->raise(); | |
| 322 dialog->activateWindow(); | |
| 291 | 323 connect(dialog, &InformationDialog::finished, dialog, &InformationDialog::deleteLater); |
| 77 | 324 } |
| 325 }); | |
| 326 menu->addSeparator(); | |
|
118
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
327 menu->addAction(tr("Edit"), [this, animes] { |
|
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
328 for (auto& anime : animes) { |
| 258 | 329 InformationDialog* dialog = new InformationDialog( |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
330 *anime, [this, anime] { UpdateAnime(anime->GetId()); }, InformationDialog::PAGE_MY_LIST, this); |
|
118
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
331 |
|
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
332 dialog->show(); |
|
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
333 dialog->raise(); |
|
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
334 dialog->activateWindow(); |
| 291 | 335 connect(dialog, &InformationDialog::finished, dialog, &InformationDialog::deleteLater); |
|
118
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
336 } |
|
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
114
diff
changeset
|
337 }); |
|
105
6d8da6e64d61
theme: add dark stylesheet, make it actually usable
Paper <mrpapersonic@gmail.com>
parents:
102
diff
changeset
|
338 menu->addAction(tr("Delete from list..."), [this, animes] { |
| 77 | 339 for (auto& anime : animes) { |
| 340 RemoveAnime(anime->GetId()); | |
| 341 } | |
| 10 | 342 }); |
| 343 menu->popup(QCursor::pos()); | |
| 344 } | |
| 345 | |
| 64 | 346 void AnimeListPage::ItemDoubleClicked() { |
| 10 | 347 /* throw out any other garbage */ |
| 348 const QItemSelection selection = | |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
349 sort_models[tab_bar->currentIndex()]->mapSelectionToSource(tree_view->selectionModel()->selection()); |
| 10 | 350 if (!selection.indexes().first().isValid()) { |
| 351 return; | |
| 352 } | |
| 353 | |
| 64 | 354 AnimeListPageModel* source_model = |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
355 reinterpret_cast<AnimeListPageModel*>(sort_models[tab_bar->currentIndex()]->sourceModel()); |
| 64 | 356 |
| 357 const QModelIndex index = source_model->index(selection.indexes().first().row()); | |
| 358 Anime::Anime* anime = source_model->GetAnimeFromIndex(index); | |
| 10 | 359 |
| 258 | 360 InformationDialog* dialog = new InformationDialog( |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
361 *anime, [this, anime] { UpdateAnime(anime->GetId()); }, InformationDialog::PAGE_MAIN_INFO, this); |
| 10 | 362 |
| 363 dialog->show(); | |
| 364 dialog->raise(); | |
| 365 dialog->activateWindow(); | |
| 291 | 366 connect(dialog, &InformationDialog::finished, dialog, &InformationDialog::deleteLater); |
| 10 | 367 } |
| 368 | |
|
114
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
369 void AnimeListPage::RefreshList() { |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
370 for (unsigned int i = 0; i < sort_models.size(); i++) |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
371 reinterpret_cast<AnimeListPageModel*>(sort_models[i]->sourceModel())->RefreshList(); |
| 10 | 372 } |
| 373 | |
|
114
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
374 void AnimeListPage::RefreshTabs() { |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
375 for (unsigned int i = 0; i < sort_models.size(); i++) |
|
211
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
198
diff
changeset
|
376 tab_bar->setTabText(i, Strings::ToQString(Translate::ToString(Anime::ListStatuses[i])) + " (" + |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
377 QString::number(Anime::db.GetListsAnimeAmount(Anime::ListStatuses[i])) + ")"); |
| 10 | 378 } |
| 379 | |
|
114
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
380 void AnimeListPage::Refresh() { |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
381 RefreshList(); |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
382 RefreshTabs(); |
| 10 | 383 } |
| 384 | |
|
114
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
385 /* -------- QTabWidget replication begin --------- */ |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
386 |
| 64 | 387 void AnimeListPage::InitBasicStyle(QStyleOptionTabWidgetFrame* option) const { |
| 10 | 388 if (!option) |
| 389 return; | |
| 390 | |
| 391 option->initFrom(this); | |
| 392 option->lineWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth, nullptr, this); | |
| 393 option->shape = QTabBar::RoundedNorth; | |
| 394 option->tabBarRect = tab_bar->geometry(); | |
| 395 } | |
| 396 | |
| 64 | 397 void AnimeListPage::InitStyle(QStyleOptionTabWidgetFrame* option) const { |
| 10 | 398 if (!option) |
| 399 return; | |
| 400 | |
| 401 InitBasicStyle(option); | |
| 402 | |
| 403 QSize t(0, tree_view->frameWidth()); | |
| 404 if (tab_bar->isVisibleTo(this)) { | |
| 405 t = tab_bar->sizeHint(); | |
| 406 t.setWidth(width()); | |
| 407 } | |
| 46 | 408 |
| 10 | 409 option->tabBarSize = t; |
| 410 | |
| 411 QRect selected_tab_rect = tab_bar->tabRect(tab_bar->currentIndex()); | |
| 412 selected_tab_rect.moveTopLeft(selected_tab_rect.topLeft() + option->tabBarRect.topLeft()); | |
| 413 option->selectedTabRect = selected_tab_rect; | |
| 414 | |
| 415 option->lineWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth, nullptr, this); | |
| 416 } | |
| 417 | |
| 64 | 418 void AnimeListPage::SetupLayout() { |
| 10 | 419 QStyleOptionTabWidgetFrame option; |
| 420 InitStyle(&option); | |
| 421 | |
| 422 QRect tabRect = style()->subElementRect(QStyle::SE_TabWidgetTabBar, &option, this); | |
| 423 tabRect.setLeft(tabRect.left() + 1); | |
| 424 panelRect = style()->subElementRect(QStyle::SE_TabWidgetTabPane, &option, this); | |
| 425 QRect contentsRect = style()->subElementRect(QStyle::SE_TabWidgetTabContents, &option, this); | |
| 426 | |
| 427 tab_bar->setGeometry(tabRect); | |
| 428 tree_view->parentWidget()->setGeometry(contentsRect); | |
| 429 } | |
| 430 | |
|
114
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
431 void AnimeListPage::paintEvent(QPaintEvent*) { |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
432 QStylePainter p(this); |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
433 |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
434 QStyleOptionTabWidgetFrame opt; |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
435 InitStyle(&opt); |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
436 opt.rect = panelRect; |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
437 p.drawPrimitive(QStyle::PE_FrameTabWidget, opt); |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
438 } |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
439 |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
440 void AnimeListPage::resizeEvent(QResizeEvent* e) { |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
441 QWidget::resizeEvent(e); |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
442 SetupLayout(); |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
443 } |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
444 |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
445 void AnimeListPage::showEvent(QShowEvent*) { |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
446 SetupLayout(); |
| 250 | 447 Refresh(); |
|
114
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
448 } |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
449 |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
450 /* --------- QTabWidget replication end ---------- */ |
|
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
112
diff
changeset
|
451 |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
452 AnimeListPage::AnimeListPage(QWidget* parent) : QWidget(parent), update_entry_thread_(this) { |
| 10 | 453 /* Tab bar */ |
| 454 tab_bar = new QTabBar(this); | |
| 455 tab_bar->setExpanding(false); | |
| 456 tab_bar->setDrawBase(false); | |
| 457 | |
| 458 /* Tree view... */ | |
| 459 QWidget* tree_widget = new QWidget(this); | |
| 460 tree_view = new QTreeView(tree_widget); | |
| 461 tree_view->setUniformRowHeights(true); | |
| 462 tree_view->setAllColumnsShowFocus(false); | |
| 463 tree_view->setAlternatingRowColors(true); | |
| 464 tree_view->setSortingEnabled(true); | |
| 465 tree_view->setSelectionMode(QAbstractItemView::ExtendedSelection); | |
| 466 tree_view->setItemsExpandable(false); | |
| 467 tree_view->setRootIsDecorated(false); | |
| 468 tree_view->setContextMenuPolicy(Qt::CustomContextMenu); | |
| 469 tree_view->setFrameShape(QFrame::NoFrame); | |
| 470 | |
| 83 | 471 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
|
472 tab_bar->addTab(Strings::ToQString(Translate::ToString(Anime::ListStatuses[i])) + " (" + |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
473 QString::number(Anime::db.GetListsAnimeAmount(Anime::ListStatuses[i])) + ")"); |
| 64 | 474 sort_models[i] = new AnimeListPageSortFilter(tree_view); |
| 475 sort_models[i]->setSourceModel(new AnimeListPageModel(this, Anime::ListStatuses[i])); | |
| 10 | 476 sort_models[i]->setSortRole(Qt::UserRole); |
| 477 sort_models[i]->setSortCaseSensitivity(Qt::CaseInsensitive); | |
| 478 } | |
|
236
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
232
diff
changeset
|
479 |
| 15 | 480 tree_view->setModel(sort_models[0]); |
| 10 | 481 |
|
236
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
232
diff
changeset
|
482 /* Set column widths */ |
|
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
232
diff
changeset
|
483 tree_view->setColumnWidth(AnimeListPageModel::AL_TITLE, 300); |
|
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
232
diff
changeset
|
484 tree_view->setColumnWidth(AnimeListPageModel::AL_PROGRESS, 200); |
|
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
232
diff
changeset
|
485 tree_view->setColumnWidth(AnimeListPageModel::AL_SCORE, 50); |
|
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
232
diff
changeset
|
486 tree_view->setColumnWidth(AnimeListPageModel::AL_AVG_SCORE, 55); |
|
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
232
diff
changeset
|
487 tree_view->setColumnWidth(AnimeListPageModel::AL_TYPE, 65); |
|
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
232
diff
changeset
|
488 tree_view->setColumnWidth(AnimeListPageModel::AL_SEASON, 95); |
|
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
232
diff
changeset
|
489 tree_view->setColumnWidth(AnimeListPageModel::AL_STARTED, 90); |
|
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
232
diff
changeset
|
490 tree_view->setColumnWidth(AnimeListPageModel::AL_COMPLETED, 90); |
|
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
232
diff
changeset
|
491 tree_view->setColumnWidth(AnimeListPageModel::AL_UPDATED, 100); |
|
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
232
diff
changeset
|
492 tree_view->setColumnWidth(AnimeListPageModel::AL_NOTES, 100); |
|
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
232
diff
changeset
|
493 |
|
68
2417121d894e
*: normalize usage of layouts
Paper <mrpapersonic@gmail.com>
parents:
65
diff
changeset
|
494 QHBoxLayout* layout = new QHBoxLayout(tree_widget); |
| 10 | 495 layout->addWidget(tree_view); |
| 62 | 496 layout->setContentsMargins(0, 0, 0, 0); |
| 10 | 497 |
| 498 /* Double click stuff */ | |
| 64 | 499 connect(tree_view, &QAbstractItemView::doubleClicked, this, &AnimeListPage::ItemDoubleClicked); |
| 500 connect(tree_view, &QWidget::customContextMenuRequested, this, &AnimeListPage::DisplayListMenu); | |
| 10 | 501 |
| 502 /* Enter & return keys */ | |
| 15 | 503 connect(new QShortcut(Qt::Key_Return, tree_view, nullptr, nullptr, Qt::WidgetShortcut), &QShortcut::activated, this, |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
504 &AnimeListPage::ItemDoubleClicked); |
| 10 | 505 |
| 15 | 506 connect(new QShortcut(Qt::Key_Enter, tree_view, nullptr, nullptr, Qt::WidgetShortcut), &QShortcut::activated, this, |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
507 &AnimeListPage::ItemDoubleClicked); |
| 10 | 508 |
| 509 tree_view->header()->setStretchLastSection(false); | |
| 510 tree_view->header()->setContextMenuPolicy(Qt::CustomContextMenu); | |
| 64 | 511 connect(tree_view->header(), &QWidget::customContextMenuRequested, this, &AnimeListPage::DisplayColumnHeaderMenu); |
| 10 | 512 |
| 513 connect(tab_bar, &QTabBar::currentChanged, this, [this](int index) { | |
| 514 if (sort_models[index]) | |
| 515 tree_view->setModel(sort_models[index]); | |
| 516 }); | |
| 517 | |
| 69 | 518 SetColumnDefaults(); |
| 10 | 519 setFocusPolicy(Qt::TabFocus); |
| 520 setFocusProxy(tab_bar); | |
| 521 } |
