4cdeadc18ad9fe13e85fbc1a4b22f9f6406d03c2
[uwplayer.git] / application / window.c
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 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #include "window.h"
28 #include "main.h"
29 #include "player.h"
30 #include "playlist.h"
31 #include "xdnd.h"
32
33 #include "Fsb.h"
34 #include "Sidebar.h"
35
36 static MainWindow *main_window;
37
38 static void WindowCreateMenu(MainWindow *win, Widget parent, Arg *args, int nargs);
39
40 static void FileOpenCB(Widget w, void *udata, void *cdata);
41 static void FileQuitCB(Widget w, void *udata, void *cdata);
42 static void PlayRepeatCB(Widget w, void *udata, void *cdata);
43 static void PlayRepeatListCB(Widget w, void *udata, void *cdata);
44 static void PlayAutoPlayCB(Widget w, void *udata, void *cdata);
45 static void PlayRandomCB(Widget w, void *udata, void *cdata);
46 static void ViewFullscreenCB(Widget w, void *udata, void *cdata);
47 static void ViewSidebarCB(Widget w, void *udata, void *cdata);
48 static void ViewAdjustWindowSizeCB(Widget w, void *udata, void *cdata);
49
50 static void WindowRealized(MainWindow *win);
51
52 static int blank_cursor_init = 0;
53 static Pixmap blank_cursor_pixmap;
54 static Cursor blank_cursor;
55
56 static void init_blank_cursor(Widget w) {
57     char data = 0;
58     
59     XColor c;
60     
61     blank_cursor_pixmap = XCreateBitmapFromData(XtDisplay(w), XtWindow(w), &data, 1, 1);
62     if(!blank_cursor_pixmap) return;
63     
64     blank_cursor = XCreatePixmapCursor(XtDisplay(w), blank_cursor_pixmap, blank_cursor_pixmap, &c, &c, 0, 0);
65     
66     XFreePixmap(XtDisplay(w), blank_cursor_pixmap);
67     blank_cursor_init = 1;
68 }
69
70 static void window_close_handler(Widget window, void *udata, void *cdata) {
71     FileQuitCB(window, NULL, NULL);
72 }
73
74 static unsigned int keycodeF;
75
76 static void windowKeyEH(Widget widget, XtPointer data, XEvent *event, Boolean *dispatch) {
77     MainWindow *win = data;
78     if(win->fullscreen && event->xkey.keycode == keycodeF) {
79         WindowFullscreen(main_window, FALSE);
80         *dispatch = FALSE;
81     }
82 }
83
84 static int main_window_is_realized = 0;
85
86 static void resizeEH(Widget widget, XtPointer data, XEvent *event, Boolean *dispatch) {  
87     if(!main_window_is_realized) {
88         if(XtIsRealized(widget)) {
89             main_window_is_realized = 1;
90             WindowRealized(data);
91         }
92     }
93     WindowAdjustAspectRatio(data);
94 }
95
96 static void WindowRealized(MainWindow *win) {
97     char *open_file = GetOpenFileArg();
98     if(open_file) {
99         PlayListAddFile(win, open_file);
100         PlayListPlayNext(win, true);
101         CleanOpenFileArg();
102     }
103     
104     if(!blank_cursor_init) {
105         init_blank_cursor(win->player_widget);
106     }
107     
108     XdndEnable(win->window);
109 }
110
111 static void playerWidgetInputCB(Widget widget, XtPointer u, XtPointer c) {
112     MainWindow *win = u;
113     XmDrawingAreaCallbackStruct *cb = c;
114     
115     if(win->player && win->player->isactive) {
116         PlayerHandleInput(win, win->player, cb);
117     }
118 }
119
120 static void windowGrabButton(MainWindow *win) {
121     //printf("grab\n");
122     XtGrabButton(
123                 win->player_widget,
124                 AnyButton,
125                 AnyModifier,
126                 True,
127                 ButtonPressMask | ButtonReleaseMask | PointerMotionMask | FocusChangeMask | EnterWindowMask | LeaveWindowMask,
128                 GrabModeAsync,
129                 GrabModeAsync,
130                 None,
131                 None);
132     win->buttongrab = True;
133 }
134
135 static void playerEH(Widget widget, XtPointer data, XEvent *event, Boolean *dispatch) {
136     MainWindow *win = data;
137     int etype = event->type;
138     
139     ///*
140     if(etype == EnterNotify) {
141         //printf("enter\n");
142         windowGrabButton(win);
143         return;
144     }
145     if(etype == LeaveNotify) {
146         //printf("leave\n");
147         //XtUngrabButton(win->player_widget, AnyButton, AnyModifier); 
148         //win->buttongrab = False;
149         return;
150     }
151     
152     int pass = 0;
153     if(etype == ButtonPress || etype == ButtonRelease || etype == KeyPress || etype == KeyRelease) {
154         //printf("button press\n");
155         pass = 1;
156     }
157     
158     if(!win->player || win->player->window == 0) return;
159     
160     WindowHandlePlayerEvent(win, event);
161     
162     if(pass) {
163         // redirect key events to the player window
164         //printf("redirect\n");
165         event->xkey.window = win->player->window;
166         XSendEvent(
167                 XtDisplay(win->player_widget),
168                 win->player->window,
169                 True,
170                 0,
171                 event);
172     }
173 }
174
175 #define IGNORE_MOTION_THRESHOLD_MS 1000
176 #define MOTION_POS_THRESHOLD_PIX   5
177 #define OSD_BOTTOM_THRESHOLD       0.09
178
179 #define DOUBLE_CLICK_TIME_MS       500
180
181 void WindowHandlePlayerEvent(MainWindow *win, XEvent *event) {
182     // event handler for intercepted player mouse events
183     // win->player is not NULL
184     
185     int etype = event->type;
186     
187     if(etype == MotionNotify) {
188         Time cur_motion_time = event->xmotion.time;
189         if(win->player) {
190             win->motion_playback_time = win->player->playback_time;
191         }
192         
193         int x = event->xmotion.x_root;
194         int y = event->xmotion.y_root;
195         if(win->cursorhidden && cur_motion_time - win->player_event_time < IGNORE_MOTION_THRESHOLD_MS) {
196             int diff_x = abs(x - win->mouse_x);
197             int diff_y = abs(y - win->mouse_y);
198             if(diff_x > MOTION_POS_THRESHOLD_PIX || diff_y > MOTION_POS_THRESHOLD_PIX) {
199                 WindowShowPlayerCursor(win);
200             }
201         } else {
202             win->mouse_x = x;
203             win->mouse_y = y;
204         }
205         win->player_event_time = cur_motion_time;
206         win->motion_playback_time = win->player->playback_time;
207         
208         
209         
210         if(win->pwbuttonpressed) {
211             Display *dp = XtDisplay(win->window);
212                 
213             XtUngrabPointer(win->player_widget, CurrentTime);
214
215             XEvent xev;
216             memset(&xev, 0, sizeof(xev));
217             xev.type = ClientMessage;
218             xev.xclient.message_type = XInternAtom(dp, "_NET_WM_MOVERESIZE", False);
219             xev.xclient.window = XtWindow(win->window);
220             xev.xclient.format = 32;
221             xev.xclient.data.l[0] = x;
222             xev.xclient.data.l[1] = y;
223             xev.xclient.data.l[2] = 8; // _NET_WM_MOVERESIZE_MOVE
224             xev.xclient.data.l[3] = 1; // button1
225             xev.xclient.data.l[4] = 1; // source indication
226
227             XSendEvent(dp, DefaultRootWindow(dp), False, SubstructureRedirectMask | SubstructureNotifyMask, &xev);
228
229             win->pwbuttonpressed = FALSE;  
230         }
231     } else if(etype == ButtonPress) {
232         Time t = event->xbutton.time;
233         
234         int yi = win->player_widget->core.height - event->xbutton.y;
235         if((float)yi/(float)win->player_widget->core.height < OSD_BOTTOM_THRESHOLD) {
236             win->button_press_time = 0;
237         } else {
238             if(t - win->button_press_time < DOUBLE_CLICK_TIME_MS) {
239                 // double click
240                 WindowFullscreen(main_window, !win->fullscreen);
241                 win->button_press_time = 0;
242             } else {
243                 win->button_press_time = t;
244             }
245             win->pwbuttonpressed = 1;
246         }
247     } else if(etype == ButtonRelease) {
248         win->player_event_time = event->xbutton.time;
249         win->pwbuttonpressed = FALSE;
250     }
251 }
252
253
254
255 MainWindow* WindowCreate(Display *display) {
256     Arg args[32];
257     int n;
258      
259     MainWindow *window = malloc(sizeof(MainWindow));
260     memset(window, 0, sizeof(MainWindow));
261     main_window = window;
262       
263     // toplevel window
264     n = 0;
265     XtSetArg(args[n], XmNtitle, APP_NAME); n++;
266     window->window = XtAppCreateShell(
267             APP_NAME,
268             APP_CLASS,
269             applicationShellWidgetClass,
270             //vendorShellWidgetClass,
271             display,
272             args,
273             n);
274     
275     // close handler
276     Atom wm_delete_window;
277     wm_delete_window = XmInternAtom(
278             display,
279             "WM_DELETE_WINDOW",
280             0);
281     XmAddWMProtocolCallback(
282             window->window,
283             wm_delete_window,
284             window_close_handler,
285             window);
286     
287     // resize handler
288     XtAddEventHandler(window->window, StructureNotifyMask, False, resizeEH, window);
289     
290     n = 0;
291     XtSetArg(args[n], XmNwidth, 360); n++;
292     XtSetArg(args[n], XmNheight, 220); n++;
293     XtSetArg(args[n], XmNshadowThickness, 0); n++;
294     Widget container = XmCreateForm(window->window, "form", args, n);
295     XtManageChild(container);
296     XtAddEventHandler(container, KeyPressMask, FALSE, windowKeyEH, window);
297     
298     n = 0;
299     XtSetArg(args[n], XmNleftAttachment, XmATTACH_FORM); n++;
300     XtSetArg(args[n], XmNrightAttachment, XmATTACH_FORM); n++;
301     XtSetArg(args[n], XmNtopAttachment, XmATTACH_FORM); n++;
302     WindowCreateMenu(window, container, args, n);
303     
304     n = 0;
305     XtSetArg(args[n], XmNrightAttachment, XmATTACH_FORM); n++;
306     XtSetArg(args[n], XmNbottomAttachment, XmATTACH_FORM); n++;
307     XtSetArg(args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
308     XtSetArg(args[n], XmNtopWidget, window->menubar); n++;
309     XtSetArg(args[n], XmNwidth, 300); n++;
310     window->sidebar = CreateSidebar(container, "sidebar", args, n);
311     SidebarSetWindow(window->sidebar, window);
312     //XtManageChild(window->sidebar);
313        
314     n = 0;
315     XtSetArg(args[n], XmNleftAttachment, XmATTACH_FORM); n++;
316     XtSetArg(args[n], XmNrightAttachment, XmATTACH_FORM); n++;
317     XtSetArg(args[n], XmNrightWidget, window->sidebar); n++;
318     XtSetArg(args[n], XmNbottomAttachment, XmATTACH_FORM); n++;
319     XtSetArg(args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
320     XtSetArg(args[n], XmNtopWidget, window->menubar); n++;
321     XtSetArg(args[n], XmNbackground, BlackPixelOfScreen(XtScreen(window->window))); n++;
322     window->player_widget = XmCreateDrawingArea(container, "player", args, n);
323     XtManageChild(window->player_widget);
324     XtAddCallback(window->player_widget, XmNinputCallback, playerWidgetInputCB, window);
325     XmProcessTraversal(window->player_widget, XmTRAVERSE_CURRENT);
326     XtAddEventHandler(window->player_widget, PointerMotionMask | ButtonPressMask | ButtonReleaseMask | FocusChangeMask |
327                  EnterWindowMask | KeyPressMask | KeyReleaseMask |
328                   LeaveWindowMask, FALSE, playerEH, window);
329     
330      
331     // get F keycode
332     keycodeF = XKeysymToKeycode(XtDisplay(window->window), XStringToKeysym("F"));
333     
334     
335     PlayListInit(window);
336     
337     window->adjustWindowSize = true; // auto adjust window size by default
338     
339     return window;
340 }
341
342 MainWindow* GetMainWindow(void) {
343     return main_window;
344 }
345
346 void WindowShow(MainWindow *win) {
347     XtRealizeWidget(win->window);
348 }
349
350 /*
351  * Creates a XmPushButton menu item
352  */
353 static Widget createMenuItem(
354         Widget menu,
355         char *name,
356         char *label,
357         char mnemonic,
358         const char *accelerator,
359         char *accelerator_text,
360         XtCallbackProc callback,
361         void *cbData)
362 {
363     Arg args[16];
364     int n = 0;
365     
366     XmString s1 = XmStringCreateSimple(label);
367     XtSetArg(args[n], XmNlabelString, s1); n++;
368     XtSetArg(args[n], XmNmnemonic, mnemonic); n++;
369     XmString at = NULL;
370     if(accelerator && accelerator_text) {
371         at = XmStringCreateSimple(accelerator_text);
372         XtSetArg(args[n], XmNaccelerator, accelerator); n++;
373         XtSetArg(args[n], XmNacceleratorText, at); n++;
374     }
375     
376     Widget menuItem = XmCreatePushButtonGadget(menu, name, args, n);
377     XtManageChild(menuItem);
378     XmStringFree(s1);
379     if(at) XmStringFree(at);
380     
381     if(callback) {
382         XtAddCallback(menuItem, XmNactivateCallback, (XtCallbackProc)callback, cbData);
383     }
384     
385     return menuItem;
386 }
387
388 /*
389  * Creates a XmToggleButton menu item
390  */
391 static Widget createToggleMenuItem(
392         Widget menu,
393         char *name,
394         char *label,
395         char mnemonic,
396         Boolean defaultValue,
397         const char *accelerator,
398         char *accelerator_text,
399         XtCallbackProc callback,
400         void *cbData)
401 {
402     Arg args[16];
403     int n = 0;
404     
405     XmString s1 = XmStringCreateSimple(label);
406     XtSetArg(args[n], XmNlabelString, s1); n++;
407     XtSetArg(args[n], XmNmnemonic, mnemonic); n++;
408     XtSetArg(args[n], XmNset, defaultValue); n++;
409     XmString at = NULL;
410     if(accelerator && accelerator_text) {
411         at = XmStringCreateSimple(accelerator_text);
412         XtSetArg(args[n], XmNaccelerator, accelerator); n++;
413         XtSetArg(args[n], XmNacceleratorText, at); n++;
414     }
415     
416     Widget menuItem = XmCreateToggleButtonGadget(menu, name, args, n);
417     XtManageChild(menuItem);
418     XmStringFree(s1);
419     if(at) XmStringFree(at);
420     
421     if(callback) {
422         XtAddCallback(menuItem, XmNvalueChangedCallback, (XtCallbackProc)callback, cbData);
423     }
424     
425     return menuItem;
426 }
427
428 /*
429  * Creates a menu separator
430  */
431 static Widget createMenuSeparator(Widget menu) {
432     Widget w = XmCreateSeparator(menu, "separator", NULL, 0);
433     XtManageChild(w);
434     return w;
435 }
436
437 static void WindowCreateMenu(MainWindow *win, Widget parent, Arg *mbargs, int nmbargs) {
438     Widget menubar = XmCreateMenuBar(parent, "menubar", mbargs, nmbargs);
439     XtManageChild(menubar);
440     win->menubar = menubar;
441     
442     Arg args[16];
443     int n;
444     
445     // menus
446     XmString s = XmStringCreateSimple("File");
447     XtVaCreateManagedWidget(
448             "menuitem",
449             xmCascadeButtonWidgetClass,
450             menubar,
451             XmNlabelString, s,
452             NULL);
453     XmStringFree(s);
454     Widget fileMenu = XmVaCreateSimplePulldownMenu(menubar, "menu", 0, NULL, NULL);
455     
456     s = XmStringCreateSimple("Playback");
457     XtVaCreateManagedWidget(
458             "menuitem",
459             xmCascadeButtonWidgetClass,
460             menubar,
461             XmNlabelString, s,
462             NULL);
463     XmStringFree(s);
464     Widget playMenu = XmVaCreateSimplePulldownMenu(menubar, "menu", 1, NULL, NULL);
465     
466     s = XmStringCreateSimple("View");
467     Widget viewMenuItem = XtVaCreateManagedWidget(
468             "menuitem",
469             xmCascadeButtonWidgetClass,
470             menubar,
471             XmNlabelString, s,
472             NULL);
473     XmStringFree(s);
474     Widget viewMenu = XmVaCreateSimplePulldownMenu(menubar, "menu", 2, NULL, NULL);
475     
476     // file menu
477     createMenuItem(fileMenu, "fileOpen", "Open...", 'O', "Ctrl<Key>O", "Ctrl+O", FileOpenCB, NULL);
478     createMenuItem(fileMenu, "fileQuit", "Exit", 'E', "Ctrl<Key>Q", "Ctrl+Q", FileQuitCB, NULL);
479     
480     // play menu
481     win->playRepeatTrackButton = createToggleMenuItem(playMenu, "playRepeatTrack", "Repeat", 'R', False, NULL, NULL, PlayRepeatCB, win);
482     win->playRepeatListButton = createToggleMenuItem(playMenu, "playRepeatList", "Repeat List", 'L', False, NULL, NULL, PlayRepeatListCB, win);
483     win->playAutoPlayButton = createToggleMenuItem(playMenu, "playAutoNext", "Autoplay Folder", 'A', False, NULL, NULL, PlayAutoPlayCB, win);
484     XtVaSetValues(win->playRepeatTrackButton, XmNindicatorType, XmONE_OF_MANY, NULL);
485     XtVaSetValues(win->playRepeatListButton, XmNindicatorType, XmONE_OF_MANY, NULL);
486     XtVaSetValues(win->playAutoPlayButton, XmNindicatorType, XmONE_OF_MANY, NULL);
487     
488     createMenuSeparator(playMenu);
489     
490     win->playRandom = createToggleMenuItem(playMenu, "playRandom", "Random Playback", 'P', False, NULL, NULL, PlayRandomCB, win);
491     
492     
493     // view menu
494     createMenuItem(viewMenu, "viewFullscreen", "Fullscreen", 'F', "<Key>F", "F", ViewFullscreenCB, NULL);
495     win->viewSidebarButton = createToggleMenuItem(viewMenu, "viewSidebar", "View Sidebar", 'S', False, NULL, NULL, ViewSidebarCB, win);
496     
497     createMenuSeparator(viewMenu);
498     
499     win->viewAdjustWindowSize = createToggleMenuItem(viewMenu, "viewAdjustWindowSize", "Adjust Window Size", 'W', TRUE, NULL, NULL, ViewAdjustWindowSizeCB, win);
500 }
501
502 void go_fullscreen(Display *dsp, Window win)
503 {
504   XEvent xev;
505   Atom wm_state = XInternAtom(dsp, "_NET_WM_STATE", False);
506   Atom fullscreen = XInternAtom(dsp, "_NET_WM_STATE_FULLSCREEN", False);
507   memset(&xev, 0, sizeof(xev));
508   xev.type = ClientMessage;
509   xev.xclient.window = win;
510   xev.xclient.message_type = wm_state;
511   xev.xclient.format = 32;
512   xev.xclient.data.l[0] = 1; // _NET_WM_STATE_ADD
513   xev.xclient.data.l[1] = fullscreen;
514   xev.xclient.data.l[2] = 0;
515   XSendEvent(dsp, DefaultRootWindow(dsp), False,
516     SubstructureNotifyMask, &xev);
517 }
518
519 static Atom net_wm_state;
520 static Atom net_wm_state_fullscreen;
521 static int net_wm_atoms_initialized = 0;
522
523 void WindowFullscreen(MainWindow *win, bool enableFullscreen) {
524     Display *dpy = XtDisplay(win->window);
525     
526     // init net_wm_state atoms
527     if(!net_wm_atoms_initialized) {
528         net_wm_state = XInternAtom(dpy, "_NET_WM_STATE", False);
529         net_wm_state_fullscreen = XInternAtom(dpy, "_NET_WM_STATE_FULLSCREEN", False);
530         net_wm_atoms_initialized = 1;
531     }
532     
533     WindowMenubarSetVisible(win, !enableFullscreen);
534     if(enableFullscreen && !win->fullscreen) {
535         XtUnmanageChild(main_window->menubar);
536         main_window->fullscreen = TRUE;
537     } else if(!enableFullscreen && win->fullscreen) {
538         XtManageChild(main_window->menubar);
539         main_window->fullscreen = FALSE;
540     }
541     
542     WindowShowSidebar(win, enableFullscreen ? false : win->sidebarvisible);
543     
544     XEvent ev;
545     memset(&ev, 0, sizeof(XEvent));
546     ev.type = ClientMessage;
547     ev.xclient.window = XtWindow(win->window);
548     ev.xclient.message_type = net_wm_state;
549     ev.xclient.format = 32;
550     ev.xclient.data.l[0] = enableFullscreen ? 1 : 0;
551     ev.xclient.data.l[1] = net_wm_state_fullscreen;
552     ev.xclient.data.l[2] = 0;
553     XSendEvent(dpy, DefaultRootWindow(dpy), False, SubstructureNotifyMask | SubstructureRedirectMask, &ev);
554 }
555
556 void WindowMenubarSetVisible(MainWindow *win, bool visible) {
557     if(visible) {
558         XtManageChild(main_window->menubar);
559         XtVaSetValues(main_window->player_widget, XmNtopAttachment, XmATTACH_WIDGET, XmNtopWidget, main_window->menubar, NULL);
560     } else {
561         XtUnmanageChild(main_window->menubar);
562         XtVaSetValues(main_window->player_widget, XmNtopAttachment, XmATTACH_FORM, NULL);
563     }
564 }
565
566 static void filedialog_end(
567         Widget widget,
568         MainWindow *data,
569         XmFileSelectionBoxCallbackStruct *selection)
570 {
571     XtUnmanageChild(widget);
572     XtDestroyWidget(widget);
573 }
574
575 static void filedialog_select(
576         Widget widget,
577         MainWindow *data,
578         XmFileSelectionBoxCallbackStruct *selection)
579 {
580     char *value = NULL;
581     if(selection->value) {
582         XmStringGetLtoR(selection->value, XmSTRING_DEFAULT_CHARSET, &value);
583         if(value) {
584             PlayListAddFile(data, value);
585             PlayListPlayNext(data, true);
586             XtFree(value);
587         }
588     }
589     filedialog_end(widget, data, NULL);
590 }
591
592
593
594
595 static void FileOpenCB(Widget w, void *udata, void *cdata) {
596     MainWindow *win = main_window;
597     
598     Arg args[16];
599     int n = 0;
600     
601     XtSetArg(args[n], XnNshowViewMenu, 1); n++;
602     Widget dialog = XnCreateFileSelectionDialog(win->window, "dialog", args, n);
603     XtAddCallback(dialog, XmNokCallback, (XtCallbackProc)filedialog_select, win);
604     XtAddCallback(dialog, XmNcancelCallback, (XtCallbackProc)filedialog_end, win);
605     
606     Widget dirUp = XnFileSelectionBoxGetChild(dialog, XnFSB_DIR_UP_BUTTON);
607     XtUnmanageChild(dirUp);
608     
609     XtManageChild(dialog);
610 }
611
612 static void FileQuitCB(Widget w, void *udata, void *cdata) {
613     WindowClosePlayer(main_window);
614     ApplicationExit();
615 }
616
617 static void PlayRepeatCB(Widget w, void *udata, void *cdata) {
618     MainWindow *win = udata;
619     win->playlist.repeatTrack = XmToggleButtonGadgetGetState(w);
620     win->playlist.repeatList = 0;
621     win->playlist.autoplayFolder = 0;
622     XtVaSetValues(win->playRepeatListButton, XmNset, 0, NULL);
623     XtVaSetValues(win->playAutoPlayButton, XmNset, 0, NULL);
624 }
625
626 static void PlayRepeatListCB(Widget w, void *udata, void *cdata) {
627     MainWindow *win = udata;
628     win->playlist.repeatList = XmToggleButtonGadgetGetState(w);
629     win->playlist.repeatTrack = 0;
630     win->playlist.autoplayFolder = 0;
631     XtVaSetValues(win->playRepeatTrackButton, XmNset, 0, NULL);
632     XtVaSetValues(win->playAutoPlayButton, XmNset, 0, NULL);
633 }
634
635 static void PlayAutoPlayCB(Widget w, void *udata, void *cdata) {
636     MainWindow *win = udata;
637     win->playlist.autoplayFolder = XmToggleButtonGadgetGetState(w);
638     win->playlist.repeatTrack = 0;
639     win->playlist.repeatList = 0;
640     XtVaSetValues(win->playRepeatTrackButton, XmNset, 0, NULL);
641     XtVaSetValues(win->playRepeatListButton, XmNset, 0, NULL);
642 }
643
644 static void PlayRandomCB(Widget w, void *udata, void *cdata) {
645     MainWindow *win = udata;
646     win->playlist.random = XmToggleButtonGadgetGetState(w);
647 }
648
649 static void ViewFullscreenCB(Widget w, void *udata, void *cdata) {
650     if(main_window->fullscreen) {
651         WindowFullscreen(main_window, FALSE);
652     } else {
653         WindowFullscreen(main_window, TRUE);
654     }   
655 }
656
657 static void ViewSidebarCB(Widget w, void *udata, void *cdata) {
658     MainWindow *win = udata;
659     XmToggleButtonCallbackStruct *cb = cdata;
660     win->sidebarvisible = cb->set;
661     WindowShowSidebar(win, cb->set);
662 }
663
664 static void ViewAdjustWindowSizeCB(Widget w, void *udata, void *cdata) {
665     MainWindow *win = udata;
666     win->adjustWindowSize = XmToggleButtonGadgetGetState(w);
667 }
668
669 void WindowAdjustAspectRatio(MainWindow *win) {
670     if(!win->player) return;
671     if(!win->player->isactive || win->player->width <= 0 || win->player->height <= 0) return;
672       
673     // we have a running player width video
674     // adjust window aspect ratio (the window aspect ratio is different from
675     // the video, because of window decoration, menubar and other extra controls)
676     
677     Dimension win_width, win_height;
678     XtVaGetValues(win->window, XmNwidth, &win_width, XmNheight, &win_height, NULL);
679     Dimension player_width, player_height;
680     XtVaGetValues(win->player_widget, XmNwidth, &player_width, XmNheight, &player_height, NULL);
681     
682     double r = (double)win->player->width / (double)win->player->height;
683     double p_width = player_width;
684     double p_height = p_width / r;
685     
686     Dimension new_width = p_width + win_width - player_width;
687     Dimension new_height = p_height + win_height - player_height;
688     
689     XSizeHints hints;
690     hints.flags = PAspect;
691     hints.min_aspect.x = new_width;
692     hints.min_aspect.y = new_height;
693     hints.max_aspect.x = new_width;
694     hints.max_aspect.y = new_height;
695     XSetWMNormalHints(XtDisplay(win->window), XtWindow(win->window), &hints);
696 }
697
698 void WindowClosePlayer(MainWindow *win) {
699     if(win->player) {
700         PlayerDestroy(win->player);
701     }
702     win->player = NULL;
703     WindowShowPlayerCursor(win);
704 }
705
706 void WindowHidePlayerCursor(MainWindow *win) {
707     if(!win->cursorhidden && win->player && win->player->window != 0) {
708         XDefineCursor(XtDisplay(win->player_widget), XtWindow(win->player_widget), blank_cursor);
709         win->cursorhidden = True;
710         XFlush(XtDisplay(win->player_widget));
711     }
712 }
713
714 void WindowShowPlayerCursor(MainWindow *win) {
715     if(win->cursorhidden && win->player && win->player->window != 0) {
716         XDefineCursor(XtDisplay(win->player_widget), XtWindow(win->player_widget), None);
717         XFlush(XtDisplay(win->player_widget));
718     }
719     win->cursorhidden = False;
720 }
721
722 void WindowShowSidebar(MainWindow *win, bool visible) {
723     if(visible) {
724         XtManageChild(win->sidebar);
725         XtVaSetValues(win->player_widget, XmNrightAttachment, XmATTACH_WIDGET, XmNrightWidget, win->sidebar, NULL);
726     } else {
727         XtUnmanageChild(win->sidebar);
728         XtVaSetValues(win->player_widget, XmNrightAttachment, XmATTACH_FORM, NULL);
729     }
730 }
731
732 void WindowUpdate(MainWindow *win) {
733     SidebarRepaint(win->sidebar);
734 }