Mercurial > minori
annotate src/gui/window.cc @ 113:32afe0e940bf
window: remove tiny little debug thing
| author | Paper <mrpapersonic@gmail.com> | 
|---|---|
| date | Mon, 06 Nov 2023 13:48:11 -0500 | 
| parents | 80f49f623d30 | 
| children | ab191e28e69d | 
| rev | line source | 
|---|---|
| 9 | 1 #include "gui/window.h" | 
| 64 | 2 #include "core/anime_db.h" | 
| 9 | 3 #include "core/config.h" | 
| 4 #include "core/session.h" | |
| 64 | 5 #include "core/strings.h" | 
| 102 | 6 #include "gui/theme.h" | 
| 62 | 7 #include "gui/dialog/about.h" | 
| 9 | 8 #include "gui/dialog/settings.h" | 
| 9 #include "gui/pages/anime_list.h" | |
| 62 | 10 #include "gui/pages/history.h" | 
| 9 | 11 #include "gui/pages/now_playing.h" | 
| 62 | 12 #include "gui/pages/search.h" | 
| 13 #include "gui/pages/seasons.h" | |
| 9 | 14 #include "gui/pages/statistics.h" | 
| 54 
466ac9870df9
add stub pages (to be implemented)
 Paper <mrpapersonic@gmail.com> parents: 
51diff
changeset | 15 #include "gui/pages/torrents.h" | 
| 46 | 16 #include "gui/widgets/sidebar.h" | 
| 15 | 17 #include "services/services.h" | 
| 64 | 18 #include "track/media.h" | 
| 63 | 19 #include <QActionGroup> | 
| 7 | 20 #include <QApplication> | 
| 64 | 21 #include <QDebug> | 
| 9 | 22 #include <QFile> | 
| 69 | 23 #include <QHBoxLayout> | 
| 7 | 24 #include <QMainWindow> | 
| 25 #include <QMenuBar> | |
| 63 | 26 #include <QMessageBox> | 
| 7 | 27 #include <QPlainTextEdit> | 
| 28 #include <QStackedWidget> | |
| 63 | 29 #include <QTextStream> | 
| 77 | 30 #include <QThreadPool> | 
| 62 | 31 #include <QTimer> | 
| 69 | 32 #include <QToolBar> | 
| 33 #include <QToolButton> | |
| 112 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 34 #include <iostream> | 
| 106 
c8c72278f6fd
*: #if -> #ifdef, remove outdated comments in sys/win32/dark_theme.cc
 Paper <mrpapersonic@gmail.com> parents: 
