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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/**
* This file is part of devilspie2
* Copyright (C) 2001 Havoc Pennington, 2011-2019 Andreas Rönnquist
*
* devilspie2 is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* devilspie2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with devilspie2.
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __HEADER_XUTILS_
#define __HEADER_XUTILS_
#include "compat.h"
/* Special values for specifying which monitor.
* These values are relied upon; changing them will require changing the code where used.
* Scripts use these numbers plus 1.
* Where these are used, values ≥ 0 (> 0 in scripts) correspond to actual monitors.
*/
#define MONITOR_NONE INT_MIN
#define MONITOR_ALL -2 /* Monitor no. -1 (all monitors as one) */
#define MONITOR_WINDOW -1 /* Monitor no. 0 (current monitor) */
/**
*
*/
Atom my_wnck_atom_get(const char *atom_name);
void devilspie2_change_state(Screen *screen,
Window xwindow,
gboolean add,
Atom state1,
Atom state2);
Screen* devilspie2_window_get_xscreen(Window xid);
void devilspie2_error_trap_push();
int devilspie2_error_trap_pop();
gboolean decorate_window(Window xid);
gboolean undecorate_window(Window xid);
gboolean get_decorated(Window xid);
char* my_wnck_get_string_property(Window xwindow, Atom atom, gboolean *utf8) ATTR_MALLOC;
void my_wnck_set_string_property(Window xwindow, Atom atom, const gchar *const value, gboolean utf8);
void my_wnck_set_cardinal_property (Window xwindow, Atom atom, int32_t value);
void my_wnck_delete_property (Window xwindow, Atom atom);
gboolean my_wnck_get_cardinal_list(Window xwindow,
Atom atom,
gulong **cardinals,
int *len);
int devilspie2_get_viewport_start(Window xwindow, int *x, int *y);
void my_window_set_window_type(Window xid, gchar *window_type);
void my_window_set_opacity(Window xid, double value);
void adjust_for_decoration(WnckWindow *window, int *x, int *y, int *w, int *h);
void set_window_geometry(WnckWindow *window, int x, int y, int w, int h, gboolean adjust_for_decoration);
int get_monitor_count(void);
int get_monitor_index_geometry(WnckWindow *window, const GdkRectangle *window_r, /*out*/ GdkRectangle *monitor_r);
int get_monitor_geometry(int index, /*out*/ GdkRectangle *monitor_r);
int get_window_workspace_geometry(WnckWindow *window, /*out*/ GdkRectangle *monitor_r);
/*
* Wrapper for the above geometry-reading functions
* Selects according to monitor number (MONITOR_ALL, MONITOR_WINDOW or a monitor index no.)
* Returns the monitor index, MONITOR_ALL or, on error, MONITOR_NONE
*/
int get_monitor_or_workspace_geometry(int monitor_no, WnckWindow *window, /*out*/ GdkRectangle *monitor_or_workspace_r);
#endif /*__HEADER_XUTILS_*/
|