2009-02-14 02:33:31 +01:00
|
|
|
|
/*
|
|
|
|
|
* vim:ts=8:expandtab
|
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
|
*
|
|
|
|
|
* (c) 2009 Michael Stapelberg and contributors
|
|
|
|
|
*
|
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-13 19:04:45 +01:00
|
|
|
|
#ifndef _HANDLERS_H
|
|
|
|
|
#define _HANDLERS_H
|
|
|
|
|
|
2009-04-07 19:02:07 +02:00
|
|
|
|
/**
|
|
|
|
|
* Due to bindings like Mode_switch + <a>, we need to bind some keys in XCB_GRAB_MODE_SYNC.
|
|
|
|
|
* Therefore, we just replay all key presses.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-13 19:04:45 +01:00
|
|
|
|
int handle_key_release(void *ignored, xcb_connection_t *conn, xcb_key_release_event_t *event);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* There was a key press. We compare this key code with our bindings table and pass
|
|
|
|
|
* the bound action to parse_command().
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-13 19:04:45 +01:00
|
|
|
|
int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* When the user moves the mouse pointer onto a window, this callback gets called.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-13 19:04:45 +01:00
|
|
|
|
int handle_enter_notify(void *ignored, xcb_connection_t *conn, xcb_enter_notify_event_t *event);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Checks if the button press was on a stack window, handles focus setting and returns true
|
|
|
|
|
* if so, or false otherwise.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-13 19:04:45 +01:00
|
|
|
|
int handle_button_press(void *ignored, xcb_connection_t *conn, xcb_button_press_event_t *event);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A new window appeared on the screen (=was mapped), so let’s manage it.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-10 00:51:15 +01:00
|
|
|
|
int handle_map_request(void *prophs, xcb_connection_t *conn, xcb_map_request_event_t *event);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Configuration notifies are only handled because we need to set up ignore for the following
|
|
|
|
|
* enter notify events
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-28 22:11:48 +01:00
|
|
|
|
int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Configure requests are received when the application wants to resize windows on their own.
|
|
|
|
|
*
|
|
|
|
|
* We generate a synthethic configure notify event to signalize the client its "new" position.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-10 00:51:15 +01:00
|
|
|
|
int handle_configure_request(void *prophs, xcb_connection_t *conn, xcb_configure_request_event_t *event);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Our window decorations were unmapped. That means, the window will be killed now,
|
|
|
|
|
* so we better clean up before.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-10 00:51:15 +01:00
|
|
|
|
int handle_unmap_notify_event(void *data, xcb_connection_t *conn, xcb_unmap_notify_event_t *event);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Called when a window changes its title
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-13 19:04:45 +01:00
|
|
|
|
int handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
|
2009-03-11 19:39:32 +01:00
|
|
|
|
xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* We handle legacy window names (titles) which are in COMPOUND_TEXT encoding. However, we
|
|
|
|
|
* just pass them along, so when containing non-ASCII characters, those will be rendering
|
|
|
|
|
* incorrectly. In order to correctly render unicode window titles in i3, an application
|
|
|
|
|
* has to set _NET_WM_NAME, which is in UTF-8 encoding.
|
|
|
|
|
*
|
|
|
|
|
* On every update, a message is put out to the user, so he may improve the situation and
|
|
|
|
|
* update applications which display filenames in their title to correctly use
|
|
|
|
|
* _NET_WM_NAME and therefore support unicode.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-11 21:31:54 +01:00
|
|
|
|
int handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
|
|
|
|
|
xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Expose event means we should redraw our windows (= title bar)
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-13 19:04:45 +01:00
|
|
|
|
int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *event);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Handle client messages (EWMH)
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-14 08:38:07 +01:00
|
|
|
|
int handle_client_message(void *data, xcb_connection_t *conn, xcb_client_message_event_t *event);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Handles _NET_WM_WINDOW_TYPE changes
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-11 19:39:32 +01:00
|
|
|
|
int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
|
|
|
|
|
xcb_atom_t atom, xcb_get_property_reply_t *property);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Handles the size hints set by a window, but currently only the part necessary for displaying
|
|
|
|
|
* clients proportionally inside their frames (mplayer for example)
|
|
|
|
|
*
|
|
|
|
|
* See ICCCM 4.1.2.3 for more details
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-06 06:06:19 +01:00
|
|
|
|
int handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
|
|
|
|
|
xcb_atom_t name, xcb_get_property_reply_t *reply);
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
|
|
|
|
#endif
|