105diff
changeset | 35 #ifdef MACOSX | 
| 15 | 36 # include "sys/osx/dark_theme.h" | 
| 46 | 37 #elif defined(WIN32) | 
| 15 | 38 # include "sys/win32/dark_theme.h" | 
| 2 | 39 #endif | 
| 40 | |
| 10 | 41 enum class Pages { | 
| 42 NOW_PLAYING, | |
| 43 | |
| 44 ANIME_LIST, | |
| 45 HISTORY, | |
| 46 STATISTICS, | |
| 47 | |
| 48 SEARCH, | |
| 49 SEASONS, | |
| 50 TORRENTS | |
| 51 }; | |
| 52 | |
| 9 | 53 MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent) { | 
| 103 | 54 setWindowIcon(QIcon(":/favicon.png")); | 
| 55 | |
| 112 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 56 main_widget = new QWidget(this); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 57 /*QHBoxLayout* layout = */new QHBoxLayout(main_widget); | 
| 10 | 58 | 
| 112 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 59 AddMainWidgets(); | 
| 10 | 60 | 
| 79 | 61 setCentralWidget(main_widget); | 
| 62 | |
| 63 CreateBars(); | |
| 64 | |
| 65 QTimer* timer = new QTimer(this); | |
| 66 connect(timer, &QTimer::timeout, this, [this] { | |
| 67 NowPlayingPage* page = reinterpret_cast<NowPlayingPage*>(stack->widget(static_cast<int>(Pages::NOW_PLAYING))); | |
| 68 | |
| 69 Filesystem::Path p = Track::Media::GetCurrentPlaying(); | |
| 80 | 70 std::unordered_map<std::string, std::string> elements = Track::Media::GetFileElements(p); | 
| 71 int id = Anime::db.GetAnimeFromTitle(elements["title"]); | |
| 83 | 72 if (id <= 0) { | 
| 79 | 73 page->SetDefault(); | 
| 74 return; | |
| 75 } | |
| 76 | |
| 83 | 77 page->SetPlaying(Anime::db.items[id], elements); | 
| 79 | 78 }); | 
| 79 timer->start(5000); | |
| 80 } | |
| 81 | |
| 112 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 82 void MainWindow::AddMainWidgets() { | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 83 int page = static_cast<int>(Pages::ANIME_LIST); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 84 if (sidebar) { | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 85 main_widget->layout()->removeWidget(sidebar); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 86 delete sidebar; | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 87 } | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 88 | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 89 if (stack) { | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 90 page = stack->currentIndex(); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 91 main_widget->layout()->removeWidget(stack); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 92 delete stack; | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 93 } | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 94 | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 95 sidebar = new SideBar(main_widget); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 96 sidebar->setFixedWidth(128); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 97 sidebar->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Expanding); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 98 | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 99 sidebar->AddItem(tr("Now Playing"), SideBar::CreateIcon(":/icons/16x16/film.png")); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 100 sidebar->AddSeparator(); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 101 sidebar->AddItem(tr("Anime List"), SideBar::CreateIcon(":/icons/16x16/document-list.png")); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 102 sidebar->AddItem(tr("History"), SideBar::CreateIcon(":/icons/16x16/clock-history-frame.png")); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 103 sidebar->AddItem(tr("Statistics"), SideBar::CreateIcon(":/icons/16x16/chart.png")); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 104 sidebar->AddSeparator(); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 105 sidebar->AddItem(tr("Search"), SideBar::CreateIcon(":/icons/16x16/magnifier.png")); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 106 sidebar->AddItem(tr("Seasons"), SideBar::CreateIcon(":/icons/16x16/calendar.png")); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 107 sidebar->AddItem(tr("Torrents"), SideBar::CreateIcon(":/icons/16x16/feed.png")); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 108 | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 109 stack = new QStackedWidget(main_widget); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 110 stack->addWidget(new NowPlayingPage(main_widget)); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 111 stack->addWidget(new AnimeListPage(main_widget)); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 112 stack->addWidget(new HistoryPage(main_widget)); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 113 stack->addWidget(new StatisticsPage(main_widget)); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 114 stack->addWidget(new SearchPage(main_widget)); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 115 stack->addWidget(new SeasonsPage(main_widget)); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 116 stack->addWidget(new TorrentsPage(main_widget)); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 117 | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 118 connect(sidebar, &SideBar::CurrentItemChanged, stack, &QStackedWidget::setCurrentIndex); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 119 sidebar->SetCurrentItem(page); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 120 | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 121 main_widget->layout()->addWidget(sidebar); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 122 main_widget->layout()->addWidget(stack); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 123 } | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 124 | 
| 79 | 125 void MainWindow::CreateBars() { | 
| 2 | 126 /* Menu Bar */ | 
| 127 QAction* action; | |
| 79 | 128 QMenuBar* menubar = new QMenuBar(this); | 
| 51 | 129 QMenu* menu = menubar->addMenu(tr("&File")); | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 130 | 
| 51 | 131 QMenu* submenu = menu->addMenu(tr("&Library folders")); | 
| 132 action = submenu->addAction(tr("&Add new folder...")); | |
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 133 | 
| 51 | 134 action = menu->addAction(tr("&Scan available episodes")); | 
| 2 | 135 | 
| 136 menu->addSeparator(); | |
| 137 | |
| 51 | 138 action = menu->addAction(tr("Play &next episode")); | 
| 62 | 139 action->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_N)); | 
| 51 | 140 action = menu->addAction(tr("Play &random episode")); | 
| 62 | 141 action->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_R)); | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 142 | 
| 2 | 143 menu->addSeparator(); | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 144 | 
| 51 | 145 action = menu->addAction(tr("E&xit"), qApp, &QApplication::quit); | 
| 2 | 146 | 
| 51 | 147 menu = menubar->addMenu(tr("&Services")); | 
| 79 | 148 action = menu->addAction(tr("Synchronize &list"), [this] { AsyncSynchronize(stack); }); | 
| 62 | 149 action->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_S)); | 
| 2 | 150 | 
| 151 menu->addSeparator(); | |
| 152 | |
| 51 | 153 submenu = menu->addMenu(tr("&AniList")); | 
| 154 action = submenu->addAction(tr("Go to my &profile")); | |
| 155 action = submenu->addAction(tr("Go to my &stats")); | |
| 2 | 156 | 
| 51 | 157 submenu = menu->addMenu(tr("&Kitsu")); | 
| 158 action = submenu->addAction(tr("Go to my &feed")); | |
| 159 action = submenu->addAction(tr("Go to my &library")); | |
| 160 action = submenu->addAction(tr("Go to my &profile")); | |
| 2 | 161 | 
| 51 | 162 submenu = menu->addMenu(tr("&MyAnimeList")); | 
| 163 action = submenu->addAction(tr("Go to my p&anel")); | |
| 164 action = submenu->addAction(tr("Go to my &profile")); | |
| 165 action = submenu->addAction(tr("Go to my &history")); | |
| 2 | 166 | 
| 51 | 167 menu = menubar->addMenu(tr("&Tools")); | 
| 168 submenu = menu->addMenu(tr("&Export anime list")); | |
| 169 action = submenu->addAction(tr("Export as &Markdown...")); | |
| 170 action = submenu->addAction(tr("Export as MyAnimeList &XML...")); | |
| 2 | 171 | 
| 172 menu->addSeparator(); | |
| 173 | |
| 51 | 174 action = menu->addAction(tr("Enable anime &recognition")); | 
| 2 | 175 action->setCheckable(true); | 
| 51 | 176 action = menu->addAction(tr("Enable auto &sharing")); | 
| 2 | 177 action->setCheckable(true); | 
| 51 | 178 action = menu->addAction(tr("Enable &auto synchronization")); | 
| 2 | 179 action->setCheckable(true); | 
| 180 | |
| 181 menu->addSeparator(); | |
| 182 | |
| 51 | 183 action = menu->addAction(tr("&Settings"), [this] { | 
| 6 
1d82f6e04d7d
Update: add first parts to the settings dialog
 Paper <mrpapersonic@gmail.com> parents: 
5diff
changeset | 184 SettingsDialog dialog(this); | 
| 
1d82f6e04d7d
Update: add first parts to the settings dialog
 Paper <mrpapersonic@gmail.com> parents: 
5diff
changeset | 185 dialog.exec(); | 
| 
1d82f6e04d7d
Update: add first parts to the settings dialog
 Paper <mrpapersonic@gmail.com> parents: 
5diff
changeset | 186 }); | 
| 44 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 187 action->setMenuRole(QAction::PreferencesRole); | 
| 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 188 | 
| 51 | 189 menu = menubar->addMenu(tr("&View")); | 
| 44 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 190 | 
| 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 191 std::map<QAction*, int> page_to_index_map = {}; | 
| 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 192 | 
| 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 193 QActionGroup* pages_group = new QActionGroup(this); | 
| 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 194 pages_group->setExclusive(true); | 
| 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 195 | 
| 51 | 196 action = pages_group->addAction(menu->addAction(tr("&Now Playing"))); | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 197 action->setCheckable(true); | 
| 44 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 198 page_to_index_map[action] = 0; | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 199 | 
| 51 | 200 action = pages_group->addAction(menu->addAction(tr("&Anime List"))); | 
| 44 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 201 page_to_index_map[action] = 1; | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 202 action->setCheckable(true); | 
| 44 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 203 action->setChecked(true); | 
| 58 
b7a1c0010ffd
sidebar: link view menu and sidebar together
 Paper <mrpapersonic@gmail.com> parents: 
