2 * ion/ioncore/clientwin.h
4 * Copyright (c) Tuomo Valkonen 1999-2009.
6 * See the included file LICENSE for details.
9 #ifndef ION_IONCORE_CLIENTWIN_H
10 #define ION_IONCORE_CLIENTWIN_H
12 #include <libextl/extl.h>
13 #include <libtu/ptrlist.h>
14 #include <libmainloop/hooks.h>
18 #include "rectangle.h"
22 #include "sizepolicy.h"
25 #define CLIENTWIN_P_WM_DELETE 0x00001
26 #define CLIENTWIN_P_WM_TAKE_FOCUS 0x00002
27 #define CLIENTWIN_PROP_ACROBATIC 0x00010
28 #define CLIENTWIN_PROP_TRANSPARENT 0x00020
29 #define CLIENTWIN_PROP_IGNORE_CFGRQ 0x00040
30 #define CLIENTWIN_PROP_LAZY_RESIZE 0x00080
31 #define CLIENTWIN_PROP_MINSIZE 0x00100
32 #define CLIENTWIN_PROP_MAXSIZE 0x00200
33 #define CLIENTWIN_PROP_ASPECT 0x00400
34 #define CLIENTWIN_PROP_RSZINC 0x00800
35 #define CLIENTWIN_PROP_I_MINSIZE 0x01000
36 #define CLIENTWIN_PROP_I_MAXSIZE 0x02000
37 #define CLIENTWIN_PROP_I_ASPECT 0x04000
38 #define CLIENTWIN_PROP_I_RSZINC 0x08000
39 #define CLIENTWIN_USE_NET_WM_NAME 0x10000
40 /* full screen mode has been requested by the client window itself */
41 #define CLIENTWIN_FS_RQ 0x20000
42 #define CLIENTWIN_UNMAP_RQ 0x40000
43 #define CLIENTWIN_NEED_CFGNTFY 0x80000
44 #define CLIENTWIN_PROP_O_VERT 0x100000
45 #define CLIENTWIN_PROP_O_HORIZ 0x200000
47 DECLCLASS(WClientWin
){
62 XSizeHints size_hints
;
68 extern void clientwin_get_protocols(WClientWin
*cwin
);
69 extern void clientwin_get_size_hints(WClientWin
*cwin
);
70 extern void clientwin_unmapped(WClientWin
*cwin
);
71 extern void clientwin_destroyed(WClientWin
*cwin
);
72 extern void clientwin_kill(WClientWin
*cwin
);
73 extern void clientwin_rqclose(WClientWin
*cwin
, bool relocate_ignored
);
75 extern void clientwin_tfor_changed(WClientWin
*cwin
);
77 extern void clientwin_get_set_name(WClientWin
*cwin
);
79 extern void clientwin_handle_configure_request(WClientWin
*cwin
,
80 XConfigureRequestEvent
*ev
);
82 extern void clientwin_broken_app_resize_kludge(WClientWin
*cwin
);
84 extern WRegion
*clientwin_load(WWindow
*par
, const WFitParams
*fp
,
87 /* Some standard winprops */
90 TRANSIENT_MODE_NORMAL
,
91 TRANSIENT_MODE_CURRENT
,
95 extern bool clientwin_get_switchto(const WClientWin
*cwin
);
96 extern int clientwin_get_transient_mode(const WClientWin
*cwin
);
97 extern WClientWin
*clientwin_get_transient_for(const WClientWin
*cwin
);
101 /* This hook has parameters (WClientWin*, WManageParams*). */
102 extern WHook
*clientwin_do_manage_alt
;
103 /* This hook has just WClientWin* as parameter. */
104 extern WHook
*clientwin_mapped_hook
;
105 /* This hook has an X Window id as parameter. */
106 extern WHook
*clientwin_unmapped_hook
;
107 /* This hook has (WClientWin*, const XPropertyEvent *) as parameters on
108 * C side, and (WClientWin*, int atom) on Lua side.
110 extern WHook
*clientwin_property_change_hook
;
114 extern WClientWin
*ioncore_manage_clientwin(Window win
, bool maprq
);
116 #endif /* ION_IONCORE_CLIENTWIN_H */