diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-10-14 19:12:11 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-10-14 19:12:11 +0300 |
commit | 6b589f349f5fa459d25d865a65d11e242232b7a5 (patch) | |
tree | 6f477867e4815b3bcc2dc90fbf2c0e6fdcb7427e /src/ui/playerui.h | |
parent | 72a2736572c31bf17ef36e422d35c3975d41e470 (diff) |
Player: Volume adjustment UI
Diffstat (limited to 'src/ui/playerui.h')
-rw-r--r-- | src/ui/playerui.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/ui/playerui.h b/src/ui/playerui.h new file mode 100644 index 00000000..a1f4ca9b --- /dev/null +++ b/src/ui/playerui.h | |||
@@ -0,0 +1,44 @@ | |||
1 | /* Copyright 2020 Jaakko Keränen <jaakko.keranen@iki.fi> | ||
2 | |||
3 | Redistribution and use in source and binary forms, with or without | ||
4 | modification, are permitted provided that the following conditions are met: | ||
5 | |||
6 | 1. Redistributions of source code must retain the above copyright notice, this | ||
7 | list of conditions and the following disclaimer. | ||
8 | 2. Redistributions in binary form must reproduce the above copyright notice, | ||
9 | this list of conditions and the following disclaimer in the documentation | ||
10 | and/or other materials provided with the distribution. | ||
11 | |||
12 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
13 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
14 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
15 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | ||
16 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
17 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
18 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
19 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
20 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
21 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ | ||
22 | |||
23 | #pragma once | ||
24 | |||
25 | #include <the_Foundation/rect.h> | ||
26 | |||
27 | iDeclareType(Paint) | ||
28 | iDeclareType(Player) | ||
29 | iDeclareType(PlayerUI) | ||
30 | |||
31 | struct Impl_PlayerUI { | ||
32 | const iPlayer *player; | ||
33 | iRect bounds; | ||
34 | iRect playPauseRect; | ||
35 | iRect rewindRect; | ||
36 | iRect scrubberRect; | ||
37 | iRect volumeRect; | ||
38 | iRect volumeAdjustRect; | ||
39 | iRect volumeSlider; | ||
40 | iRect menuRect; | ||
41 | }; | ||
42 | |||
43 | void init_PlayerUI (iPlayerUI *, const iPlayer *player, iRect bounds); | ||
44 | void draw_PlayerUI (iPlayerUI *, iPaint *p); | ||