54diff
changeset | 204 | 
| 51 | 205 action = pages_group->addAction(menu->addAction(tr("&History"))); | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 206 action->setCheckable(true); | 
| 44 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 207 page_to_index_map[action] = 2; | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 208 | 
| 51 | 209 action = pages_group->addAction(menu->addAction(tr("&Statistics"))); | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 210 action->setCheckable(true); | 
| 44 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 211 page_to_index_map[action] = 3; | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 212 | 
| 51 | 213 action = pages_group->addAction(menu->addAction(tr("S&earch"))); | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 214 action->setCheckable(true); | 
| 44 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 215 page_to_index_map[action] = 4; | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 216 | 
| 51 | 217 action = pages_group->addAction(menu->addAction(tr("Se&asons"))); | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 218 action->setCheckable(true); | 
| 44 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 219 page_to_index_map[action] = 5; | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 220 | 
| 51 | 221 action = pages_group->addAction(menu->addAction(tr("&Torrents"))); | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 222 action->setCheckable(true); | 
| 44 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 223 page_to_index_map[action] = 6; | 
| 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 224 | 
| 63 | 225 connect(sidebar, &SideBar::CurrentItemChanged, this, | 
| 226 [pages_group](int index) { pages_group->actions()[index]->setChecked(true); }); | |
| 54 
466ac9870df9
add stub pages (to be implemented)
 Paper <mrpapersonic@gmail.com> parents: 
