Mercurial > minori
annotate src/main.cc @ 381:5beae59cf042
anime_db: fix build fail under Qt 5
| author | Paper <paper@tflc.us> |
|---|---|
| date | Thu, 06 Nov 2025 01:17:24 -0500 |
| parents | 47c9f8502269 |
| children |
| rev | line source |
|---|---|
|
325
78929794e7d8
pages/seasons: run seasons search in a separate thread
Paper <paper@paper.us.eu.org>
parents:
317
diff
changeset
|
1 #include "core/anime.h" |
| 258 | 2 #include "core/anime_db.h" |
|
325
78929794e7d8
pages/seasons: run seasons search in a separate thread
Paper <paper@paper.us.eu.org>
parents:
317
diff
changeset
|
3 #include "core/date.h" |
| 10 | 4 #include "core/session.h" |
|
236
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
229
diff
changeset
|
5 #include "core/strings.h" |
| 258 | 6 #include "gui/window.h" |
| 250 | 7 #include "services/anilist.h" |
| 8 | |
| 10 | 9 #include <QApplication> |
| 258 | 10 #include <QLocale> |
| 46 | 11 #include <QStyleFactory> |
| 108 | 12 #include <QTranslator> |
| 10 | 13 |
|
317
b1f4d1867ab1
services: VERY initial Kitsu support
Paper <paper@paper.us.eu.org>
parents:
315
diff
changeset
|
14 #include <cstdlib> |
|
236
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
229
diff
changeset
|
15 |
| 369 | 16 int main(int argc, char **argv) |
| 17 { | |
| 10 | 18 QApplication app(argc, argv); |
| 250 | 19 app.setApplicationName("minori"); |
| 20 app.setApplicationDisplayName("Minori"); | |
|
236
4d461ef7d424
HUGE UPDATE: convert build system to autotools
Paper <mrpapersonic@gmail.com>
parents:
229
diff
changeset
|
21 app.setAttribute(Qt::AA_DontShowIconsInMenus, true); |
| 10 | 22 |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
23 qRegisterMetaType<std::vector<std::string>>(); /* window.cc */ |
| 369 | 24 qRegisterMetaType<std::vector<int>>(); /* search.cc */ |
|
315
34347fd2a2de
session: allow printing status messages
Paper <paper@paper.us.eu.org>
parents:
273
diff
changeset
|
25 qRegisterMetaType<std::string>(); |
|
327
b5d6c27c308f
anime: refactor Anime::SeriesSeason to Season class
Paper <paper@paper.us.eu.org>
parents:
325
diff
changeset
|
26 qRegisterMetaType<Anime::Season>(); |
|
273
f31305b9f60a
*: various code safety changes
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
27 |
| 10 | 28 session.config.Load(); |
|
177
122fad646f81
anime/db: upgrade to c++17 style, make things easier to read
Paper <mrpapersonic@gmail.com>
parents:
175
diff
changeset
|
29 Anime::db.LoadDatabaseFromDisk(); |
| 10 | 30 |
| 31 MainWindow window; | |
| 32 | |
| 33 window.resize(941, 750); | |
| 11 | 34 window.setWindowTitle("Minori"); |
| 10 | 35 window.show(); |
| 36 | |
|
315
34347fd2a2de
session: allow printing status messages
Paper <paper@paper.us.eu.org>
parents:
273
diff
changeset
|
37 /* do this before starting the app... */ |
|
34347fd2a2de
session: allow printing status messages
Paper <paper@paper.us.eu.org>
parents:
273
diff
changeset
|
38 session.SetMainWindow(&window); |
|
34347fd2a2de
session: allow printing status messages
Paper <paper@paper.us.eu.org>
parents:
273
diff
changeset
|
39 |
| 10 | 40 return app.exec(); |
| 46 | 41 } |
