Mercurial > minori
annotate include/track/media.h @ 229:adc20fa321c1
theme: force Fusion style on platforms other than Win32 or OS X
I was reluctant to do this, but most of the other styles just
look like pure shite regardless of whether I force a stylesheet
on them or not. KDE's style is actually hilariously bad paired
with my stylesheet, so I've decided to also make the stylesheet
Windows-specific as well, because that's really the only platform
where it makes sense in the first place.
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 10 Jan 2024 21:23:57 -0500 |
parents | d43d68408d3c |
children | 862d0d8619f6 |
rev | line source |
---|---|
64 | 1 #ifndef __track__media_h |
2 #define __track__media_h | |
80 | 3 #include <unordered_map> |
138
28842a8d0c6b
dep/animia: huge refactor (again...)
Paper <mrpapersonic@gmail.com>
parents:
135
diff
changeset
|
4 #include <string> |
28842a8d0c6b
dep/animia: huge refactor (again...)
Paper <mrpapersonic@gmail.com>
parents:
135
diff
changeset
|
5 #include <vector> |
64 | 6 |
7 namespace Track { | |
8 namespace Media { | |
9 | |
138
28842a8d0c6b
dep/animia: huge refactor (again...)
Paper <mrpapersonic@gmail.com>
parents:
135
diff
changeset
|
10 bool GetCurrentlyPlaying(std::vector<std::string>& vec); |
64 | 11 |
12 } // namespace Media | |
13 } // namespace Track | |
14 | |
15 #endif // __track__media_h |