51diff
changeset | 227 | 
| 63 | 228 connect(pages_group, &QActionGroup::triggered, this, | 
| 79 | 229 [this, page_to_index_map](QAction* action) { sidebar->SetCurrentItem(page_to_index_map.at(action)); }); | 
| 54 
466ac9870df9
add stub pages (to be implemented)
 Paper <mrpapersonic@gmail.com> parents: 
51diff
changeset | 230 | 
| 48 
e613772f41d5
statistics.cpp: show requests made
 Paper <mrpapersonic@gmail.com> parents: 
46diff
changeset | 231 menu->addSeparator(); | 
| 51 | 232 menu->addAction(tr("Show sidebar")); | 
| 44 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 233 | 
| 51 | 234 menu = menubar->addMenu(tr("&Help")); | 
| 64 | 235 action = menu->addAction(tr("&About Minori"), this, [this] { | 
| 51 | 236 AboutWindow dialog(this); | 
| 237 dialog.exec(); | |
| 238 }); | |
| 239 action = menu->addAction(tr("About &Qt"), qApp, &QApplication::aboutQt); | |
| 44 
619cbd6e69f9
filesystem: fix CreateDirectories function
 Paper <mrpapersonic@gmail.com> parents: 
37diff
changeset | 240 action->setMenuRole(QAction::AboutQtRole); | 
| 2 | 241 | 
| 112 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 242 /* QMainWindow will delete the old one for us, | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 243 according to the docs */ | 
| 2 | 244 setMenuBar(menubar); | 
| 7 | 245 | 
| 68 
2417121d894e
*: normalize usage of layouts
 Paper <mrpapersonic@gmail.com> parents: 
64diff
changeset | 246 /* Toolbar */ | 
| 79 | 247 /* remove old toolbar(s) */ | 
| 248 QList<QToolBar*> toolbars = findChildren<QToolBar*>(); | |
| 112 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 249 for (auto& t : toolbars) { | 
| 79 | 250 removeToolBar(t); | 
| 112 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 251 delete t; | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 252 } | 
| 79 | 253 | 
| 68 
2417121d894e
*: normalize usage of layouts
 Paper <mrpapersonic@gmail.com> parents: 
64diff
changeset | 254 QToolBar* toolbar = new QToolBar(this); | 
| 77 | 255 toolbar->addAction(QIcon(":/icons/24x24/arrow-circle-double-135.png"), tr("&Synchronize"), | 
| 79 | 256 [this] { AsyncSynchronize(stack); }); | 
| 68 
2417121d894e
*: normalize usage of layouts
 Paper <mrpapersonic@gmail.com> parents: 
64diff
changeset | 257 toolbar->addSeparator(); | 
| 69 | 258 | 
| 259 QToolButton* button = new QToolButton(toolbar); | |
| 260 | |
| 261 menu = new QMenu(button); | |
| 262 action = menu->addAction(tr("Add new folder...")); | |
| 263 | |
| 264 button->setMenu(menu); | |
| 265 button->setIcon(QIcon(":/icons/24x24/folder-open.png")); | |
| 266 button->setPopupMode(QToolButton::InstantPopup); | |
| 267 toolbar->addWidget(button); | |
| 268 | |
| 269 button = new QToolButton(toolbar); | |
| 270 | |
| 271 menu = new QMenu(button); | |
| 272 action = menu->addAction(tr("Placeholder")); | |
| 273 | |
| 274 button->setMenu(menu); | |
| 275 button->setIcon(QIcon(":/icons/24x24/application-export.png")); | |
| 276 button->setPopupMode(QToolButton::InstantPopup); | |
| 277 toolbar->addWidget(button); | |
| 278 | |
| 279 toolbar->addSeparator(); | |
| 280 toolbar->addAction(QIcon(":/icons/24x24/gear.png"), tr("S&ettings"), [this] { | |
| 68 
2417121d894e
*: normalize usage of layouts
 Paper <mrpapersonic@gmail.com> parents: 
64diff
changeset | 281 SettingsDialog dialog(this); | 
| 
2417121d894e
*: normalize usage of layouts
 Paper <mrpapersonic@gmail.com> parents: 
64diff
changeset | 282 dialog.exec(); | 
| 
2417121d894e
*: normalize usage of layouts
 Paper <mrpapersonic@gmail.com> parents: 
64diff
changeset | 283 }); | 
| 
2417121d894e
*: normalize usage of layouts
 Paper <mrpapersonic@gmail.com> parents: 
