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