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