add menu item for toggling window size adjustment
[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     XEvent ev;
543     memset(&ev, 0, sizeof(XEvent));
544     ev.type = ClientMessage;
545     ev.xclient.window = XtWindow(win->window);
546     ev.xclient.message_type = net_wm_state;
547     ev.xclient.format = 32;
548     ev.xclient.data.l[0] = enableFullscreen ? 1 : 0;
549     ev.xclient.data.l[1] = net_wm_state_fullscreen;
550     ev.xclient.data.l[2] = 0;
551     XSendEvent(dpy, DefaultRootWindow(dpy), False, SubstructureNotifyMask | SubstructureRedirectMask, &ev);
552 }
553
554 void WindowMenubarSetVisible(MainWindow *win, bool visible) {
555     if(visible) {
556         XtManageChild(main_window->menubar);
557         XtVaSetValues(main_window->player_widget, XmNtopAttachment, XmATTACH_WIDGET, XmNtopWidget, main_window->menubar, NULL);
558     } else {
559         XtUnmanageChild(main_window->menubar);
560         XtVaSetValues(main_window->player_widget, XmNtopAttachment, XmATTACH_FORM, NULL);
561     }
562 }
563
564 static void filedialog_end(
565         Widget widget,
566         MainWindow *data,
567         XmFileSelectionBoxCallbackStruct *selection)
568 {
569     XtUnmanageChild(widget);
570     XtDestroyWidget(widget);
571 }
572
573 static void filedialog_select(
574         Widget widget,
575         MainWindow *data,
576         XmFileSelectionBoxCallbackStruct *selection)
577 {
578     char *value = NULL;
579     if(selection->value) {
580         XmStringGetLtoR(selection->value, XmSTRING_DEFAULT_CHARSET, &value);
581         if(value) {
582             PlayListAddFile(data, value);
583             PlayListPlayNext(data, true);
584             XtFree(value);
585         }
586     }
587     filedialog_end(widget, data, NULL);
588 }
589
590
591
592
593 static void FileOpenCB(Widget w, void *udata, void *cdata) {
594     MainWindow *win = main_window;
595     
596     Arg args[16];
597     int n = 0;
598     
599     XtSetArg(args[n], XnNshowViewMenu, 1); n++;
600     Widget dialog = XnCreateFileSelectionDialog(win->window, "dialog", args, n);
601     XtAddCallback(dialog, XmNokCallback, (XtCallbackProc)filedialog_select, win);
602     XtAddCallback(dialog, XmNcancelCallback, (XtCallbackProc)filedialog_end, win);
603     
604     Widget dirUp = XnFileSelectionBoxGetChild(dialog, XnFSB_DIR_UP_BUTTON);
605     XtUnmanageChild(dirUp);
606     
607     XtManageChild(dialog);
608 }
609
610 static void FileQuitCB(Widget w, void *udata, void *cdata) {
611     WindowClosePlayer(main_window);
612     ApplicationExit();
613 }
614
615 static void PlayRepeatCB(Widget w, void *udata, void *cdata) {
616     MainWindow *win = udata;
617     win->playlist.repeatTrack = XmToggleButtonGadgetGetState(w);
618     win->playlist.repeatList = 0;
619     win->playlist.autoplayFolder = 0;
620     XtVaSetValues(win->playRepeatListButton, XmNset, 0, NULL);
621     XtVaSetValues(win->playAutoPlayButton, XmNset, 0, NULL);
622 }
623
624 static void PlayRepeatListCB(Widget w, void *udata, void *cdata) {
625     MainWindow *win = udata;
626     win->playlist.repeatList = XmToggleButtonGadgetGetState(w);
627     win->playlist.repeatTrack = 0;
628     win->playlist.autoplayFolder = 0;
629     XtVaSetValues(win->playRepeatTrackButton, XmNset, 0, NULL);
630     XtVaSetValues(win->playAutoPlayButton, XmNset, 0, NULL);
631 }
632
633 static void PlayAutoPlayCB(Widget w, void *udata, void *cdata) {
634     MainWindow *win = udata;
635     win->playlist.autoplayFolder = XmToggleButtonGadgetGetState(w);
636     win->playlist.repeatTrack = 0;
637     win->playlist.repeatList = 0;
638     XtVaSetValues(win->playRepeatTrackButton, XmNset, 0, NULL);
639     XtVaSetValues(win->playRepeatListButton, XmNset, 0, NULL);
640 }
641
642 static void PlayRandomCB(Widget w, void *udata, void *cdata) {
643     MainWindow *win = udata;
644     win->playlist.random = XmToggleButtonGadgetGetState(w);
645 }
646
647 static void ViewFullscreenCB(Widget w, void *udata, void *cdata) {
648     if(main_window->fullscreen) {
649         WindowFullscreen(main_window, FALSE);
650     } else {
651         WindowFullscreen(main_window, TRUE);
652     }   
653 }
654
655 static void ViewSidebarCB(Widget w, void *udata, void *cdata) {
656     MainWindow *win = udata;
657     XmToggleButtonCallbackStruct *cb = cdata;
658     if(cb->set) {
659         WindowShowSidebar(win);
660     } else {
661         WindowHideSidebar(win);
662     }
663 }
664
665 static void ViewAdjustWindowSizeCB(Widget w, void *udata, void *cdata) {
666     MainWindow *win = udata;
667     win->adjustWindowSize = XmToggleButtonGadgetGetState(w);
668 }
669
670 void WindowAdjustAspectRatio(MainWindow *win) {
671     if(!win->player) return;
672     if(!win->player->isactive || win->player->width <= 0 || win->player->height <= 0) return;
673       
674     // we have a running player width video
675     // adjust window aspect ratio (the window aspect ratio is different from
676     // the video, because of window decoration, menubar and other extra controls)
677     
678     Dimension win_width, win_height;
679     XtVaGetValues(win->window, XmNwidth, &win_width, XmNheight, &win_height, NULL);
680     Dimension player_width, player_height;
681     XtVaGetValues(win->player_widget, XmNwidth, &player_width, XmNheight, &player_height, NULL);
682     
683     double r = (double)win->player->width / (double)win->player->height;
684     double p_width = player_width;
685     double p_height = p_width / r;
686     
687     Dimension new_width = p_width + win_width - player_width;
688     Dimension new_height = p_height + win_height - player_height;
689     
690     XSizeHints hints;
691     hints.flags = PAspect;
692     hints.min_aspect.x = new_width;
693     hints.min_aspect.y = new_height;
694     hints.max_aspect.x = new_width;
695     hints.max_aspect.y = new_height;
696     XSetWMNormalHints(XtDisplay(win->window), XtWindow(win->window), &hints);
697 }
698
699 void WindowClosePlayer(MainWindow *win) {
700     if(win->player) {
701         PlayerDestroy(win->player);
702     }
703     win->player = NULL;
704     WindowShowPlayerCursor(win);
705 }
706
707 void WindowHidePlayerCursor(MainWindow *win) {
708     if(!win->cursorhidden && win->player && win->player->window != 0) {
709         XDefineCursor(XtDisplay(win->player_widget), XtWindow(win->player_widget), blank_cursor);
710         win->cursorhidden = True;
711         XFlush(XtDisplay(win->player_widget));
712     }
713 }
714
715 void WindowShowPlayerCursor(MainWindow *win) {
716     if(win->cursorhidden && win->player && win->player->window != 0) {
717         XDefineCursor(XtDisplay(win->player_widget), XtWindow(win->player_widget), None);
718         XFlush(XtDisplay(win->player_widget));
719     }
720     win->cursorhidden = False;
721 }
722
723 void WindowHideSidebar(MainWindow *win) {
724     XtUnmanageChild(win->sidebar);
725     XtVaSetValues(win->player_widget, XmNrightAttachment, XmATTACH_FORM, NULL);
726 }
727
728 void WindowShowSidebar(MainWindow *win) {
729     XtManageChild(win->sidebar);
730     XtVaSetValues(win->player_widget, XmNrightAttachment, XmATTACH_WIDGET, XmNrightWidget, win->sidebar, NULL);
731 }
732
733 void WindowUpdate(MainWindow *win) {
734     SidebarRepaint(win->sidebar);
735 }