sway/sway/handlers.c

516 lines
14 KiB
C
Raw Normal View History

2015-08-08 23:24:18 +00:00
#include <xkbcommon/xkbcommon.h>
#include <stdlib.h>
#include <stdbool.h>
2015-08-21 05:17:26 +00:00
#include <math.h>
#include <wlc/wlc.h>
2015-08-08 23:24:18 +00:00
#include <ctype.h>
#include "handlers.h"
2015-08-08 22:17:08 +00:00
#include "log.h"
#include "layout.h"
2015-08-08 23:24:18 +00:00
#include "config.h"
#include "commands.h"
#include "stringop.h"
#include "workspace.h"
2015-08-17 15:18:06 +00:00
#include "container.h"
#include "focus.h"
#include "input_state.h"
#include "resize.h"
2015-08-23 14:59:18 +00:00
// Event should be sent to client
#define EVENT_PASSTHROUGH false
// Event handled by sway and should not be sent to client
#define EVENT_HANDLED true
static bool pointer_test(swayc_t *view, void *_origin) {
const struct mouse_origin *origin = _origin;
// Determine the output that the view is under
2015-08-20 16:52:54 +00:00
swayc_t *parent = swayc_parent_by_type(view, C_OUTPUT);
if (origin->x >= view->x && origin->y >= view->y
&& origin->x < view->x + view->width && origin->y < view->y + view->height
&& view->visible && parent == root_container.focused) {
return true;
}
return false;
}
swayc_t *container_under_pointer(void) {
// root.output->workspace
2015-08-18 09:46:14 +00:00
if (!root_container.focused || !root_container.focused->focused) {
return NULL;
}
swayc_t *lookup = root_container.focused->focused;
// Case of empty workspace
if (lookup->children == 0) {
return NULL;
}
while (lookup->type != C_VIEW) {
int i;
int len;
// if tabbed/stacked go directly to focused container, otherwise search
// children
if (lookup->layout == L_TABBED || lookup->layout == L_STACKED) {
lookup = lookup->focused;
continue;
}
// if workspace, search floating
if (lookup->type == C_WORKSPACE) {
i = len = lookup->floating->length;
bool got_floating = false;
while (--i > -1) {
if (pointer_test(lookup->floating->items[i], &pointer_state.origin)) {
lookup = lookup->floating->items[i];
got_floating = true;
break;
}
}
if (got_floating) {
continue;
}
}
// search children
len = lookup->children->length;
for (i = 0; i < len; ++i) {
if (pointer_test(lookup->children->items[i], &pointer_state.origin)) {
lookup = lookup->children->items[i];
break;
}
}
// when border and titles are done, this could happen
if (i == len) {
break;
2015-08-15 22:20:07 +00:00
}
}
return lookup;
}
/* Handles */
2015-08-13 03:59:43 +00:00
static bool handle_output_created(wlc_handle output) {
swayc_t *op = new_output(output);
// Visibility mask to be able to make view invisible
wlc_output_set_mask(output, VISIBLE);
2015-08-23 17:22:45 +00:00
if (!op) {
return false;
}
2015-08-23 17:22:33 +00:00
2015-08-20 12:06:22 +00:00
// Switch to workspace if we need to
2015-08-21 17:28:37 +00:00
if (swayc_active_workspace() == NULL) {
swayc_t *ws = op->children->items[0];
workspace_switch(ws);
}
return true;
}
2015-08-13 03:59:43 +00:00
static void handle_output_destroyed(wlc_handle output) {
int i;
list_t *list = root_container.children;
for (i = 0; i < list->length; ++i) {
if (((swayc_t *)list->items[i])->handle == output) {
break;
}
}
if (i < list->length) {
destroy_output(list->items[i]);
} else {
return;
}
2015-08-21 17:28:37 +00:00
if (list->length > 0) {
2015-08-20 12:06:22 +00:00
// switch to other outputs active workspace
2015-08-18 18:22:52 +00:00
workspace_switch(((swayc_t *)root_container.children->items[0])->focused);
}
}
2015-08-13 03:59:43 +00:00
static void handle_output_resolution_change(wlc_handle output, const struct wlc_size *from, const struct wlc_size *to) {
2015-08-17 02:16:09 +00:00
sway_log(L_DEBUG, "Output %u resolution changed to %d x %d", (unsigned int)output, to->w, to->h);
swayc_t *c = swayc_by_test(test_handle, &output);
2015-08-08 22:17:08 +00:00
if (!c) return;
c->width = to->w;
c->height = to->h;
arrange_windows(&root_container, -1, -1);
}
2015-08-13 03:59:43 +00:00
static void handle_output_focused(wlc_handle output, bool focus) {
swayc_t *c = swayc_by_test(test_handle, &output);
// if for some reason this output doesnt exist, create it.
if (!c) {
handle_output_created(output);
}
2015-08-11 03:54:23 +00:00
if (focus) {
set_focused_container(c);
2015-08-11 03:54:23 +00:00
}
}
static bool handle_view_created(wlc_handle handle) {
2015-08-19 06:52:42 +00:00
// if view is child of another view, the use that as focused container
wlc_handle parent = wlc_view_get_parent(handle);
swayc_t *focused = NULL;
swayc_t *newview = NULL;
2015-08-19 06:52:42 +00:00
// Get parent container, to add view in
if (parent) {
focused = swayc_by_test(test_handle, &parent);
2015-08-19 06:52:42 +00:00
}
if (!focused || focused->type == C_OUTPUT) {
focused = get_focused_container(&root_container);
// Move focus from floating view
if (focused->is_floating) {
// To workspace if there are no children
if (focused->parent->children->length == 0) {
focused = focused->parent;
}
// TODO find a better way of doing this
// Or to focused container
else {
focused = get_focused_container(focused->parent->children->items[0]);
}
}
2015-08-19 06:52:42 +00:00
}
sway_log(L_DEBUG, "handle:%ld type:%x state:%x parent:%ld "
"mask:%d (x:%d y:%d w:%d h:%d) title:%s "
"class:%s appid:%s",
handle, wlc_view_get_type(handle), wlc_view_get_state(handle), parent,
wlc_view_get_mask(handle), wlc_view_get_geometry(handle)->origin.x,
wlc_view_get_geometry(handle)->origin.y,wlc_view_get_geometry(handle)->size.w,
wlc_view_get_geometry(handle)->size.h, wlc_view_get_title(handle),
wlc_view_get_class(handle), wlc_view_get_app_id(handle));
2015-08-19 06:52:42 +00:00
// TODO properly figure out how each window should be handled.
switch (wlc_view_get_type(handle)) {
// regular view created regularly
case 0:
newview = new_view(focused, handle);
wlc_view_set_state(handle, WLC_BIT_MAXIMIZED, true);
break;
2015-08-19 06:52:42 +00:00
// Dmenu keeps viewfocus, but others with this flag dont, for now simulate
// dmenu
case WLC_BIT_OVERRIDE_REDIRECT:
2015-08-20 12:06:22 +00:00
// locked_view_focus = true;
wlc_view_focus(handle);
wlc_view_set_state(handle, WLC_BIT_ACTIVATED, true);
wlc_view_bring_to_front(handle);
break;
2015-08-19 06:52:42 +00:00
// Firefox popups have this flag set.
case WLC_BIT_OVERRIDE_REDIRECT|WLC_BIT_UNMANAGED:
wlc_view_bring_to_front(handle);
locked_container_focus = true;
break;
2015-08-19 06:52:42 +00:00
// Modals, get focus, popups do not
case WLC_BIT_MODAL:
2015-08-19 06:52:42 +00:00
wlc_view_focus(handle);
wlc_view_bring_to_front(handle);
newview = new_floating_view(handle);
2015-08-18 08:07:12 +00:00
case WLC_BIT_POPUP:
2015-08-19 06:52:42 +00:00
wlc_view_bring_to_front(handle);
break;
}
2015-08-19 06:52:42 +00:00
if (newview) {
set_focused_container(newview);
2015-08-20 16:52:54 +00:00
swayc_t *output = swayc_parent_by_type(newview, C_OUTPUT);
2015-08-18 22:44:50 +00:00
arrange_windows(output, -1, -1);
}
return true;
}
static void handle_view_destroyed(wlc_handle handle) {
sway_log(L_DEBUG, "Destroying window %lu", handle);
swayc_t *view = swayc_by_test(test_handle, &handle);
// destroy views by type
switch (wlc_view_get_type(handle)) {
// regular view created regularly
case 0:
case WLC_BIT_MODAL:
2015-08-19 06:52:42 +00:00
case WLC_BIT_POPUP:
break;
2015-08-19 06:52:42 +00:00
// DMENU has this flag, and takes view_focus, but other things with this
// flag dont
case WLC_BIT_OVERRIDE_REDIRECT:
2015-08-20 12:06:22 +00:00
// locked_view_focus = false;
break;
case WLC_BIT_OVERRIDE_REDIRECT|WLC_BIT_UNMANAGED:
locked_container_focus = false;
break;
}
if (view) {
swayc_t *parent = destroy_view(view);
remove_view_from_scratchpad(view);
arrange_windows(parent, -1, -1);
}
set_focused_container(get_focused_view(&root_container));
}
2015-08-13 03:59:43 +00:00
static void handle_view_focus(wlc_handle view, bool focus) {
2015-08-09 16:06:46 +00:00
return;
}
2015-08-08 22:22:22 +00:00
static void handle_view_geometry_request(wlc_handle handle, const struct wlc_geometry *geometry) {
sway_log(L_DEBUG, "geometry request %d x %d : %d x %d",
2015-08-19 18:15:13 +00:00
geometry->origin.x, geometry->origin.y, geometry->size.w, geometry->size.h);
2015-08-17 15:18:06 +00:00
// If the view is floating, then apply the geometry.
// Otherwise save the desired width/height for the view.
// This will not do anything for the time being as WLC improperly sends geometry requests
swayc_t *view = swayc_by_test(test_handle, &handle);
2015-08-17 15:18:06 +00:00
if (view) {
2015-08-17 15:34:39 +00:00
view->desired_width = geometry->size.w;
view->desired_height = geometry->size.h;
2015-08-17 15:18:06 +00:00
if (view->is_floating) {
2015-08-17 15:34:39 +00:00
view->width = view->desired_width;
view->height = view->desired_height;
2015-08-17 15:18:06 +00:00
view->x = geometry->origin.x;
view->y = geometry->origin.y;
arrange_windows(view->parent, -1, -1);
}
2015-08-17 15:18:06 +00:00
}
2015-08-08 22:22:22 +00:00
}
2015-08-08 23:24:18 +00:00
2015-08-17 00:28:06 +00:00
static void handle_view_state_request(wlc_handle view, enum wlc_view_state_bit state, bool toggle) {
swayc_t *c = swayc_by_test(test_handle, &view);
2015-08-19 18:15:13 +00:00
switch (state) {
2015-08-17 00:28:06 +00:00
case WLC_BIT_FULLSCREEN:
// i3 just lets it become fullscreen
wlc_view_set_state(view, state, toggle);
if (c) {
sway_log(L_DEBUG, "setting view %ld %s, fullscreen %d", view, c->name, toggle);
arrange_windows(c->parent, -1, -1);
// Set it as focused window for that workspace if its going fullscreen
if (toggle) {
2015-08-20 16:52:54 +00:00
swayc_t *ws = swayc_parent_by_type(c, C_WORKSPACE);
// Set ws focus to c
set_focused_container_for(ws, c);
2015-08-17 00:28:06 +00:00
}
}
break;
2015-08-17 00:28:06 +00:00
case WLC_BIT_MAXIMIZED:
case WLC_BIT_RESIZING:
case WLC_BIT_MOVING:
2015-08-20 00:12:05 +00:00
break;
2015-08-17 00:28:06 +00:00
case WLC_BIT_ACTIVATED:
2015-08-20 00:12:05 +00:00
sway_log(L_DEBUG, "View %p requested to be activated", c);
2015-08-17 00:28:06 +00:00
break;
}
return;
}
2015-08-11 06:57:25 +00:00
static bool handle_key(wlc_handle view, uint32_t time, const struct wlc_modifiers *modifiers,
uint32_t key, enum wlc_key_state state) {
2015-08-18 10:48:41 +00:00
if (locked_view_focus && state == WLC_KEY_STATE_PRESSED) {
2015-08-23 14:59:18 +00:00
return EVENT_PASSTHROUGH;
}
2015-08-08 23:24:18 +00:00
// reset pointer mode on keypress
if (state == WLC_KEY_STATE_PRESSED && pointer_state.mode) {
pointer_mode_reset();
}
struct sway_mode *mode = config->current_mode;
struct wlc_modifiers no_mods = { 0, 0 };
uint32_t sym = tolower(wlc_keyboard_get_keysym_for_key(key, &no_mods));
2015-08-23 19:52:13 +00:00
2015-08-20 00:12:05 +00:00
int i;
if (state == WLC_KEY_STATE_PRESSED) {
press_key(sym, key);
} else { // WLC_KEY_STATE_RELEASED
release_key(sym, key);
2015-08-11 08:09:08 +00:00
}
2015-08-20 00:12:05 +00:00
for (i = 0; i < mode->bindings->length; ++i) {
struct sway_binding *binding = mode->bindings->items[i];
2015-08-08 23:24:18 +00:00
2015-08-23 19:52:13 +00:00
if ((modifiers->mods ^ binding->modifiers) == 0) {
bool match;
int j;
for (j = 0; j < binding->keys->length; ++j) {
xkb_keysym_t *key = binding->keys->items[j];
if ((match = check_key(*key, 0)) == false) {
break;
2015-08-08 23:24:18 +00:00
}
}
if (match) {
if (state == WLC_KEY_STATE_PRESSED) {
2015-09-07 21:29:40 +00:00
handle_command(binding->command);
2015-08-23 14:59:18 +00:00
return EVENT_HANDLED;
} else if (state == WLC_KEY_STATE_RELEASED) {
// TODO: --released
2015-08-08 23:24:18 +00:00
}
}
}
}
2015-08-23 14:59:18 +00:00
return EVENT_PASSTHROUGH;
2015-08-08 23:24:18 +00:00
}
2015-08-09 13:23:10 +00:00
static bool handle_pointer_motion(wlc_handle handle, uint32_t time, const struct wlc_origin *origin) {
// Update pointer origin
pointer_state.delta.x = origin->x - pointer_state.origin.x;
pointer_state.delta.y = origin->y - pointer_state.origin.y;
pointer_state.origin.x = origin->x;
pointer_state.origin.y = origin->y;
// Update view under pointer
swayc_t *prev_view = pointer_state.view;
pointer_state.view = container_under_pointer();
// If pointer is in a mode, update it
if (pointer_state.mode) {
pointer_mode_update();
2015-08-18 18:22:52 +00:00
}
// Otherwise change focus if config is set an
else if (prev_view != pointer_state.view && config->focus_follows_mouse) {
if (pointer_state.view && pointer_state.view->type == C_VIEW) {
set_focused_container(pointer_state.view);
}
}
2015-08-23 14:59:18 +00:00
return EVENT_PASSTHROUGH;
2015-08-09 13:23:10 +00:00
}
2015-08-19 22:44:13 +00:00
2015-08-13 03:59:43 +00:00
static bool handle_pointer_button(wlc_handle view, uint32_t time, const struct wlc_modifiers *modifiers,
2015-08-18 21:28:24 +00:00
uint32_t button, enum wlc_button_state state, const struct wlc_origin *origin) {
2015-08-23 04:03:45 +00:00
// Update view pointer is on
pointer_state.view = container_under_pointer();
// Update pointer origin
pointer_state.origin.x = origin->x;
pointer_state.origin.y = origin->y;
// Update pointer_state
switch (button) {
case M_LEFT_CLICK:
2015-08-23 04:03:45 +00:00
if (state == WLC_BUTTON_STATE_PRESSED) {
pointer_state.left.held = true;
pointer_state.left.x = origin->x;
pointer_state.left.y = origin->y;
pointer_state.left.view = pointer_state.view;
} else {
pointer_state.left.held = false;
}
break;
case M_RIGHT_CLICK:
2015-08-23 04:03:45 +00:00
if (state == WLC_BUTTON_STATE_PRESSED) {
pointer_state.right.held = true;
pointer_state.right.x = origin->x;
pointer_state.right.y = origin->y;
pointer_state.right.view = pointer_state.view;
} else {
pointer_state.right.held = false;
}
break;
case M_SCROLL_CLICK:
2015-08-23 04:03:45 +00:00
if (state == WLC_BUTTON_STATE_PRESSED) {
pointer_state.scroll.held = true;
pointer_state.scroll.x = origin->x;
pointer_state.scroll.y = origin->y;
pointer_state.scroll.view = pointer_state.view;
} else {
pointer_state.scroll.held = false;
}
break;
2015-08-23 04:03:45 +00:00
//TODO scrolling behavior
case M_SCROLL_UP:
case M_SCROLL_DOWN:
break;
}
2015-08-23 04:16:46 +00:00
// get focused window and check if to change focus on mouse click
swayc_t *focused = get_focused_container(&root_container);
// dont change focus or mode if fullscreen
if (swayc_is_fullscreen(focused)) {
2015-08-23 14:59:18 +00:00
return EVENT_PASSTHROUGH;
2015-08-23 04:16:46 +00:00
}
// set pointer mode only if floating mod has been set
2015-08-28 19:31:41 +00:00
if (config->floating_mod) {
pointer_mode_set(button, !(modifiers->mods ^ config->floating_mod));
}
// Check whether to change focus
swayc_t *pointer = pointer_state.view;
if (pointer) {
if (focused != pointer) {
set_focused_container(pointer_state.view);
}
// Send to front if floating
if (pointer->is_floating) {
int i;
for (i = 0; i < pointer->parent->floating->length; i++) {
if (pointer->parent->floating->items[i] == pointer) {
list_del(pointer->parent->floating, i);
list_add(pointer->parent->floating, pointer);
break;
}
}
wlc_view_bring_to_front(pointer->handle);
}
}
2015-08-29 06:43:52 +00:00
// Return if mode has been set
if (pointer_state.mode) {
return EVENT_HANDLED;
}
// Always send mouse release
if (state == WLC_BUTTON_STATE_RELEASED) {
return EVENT_PASSTHROUGH;
}
// Finally send click
2015-08-23 14:59:18 +00:00
return EVENT_PASSTHROUGH;
2015-08-09 13:23:10 +00:00
}
2015-08-13 03:59:43 +00:00
2015-08-13 17:32:43 +00:00
static void handle_wlc_ready(void) {
sway_log(L_DEBUG, "Compositor is ready, executing cmds in queue");
// Execute commands until there are none left
2015-09-10 18:07:40 +00:00
config->active = true;
while (config->cmd_queue->length) {
2015-09-07 21:29:40 +00:00
handle_command(config->cmd_queue->items[0]);
free(config->cmd_queue->items[0]);
list_del(config->cmd_queue, 0);
2015-08-13 17:32:43 +00:00
}
}
2015-08-13 03:59:43 +00:00
struct wlc_interface interface = {
.output = {
.created = handle_output_created,
.destroyed = handle_output_destroyed,
.resolution = handle_output_resolution_change,
.focus = handle_output_focused
},
.view = {
.created = handle_view_created,
.destroyed = handle_view_destroyed,
.focus = handle_view_focus,
.request = {
2015-08-17 00:28:06 +00:00
.geometry = handle_view_geometry_request,
.state = handle_view_state_request
2015-08-13 03:59:43 +00:00
}
},
.keyboard = {
.key = handle_key
},
.pointer = {
.motion = handle_pointer_motion,
.button = handle_pointer_button
2015-08-13 17:32:43 +00:00
},
.compositor = {
2015-08-17 00:28:06 +00:00
.ready = handle_wlc_ready
2015-08-13 03:59:43 +00:00
}
};