FreeRDP
xf_floatbar.h
1 
18 #ifndef FREERDP_CLIENT_X11_FLOATBAR_H
19 #define FREERDP_CLIENT_X11_FLOATBAR_H
20 
21 typedef struct xf_floatbar xfFloatbar;
22 
23 #include "xfreerdp.h"
24 
25 void xf_floatbar_free(xfFloatbar* floatbar);
26 
27 WINPR_ATTR_MALLOC(xf_floatbar_free, 1)
28 xfFloatbar* xf_floatbar_new(xfContext* xfc, Window window, const char* title, DWORD flags);
29 
30 BOOL xf_floatbar_is_locked(xfFloatbar* floatbar);
31 BOOL xf_floatbar_event_process(xfFloatbar* floatbar, const XEvent* event);
32 BOOL xf_floatbar_check_event(xfFloatbar* floatbar, const XEvent* event);
33 BOOL xf_floatbar_toggle_fullscreen(xfFloatbar* floatbar, bool fullscreen);
34 BOOL xf_floatbar_hide_and_show(xfFloatbar* floatbar);
35 BOOL xf_floatbar_set_root_y(xfFloatbar* floatbar, int y);
36 
37 #endif /* FREERDP_CLIENT_X11_FLOATBAR_H */