blob: f927c220330f8223f5faf2178c58bafb1595abda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#ifndef __XSTUFF_H__
#define __XSTUFF_H__
#include <gdk/gdk.h>
#include <gtk/gtk.h>
void xstuff_delete_property (GdkWindow *window,
const char *name);
gboolean xstuff_is_compliant_wm (void);
gboolean xstuff_net_wm_supports (const char *hint);
void xstuff_set_no_group (GdkWindow *win);
void xstuff_unsetup_desktop_area (void);
void xstuff_set_pos_size (GdkWindow *window,
int x, int y,
int w, int h);
void xstuff_set_wmspec_dock_hints (GdkWindow *window,
gboolean autohide);
void xstuff_set_wmspec_strut (GdkWindow *window,
int left,
int right,
int top,
int bottom);
void xstuff_zoom_animate (GtkWidget *widget,
GdkRectangle *opt_src_rect);
int xstuff_get_current_workspace (GdkScreen *screen);
void xstuff_grab_key_on_all_screens (int keycode,
guint modifiers,
gboolean grab);
#endif /* __XSTUFF_H__ */
|