summaryrefslogtreecommitdiff
path: root/managed.h
blob: d366ac8c3b67f4fbea317e4040ff1669c9f5e8c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef MANAGED_H
#define MANAGED_H

#if USE_SHAPE
extern void match_managed_shape( struct gwm_window *window, int shaped );
#endif

extern void managed_property_change( struct gwm_window *window, int prop,
				     xcb_get_property_reply_t *p );

extern event_handler managed_handlers[];

extern void withdrawn_map_request( struct gwm_window *window,
				   xcb_map_request_event_t *ev );
extern void withdrawn_configure_request( struct gwm_window *window,
					 xcb_configure_request_event_t *ev );

#endif