annotate include/gui/translate/anilist.h @ 166:54c5d80a737e
dep/animia: add libutil method
I changed the "linux" method to be "proc", because it isn't exactly Linux specific
this commit also has some changes to the x11 stuff:
instead of enumerating over only top-level windows, we iterate over ALL of them
this is because many X11 apps actually use multiple windows
for some reason, I still can't get it to work with VLC, but it picks up Firefox...
author |
paper@DavesDouble.local |
date |
Sun, 19 Nov 2023 04:21:56 -0500 |
parents |
3d2decf093bb |
children |
3ec7804abf17 |
rev |
line source |
15
|
1 #ifndef __gui__translate__anilist_h
|
|
2 #define __gui__translate__anilist_h
|
|
3 #include "core/anime.h"
|
|
4
|
63
|
5 namespace Translate {
|
|
6 namespace AniList {
|
15
|
7
|
|
8 Anime::SeriesStatus ToSeriesStatus(std::string status);
|
|
9 Anime::SeriesSeason ToSeriesSeason(std::string season);
|
|
10 Anime::SeriesFormat ToSeriesFormat(std::string format);
|
|
11
|
63
|
12 } // namespace AniList
|
|
13 } // namespace Translate
|
15
|
14
|
|
15 #endif // __gui__translate__anilist_h
|