X-Git-Url: https://git.sur5r.net/?p=i3%2Fi3;a=blobdiff_plain;f=src%2Fhandlers.c;h=b96779178c35151fbefa2e6ac159d18f704ab27c;hp=d2232965c0b5c5670fb83e8bff42722d3ecee5a5;hb=HEAD;hpb=7c21b5995d1fa3d378d3143557376c1e586d3a86 diff --git a/src/handlers.c b/src/handlers.c index d2232965..b9677917 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -806,6 +806,18 @@ static void handle_client_message(xcb_client_message_event_t *event) { XCB_ATOM_CARDINAL, 32, 4, &r); xcb_flush(conn); + } else if (event->type == A_WM_CHANGE_STATE) { + /* http://tronche.com/gui/x/icccm/sec-4.html#s-4.1.4 */ + if (event->data.data32[0] == XCB_ICCCM_WM_STATE_ICONIC) { + /* For compatiblity reasons, Wine will request iconic state and cannot ensure that the WM has agreed on it; + * immediately revert to normal to avoid being stuck in a paused state. */ + DLOG("Client has requested iconic state, rejecting. (window = %d)\n", event->window); + long data[] = {XCB_ICCCM_WM_STATE_NORMAL, XCB_NONE}; + xcb_change_property(conn, XCB_PROP_MODE_REPLACE, event->window, + A_WM_STATE, A_WM_STATE, 32, 2, data); + } else { + DLOG("Not handling WM_CHANGE_STATE request. (window = %d, state = %d)\n", event->window, event->data.data32[0]); + } } else if (event->type == A__NET_CURRENT_DESKTOP) { /* This request is used by pagers and bars to change the current * desktop likely as a result of some user action. We interpret this as @@ -896,7 +908,7 @@ static void handle_client_message(xcb_client_message_event_t *event) { case _NET_WM_MOVERESIZE_MOVE: floating_drag_window(con->parent, &fake); break; - case _NET_WM_MOVERESIZE_SIZE_TOPLEFT... _NET_WM_MOVERESIZE_SIZE_LEFT: + case _NET_WM_MOVERESIZE_SIZE_TOPLEFT ... _NET_WM_MOVERESIZE_SIZE_LEFT: floating_resize_window(con->parent, false, &fake); break; default: @@ -937,8 +949,8 @@ static void handle_client_message(xcb_client_message_event_t *event) { } } -bool 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 *reply) { +static bool 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 *reply) { Con *con; if ((con = con_by_window_id(window)) == NULL || con->window == NULL) return false; @@ -1060,7 +1072,7 @@ static bool handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t stat /* Convert numerator/denominator to a double */ double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den; - double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den; + double max_aspect = (double)size_hints.max_aspect_num / size_hints.max_aspect_den; DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect); DLOG("width = %f, height = %f\n", width, height);