77939b034f54b6ac8d619d4cd3ce88c727228b73
[uwplayer.git] / application / window.h
1 /*
2  * Copyright 2022 Olaf Wintermann
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a 
5  * copy of this software and associated documentation files (the "Software"), 
6  * to deal in the Software without restriction, including without limitation 
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense, 
8  * and/or sell copies of the Software, and to permit persons to whom the 
9  * Software is furnished to do so, subject to the following conditions:
10  * 
11  * The above copyright notice and this permission notice shall be included in 
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 
17  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
19  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
20  * DEALINGS IN THE SOFTWARE.
21  */
22
23
24 #ifndef UWP_WINDOW_H
25 #define UWP_WINDOW_H
26
27 #include <Xm/XmAll.h>
28 #include <stdbool.h>
29 #include <unistd.h>
30 #include <ucx/list.h>
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35
36 typedef struct Player {
37     char *tmp;
38     pid_t process;
39     int log;
40     int ipc;
41     int status;
42     bool isactive;
43     bool isstarted;
44     Window window;
45     double playback_time;
46     int width;
47     int height;
48     int osd_height;
49 } Player;
50
51 typedef struct {
52     UcxList *tracks;
53     int current_track;
54     
55     Boolean repeatTrack;
56     Boolean repeatList;
57     Boolean autoplayFolder;
58     Boolean random;
59 } PlayList;
60
61 typedef struct MainWindow {
62     Widget window;
63     Widget menubar;
64     Widget player_widget;
65     Widget sidebar_scrolledwindow;
66     Widget sidebar;
67     char *file;
68     Player *player;
69     bool fullscreen;
70     bool mbvisible;
71     bool sidebarvisible;
72     bool cursorhidden;
73     bool buttongrab;
74     bool pwbuttonpressed;
75     
76     Widget playRepeatTrackButton;
77     Widget playRepeatListButton;
78     Widget playAutoPlayButton;
79     Widget playRandom;
80     Widget viewSidebarButton;
81     Widget viewAdjustWindowSize;
82     
83     PlayList playlist;
84     
85     bool adjustWindowSize;
86     
87     Time player_event_time;
88     Time button_press_time;
89     double motion_playback_time;
90     int mouse_x;
91     int mouse_y;
92     
93     
94 } MainWindow;
95
96 MainWindow* WindowCreate(Display *dp);
97
98 MainWindow* GetMainWindow(void);
99
100 void WindowShow(MainWindow *win);
101
102 void WindowFullscreen(MainWindow *win, bool enableFullscreen);
103
104 void WindowMenubarSetVisible(MainWindow *win, bool visible);
105
106 void WindowAdjustAspectRatio(MainWindow *win);
107
108 void WindowClosePlayer(MainWindow *win);
109
110 void WindowHidePlayerCursor(MainWindow *win);
111 void WindowShowPlayerCursor(MainWindow *win);
112
113 void WindowHandlePlayerEvent(MainWindow *win, XEvent *event);
114
115 void WindowShowSidebar(MainWindow *win, bool visible);
116
117 void WindowUpdate(MainWindow *win);
118
119
120 #ifdef __cplusplus
121 }
122 #endif
123
124 #endif /* UWP_WINDOW_H */
125