64diff
changeset | 284 addToolBar(toolbar); | 
| 2 | 285 } | 
| 286 | |
| 287 void MainWindow::SetActivePage(QWidget* page) { | |
| 288 this->setCentralWidget(page); | |
| 289 } | |
| 290 | |
| 112 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 291 void MainWindow::AsyncSynchronize(QStackedWidget* stack) { | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 292 if (session.config.service == Anime::Services::NONE) { | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 293 QMessageBox msg; | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 294 msg.setWindowTitle(tr("Error synchronizing with service!")); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 295 msg.setText(tr("It seems you haven't yet selected a service to use.")); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 296 msg.setInformativeText(tr("Would you like to select one now?")); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 297 msg.setStandardButtons(QMessageBox::Yes | QMessageBox::No); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 298 msg.setDefaultButton(QMessageBox::Yes); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 299 int ret = msg.exec(); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 300 if (ret == QMessageBox::Yes) { | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 301 SettingsDialog dialog; | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 302 dialog.exec(); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 303 } | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 304 } | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 305 QThreadPool::globalInstance()->start([stack] { | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 306 Services::Synchronize(); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 307 reinterpret_cast<AnimeListPage*>(stack->widget(static_cast<int>(Pages::ANIME_LIST)))->Refresh(); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 308 }); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 309 } | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 310 | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 311 void MainWindow::RetranslateUI() { | 
| 113 
32afe0e940bf
window: remove tiny little debug thing
 Paper <mrpapersonic@gmail.com> parents: 
112diff
changeset | 312 /* This kinda sucks but nobody's really going to be changing | 
| 
32afe0e940bf
window: remove tiny little debug thing
 Paper <mrpapersonic@gmail.com> parents: 
112diff
changeset | 313 the application language all the time :p */ | 
| 112 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 314 setUpdatesEnabled(false); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 315 AddMainWidgets(); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 316 CreateBars(); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 317 setUpdatesEnabled(true); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 318 } | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 319 | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 320 void MainWindow::changeEvent(QEvent* event) { | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 321 if (event) { /* is this really necessary */ | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 322 switch (event->type()) { | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 323 // this event is send if a translator is loaded | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 324 case QEvent::LanguageChange: | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 325 RetranslateUI(); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 326 break; | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 327 | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 328 default: | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 329 break; | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 330 } | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 331 } | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 332 QMainWindow::changeEvent(event); | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 333 } | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 334 | 
| 105 
6d8da6e64d61
theme: add dark stylesheet, make it actually usable
 Paper <mrpapersonic@gmail.com> parents: 
103diff
changeset | 335 void MainWindow::showEvent(QShowEvent* event) { | 
| 
6d8da6e64d61
theme: add dark stylesheet, make it actually usable
 Paper <mrpapersonic@gmail.com> parents: 
103diff
changeset | 336 QMainWindow::showEvent(event); | 
| 
6d8da6e64d61
theme: add dark stylesheet, make it actually usable
 Paper <mrpapersonic@gmail.com> parents: 
103diff
changeset | 337 #ifdef WIN32 | 
| 112 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 338 /* Technically this *should* be | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 339 session.config.theme.IsInDarkTheme() && win32::IsInDarkTheme() | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 340 but I prefer the title bar being black even when light mode | 
| 
80f49f623d30
locale: allow switching locales without restarting
 Paper <mrpapersonic@gmail.com> parents: 
108diff
changeset | 341 is enabled :/ */ | 
| 108 | 342 win32::SetTitleBarsToBlack(session.config.theme.IsInDarkTheme()); | 
| 105 
6d8da6e64d61
theme: add dark stylesheet, make it actually usable
 Paper <mrpapersonic@gmail.com> parents: 
103diff
changeset | 343 #endif | 
| 
6d8da6e64d61
theme: add dark stylesheet, make it actually usable
 Paper <mrpapersonic@gmail.com> parents: 
103diff
changeset | 344 } | 
| 
6d8da6e64d61
theme: add dark stylesheet, make it actually usable
 Paper <mrpapersonic@gmail.com> parents: 
103diff
changeset | 345 | 
| 2 | 346 void MainWindow::closeEvent(QCloseEvent* event) { | 
| 347 session.config.Save(); | |
| 348 event->accept(); | |
| 349 } | |
| 350 | |
| 9 | 351 #include "gui/moc_window.cpp" | 
