2015-08-09 01:24:18 +02:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2015-08-06 14:24:14 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdbool.h>
|
2015-08-21 07:17:26 +02:00
|
|
|
#include <math.h>
|
2015-08-06 14:24:14 +02:00
|
|
|
#include <wlc/wlc.h>
|
2015-11-19 04:14:57 +01:00
|
|
|
#include <wlc/wlc-wayland.h>
|
2015-08-09 01:24:18 +02:00
|
|
|
#include <ctype.h>
|
2015-08-18 09:28:44 +02:00
|
|
|
|
|
|
|
#include "handlers.h"
|
2015-08-09 00:17:08 +02:00
|
|
|
#include "log.h"
|
2015-08-18 09:28:44 +02:00
|
|
|
#include "layout.h"
|
2015-08-09 01:24:18 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "commands.h"
|
2015-08-13 21:41:29 +02:00
|
|
|
#include "stringop.h"
|
2015-08-14 21:42:19 +02:00
|
|
|
#include "workspace.h"
|
2015-08-17 17:18:06 +02:00
|
|
|
#include "container.h"
|
2015-10-25 01:20:00 +02:00
|
|
|
#include "output.h"
|
2015-08-18 09:28:44 +02:00
|
|
|
#include "focus.h"
|
2015-08-20 05:22:15 +02:00
|
|
|
#include "input_state.h"
|
2015-08-22 05:26:11 +02:00
|
|
|
#include "resize.h"
|
2015-11-19 04:14:57 +01:00
|
|
|
#include "extensions.h"
|
2015-11-17 19:27:01 +01:00
|
|
|
#include "criteria.h"
|
2015-08-19 18:09:35 +02:00
|
|
|
|
2015-08-23 16:59:18 +02: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
|
|
|
|
|
2015-08-19 19:45:40 +02:00
|
|
|
/* Handles */
|
|
|
|
|
2015-08-13 05:59:43 +02:00
|
|
|
static bool handle_output_created(wlc_handle output) {
|
2015-08-14 21:42:19 +02:00
|
|
|
swayc_t *op = new_output(output);
|
|
|
|
|
2015-08-25 20:13:35 +02:00
|
|
|
// Visibility mask to be able to make view invisible
|
2015-08-25 18:24:15 +02:00
|
|
|
wlc_output_set_mask(output, VISIBLE);
|
|
|
|
|
2015-08-23 19:22:45 +02:00
|
|
|
if (!op) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-08-23 19:22:33 +02:00
|
|
|
|
2015-08-20 14:06:22 +02:00
|
|
|
// Switch to workspace if we need to
|
2015-08-21 19:28:37 +02:00
|
|
|
if (swayc_active_workspace() == NULL) {
|
2015-08-14 21:42:19 +02:00
|
|
|
swayc_t *ws = op->children->items[0];
|
|
|
|
workspace_switch(ws);
|
|
|
|
}
|
2015-11-20 00:55:17 +01:00
|
|
|
|
|
|
|
// Fixes issues with backgrounds and wlc
|
|
|
|
wlc_handle prev = wlc_get_focused_output();
|
|
|
|
wlc_output_focus(output);
|
|
|
|
wlc_output_focus(prev);
|
2015-08-06 14:24:14 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-08-13 05:59:43 +02:00
|
|
|
static void handle_output_destroyed(wlc_handle output) {
|
2015-08-14 21:42:19 +02:00
|
|
|
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]);
|
2015-08-23 20:18:07 +02:00
|
|
|
} else {
|
|
|
|
return;
|
2015-08-14 21:42:19 +02:00
|
|
|
}
|
2015-08-21 19:28:37 +02:00
|
|
|
if (list->length > 0) {
|
2015-08-20 14:06:22 +02:00
|
|
|
// switch to other outputs active workspace
|
2015-08-18 20:22:52 +02:00
|
|
|
workspace_switch(((swayc_t *)root_container.children->items[0])->focused);
|
|
|
|
}
|
2015-08-06 14:24:14 +02:00
|
|
|
}
|
|
|
|
|
2015-11-19 04:14:57 +01:00
|
|
|
static void handle_output_pre_render(wlc_handle output) {
|
2015-11-29 18:03:13 +01:00
|
|
|
struct wlc_size resolution = *wlc_output_get_resolution(output);
|
|
|
|
|
2015-11-19 04:14:57 +01:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < desktop_shell.backgrounds->length; ++i) {
|
|
|
|
struct background_config *config = desktop_shell.backgrounds->items[i];
|
|
|
|
if (config->output == output) {
|
2015-11-29 18:03:13 +01:00
|
|
|
wlc_surface_render(config->surface, &(struct wlc_geometry){ wlc_origin_zero, resolution });
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < desktop_shell.panels->length; ++i) {
|
|
|
|
struct panel_config *config = desktop_shell.panels->items[i];
|
|
|
|
if (config->output == output) {
|
|
|
|
struct wlc_size size = *wlc_surface_get_size(config->surface);
|
|
|
|
struct wlc_geometry geo = {
|
|
|
|
.size = size
|
|
|
|
};
|
|
|
|
switch (desktop_shell.panel_position) {
|
|
|
|
case DESKTOP_SHELL_PANEL_POSITION_TOP:
|
|
|
|
geo.origin = (struct wlc_origin){ 0, 0 };
|
|
|
|
break;
|
|
|
|
case DESKTOP_SHELL_PANEL_POSITION_BOTTOM:
|
|
|
|
geo.origin = (struct wlc_origin){ 0, resolution.h - size.h };
|
|
|
|
break;
|
|
|
|
case DESKTOP_SHELL_PANEL_POSITION_LEFT:
|
|
|
|
geo.origin = (struct wlc_origin){ 0, 0 };
|
|
|
|
break;
|
|
|
|
case DESKTOP_SHELL_PANEL_POSITION_RIGHT:
|
|
|
|
geo.origin = (struct wlc_origin){ resolution.w - size.w, 0 };
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
wlc_surface_render(config->surface, &geo);
|
|
|
|
if (size.w != desktop_shell.panel_size.w || size.h != desktop_shell.panel_size.h) {
|
|
|
|
desktop_shell.panel_size = size;
|
|
|
|
arrange_windows(&root_container, -1, -1);
|
|
|
|
}
|
2015-11-19 04:14:57 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-13 05:59:43 +02:00
|
|
|
static void handle_output_resolution_change(wlc_handle output, const struct wlc_size *from, const struct wlc_size *to) {
|
2015-08-17 04:16:09 +02:00
|
|
|
sway_log(L_DEBUG, "Output %u resolution changed to %d x %d", (unsigned int)output, to->w, to->h);
|
2015-09-14 01:46:16 +02:00
|
|
|
swayc_t *c = swayc_by_handle(output);
|
2015-08-09 00:17:08 +02:00
|
|
|
if (!c) return;
|
|
|
|
c->width = to->w;
|
|
|
|
c->height = to->h;
|
|
|
|
arrange_windows(&root_container, -1, -1);
|
2015-08-06 14:24:14 +02:00
|
|
|
}
|
|
|
|
|
2015-08-13 05:59:43 +02:00
|
|
|
static void handle_output_focused(wlc_handle output, bool focus) {
|
2015-09-14 01:46:16 +02:00
|
|
|
swayc_t *c = swayc_by_handle(output);
|
2015-08-18 13:19:20 +02:00
|
|
|
// if for some reason this output doesnt exist, create it.
|
2015-08-18 09:28:44 +02:00
|
|
|
if (!c) {
|
|
|
|
handle_output_created(output);
|
|
|
|
}
|
2015-08-11 05:54:23 +02:00
|
|
|
if (focus) {
|
2015-08-18 09:28:44 +02:00
|
|
|
set_focused_container(c);
|
2015-08-11 05:54:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-14 21:42:19 +02:00
|
|
|
static bool handle_view_created(wlc_handle handle) {
|
2015-08-19 08:52:42 +02: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;
|
2015-08-18 09:28:44 +02:00
|
|
|
swayc_t *newview = NULL;
|
2015-08-19 08:52:42 +02:00
|
|
|
|
|
|
|
// Get parent container, to add view in
|
|
|
|
if (parent) {
|
2015-09-14 01:46:16 +02:00
|
|
|
focused = swayc_by_handle(parent);
|
2015-08-19 08:52:42 +02:00
|
|
|
}
|
|
|
|
if (!focused || focused->type == C_OUTPUT) {
|
|
|
|
focused = get_focused_container(&root_container);
|
2015-08-29 07:51:36 +02:00
|
|
|
// 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 08:52:42 +02:00
|
|
|
}
|
2015-08-20 00:22:55 +02: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 08:52:42 +02:00
|
|
|
|
|
|
|
// TODO properly figure out how each window should be handled.
|
2015-08-18 09:28:44 +02:00
|
|
|
switch (wlc_view_get_type(handle)) {
|
2015-08-18 13:19:20 +02:00
|
|
|
// regular view created regularly
|
2015-08-18 09:28:44 +02:00
|
|
|
case 0:
|
|
|
|
newview = new_view(focused, handle);
|
2015-08-16 06:21:20 +02:00
|
|
|
wlc_view_set_state(handle, WLC_BIT_MAXIMIZED, true);
|
2015-08-18 09:28:44 +02:00
|
|
|
break;
|
2015-08-19 08:52:42 +02:00
|
|
|
|
|
|
|
// Dmenu keeps viewfocus, but others with this flag dont, for now simulate
|
|
|
|
// dmenu
|
2015-08-18 09:28:44 +02:00
|
|
|
case WLC_BIT_OVERRIDE_REDIRECT:
|
2015-08-20 14:06:22 +02:00
|
|
|
// locked_view_focus = true;
|
2015-08-18 09:28:44 +02:00
|
|
|
wlc_view_focus(handle);
|
|
|
|
wlc_view_set_state(handle, WLC_BIT_ACTIVATED, true);
|
|
|
|
wlc_view_bring_to_front(handle);
|
|
|
|
break;
|
2015-08-19 08:52:42 +02:00
|
|
|
|
|
|
|
// Firefox popups have this flag set.
|
2015-08-18 09:28:44 +02:00
|
|
|
case WLC_BIT_OVERRIDE_REDIRECT|WLC_BIT_UNMANAGED:
|
|
|
|
wlc_view_bring_to_front(handle);
|
|
|
|
locked_container_focus = true;
|
|
|
|
break;
|
2015-08-19 08:52:42 +02:00
|
|
|
|
|
|
|
// Modals, get focus, popups do not
|
2015-08-18 09:28:44 +02:00
|
|
|
case WLC_BIT_MODAL:
|
2015-08-19 08:52:42 +02:00
|
|
|
wlc_view_focus(handle);
|
2015-08-18 09:28:44 +02:00
|
|
|
wlc_view_bring_to_front(handle);
|
|
|
|
newview = new_floating_view(handle);
|
2015-08-18 10:07:12 +02:00
|
|
|
case WLC_BIT_POPUP:
|
2015-08-19 08:52:42 +02:00
|
|
|
wlc_view_bring_to_front(handle);
|
2015-08-18 09:28:44 +02:00
|
|
|
break;
|
2015-08-14 21:42:19 +02:00
|
|
|
}
|
2015-08-19 08:52:42 +02:00
|
|
|
|
2015-08-18 09:28:44 +02:00
|
|
|
if (newview) {
|
|
|
|
set_focused_container(newview);
|
2015-08-20 18:52:54 +02:00
|
|
|
swayc_t *output = swayc_parent_by_type(newview, C_OUTPUT);
|
2015-08-19 00:44:50 +02:00
|
|
|
arrange_windows(output, -1, -1);
|
2015-11-17 19:27:01 +01:00
|
|
|
// check if it matches for_window in config and execute if so
|
|
|
|
list_t *criteria = criteria_for(newview);
|
|
|
|
for (int i = 0; i < criteria->length; i++) {
|
|
|
|
struct criteria *crit = criteria->items[i];
|
|
|
|
sway_log(L_DEBUG, "for_window '%s' matches new view %p, cmd: '%s'",
|
|
|
|
crit->crit_raw, newview, crit->cmdlist);
|
|
|
|
struct cmd_results *res = handle_command(crit->cmdlist);
|
|
|
|
if (res->status != CMD_SUCCESS) {
|
|
|
|
sway_log(L_ERROR, "Command '%s' failed: %s", res->input, res->error);
|
|
|
|
}
|
|
|
|
free_cmd_results(res);
|
|
|
|
// view must be focused for commands to affect it, so always
|
|
|
|
// refocus in-between command lists
|
|
|
|
set_focused_container(newview);
|
|
|
|
}
|
2015-08-16 14:10:56 +02:00
|
|
|
}
|
2015-08-06 14:24:14 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-08-14 21:42:19 +02:00
|
|
|
static void handle_view_destroyed(wlc_handle handle) {
|
2015-08-18 09:28:44 +02:00
|
|
|
sway_log(L_DEBUG, "Destroying window %lu", handle);
|
2015-09-14 01:46:16 +02:00
|
|
|
swayc_t *view = swayc_by_handle(handle);
|
2015-08-14 21:42:19 +02:00
|
|
|
|
2015-08-31 01:28:21 +02:00
|
|
|
// destroy views by type
|
2015-08-18 09:28:44 +02:00
|
|
|
switch (wlc_view_get_type(handle)) {
|
2015-08-18 13:19:20 +02:00
|
|
|
// regular view created regularly
|
2015-08-18 09:28:44 +02:00
|
|
|
case 0:
|
|
|
|
case WLC_BIT_MODAL:
|
2015-08-19 08:52:42 +02:00
|
|
|
case WLC_BIT_POPUP:
|
2015-08-18 09:28:44 +02:00
|
|
|
break;
|
2015-08-19 08:52:42 +02:00
|
|
|
// DMENU has this flag, and takes view_focus, but other things with this
|
|
|
|
// flag dont
|
2015-08-18 09:28:44 +02:00
|
|
|
case WLC_BIT_OVERRIDE_REDIRECT:
|
2015-08-20 14:06:22 +02:00
|
|
|
// locked_view_focus = false;
|
2015-08-18 09:28:44 +02:00
|
|
|
break;
|
|
|
|
case WLC_BIT_OVERRIDE_REDIRECT|WLC_BIT_UNMANAGED:
|
|
|
|
locked_container_focus = false;
|
|
|
|
break;
|
2015-08-14 21:42:19 +02:00
|
|
|
}
|
2015-08-25 20:15:23 +02:00
|
|
|
|
2015-08-31 01:28:21 +02:00
|
|
|
if (view) {
|
|
|
|
swayc_t *parent = destroy_view(view);
|
|
|
|
remove_view_from_scratchpad(view);
|
|
|
|
arrange_windows(parent, -1, -1);
|
|
|
|
}
|
2015-08-25 22:29:33 +02:00
|
|
|
set_focused_container(get_focused_view(&root_container));
|
2015-08-06 14:24:14 +02:00
|
|
|
}
|
|
|
|
|
2015-08-13 05:59:43 +02:00
|
|
|
static void handle_view_focus(wlc_handle view, bool focus) {
|
2015-08-09 18:06:46 +02:00
|
|
|
return;
|
2015-08-06 14:24:14 +02:00
|
|
|
}
|
2015-08-09 00:22:22 +02:00
|
|
|
|
2015-08-18 13:19:20 +02:00
|
|
|
static void handle_view_geometry_request(wlc_handle handle, const struct wlc_geometry *geometry) {
|
2015-09-22 18:41:01 +02:00
|
|
|
sway_log(L_DEBUG, "geometry request for %ld %dx%d : %dx%d",
|
|
|
|
handle, geometry->origin.x, geometry->origin.y, geometry->size.w, geometry->size.h);
|
2015-08-17 17:18:06 +02: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
|
2015-09-14 01:46:16 +02:00
|
|
|
swayc_t *view = swayc_by_handle(handle);
|
2015-08-17 17:18:06 +02:00
|
|
|
if (view) {
|
2015-08-17 17:34:39 +02:00
|
|
|
view->desired_width = geometry->size.w;
|
|
|
|
view->desired_height = geometry->size.h;
|
|
|
|
|
2015-08-17 17:18:06 +02:00
|
|
|
if (view->is_floating) {
|
2015-08-17 17:34:39 +02:00
|
|
|
view->width = view->desired_width;
|
|
|
|
view->height = view->desired_height;
|
2015-08-17 17:18:06 +02:00
|
|
|
view->x = geometry->origin.x;
|
|
|
|
view->y = geometry->origin.y;
|
|
|
|
arrange_windows(view->parent, -1, -1);
|
2015-08-18 09:28:44 +02:00
|
|
|
}
|
2015-08-17 17:18:06 +02:00
|
|
|
}
|
2015-08-09 00:22:22 +02:00
|
|
|
}
|
2015-08-09 01:24:18 +02:00
|
|
|
|
2015-08-17 02:28:06 +02:00
|
|
|
static void handle_view_state_request(wlc_handle view, enum wlc_view_state_bit state, bool toggle) {
|
2015-09-14 01:46:16 +02:00
|
|
|
swayc_t *c = swayc_by_handle(view);
|
2015-08-19 20:15:13 +02:00
|
|
|
switch (state) {
|
2015-08-17 02:28:06 +02:00
|
|
|
case WLC_BIT_FULLSCREEN:
|
2015-08-18 13:19:20 +02:00
|
|
|
// i3 just lets it become fullscreen
|
2015-08-18 09:28:44 +02:00
|
|
|
wlc_view_set_state(view, state, toggle);
|
|
|
|
if (c) {
|
2015-08-20 02:10:45 +02:00
|
|
|
sway_log(L_DEBUG, "setting view %ld %s, fullscreen %d", view, c->name, toggle);
|
2015-08-18 09:28:44 +02:00
|
|
|
arrange_windows(c->parent, -1, -1);
|
2015-08-18 13:19:20 +02:00
|
|
|
// Set it as focused window for that workspace if its going fullscreen
|
2015-08-18 09:28:44 +02:00
|
|
|
if (toggle) {
|
2015-08-20 18:52:54 +02:00
|
|
|
swayc_t *ws = swayc_parent_by_type(c, C_WORKSPACE);
|
2015-08-18 13:19:20 +02:00
|
|
|
// Set ws focus to c
|
2015-08-18 09:28:44 +02:00
|
|
|
set_focused_container_for(ws, c);
|
2015-08-17 02:28:06 +02:00
|
|
|
}
|
|
|
|
}
|
2015-08-18 09:28:44 +02:00
|
|
|
break;
|
2015-08-17 02:28:06 +02:00
|
|
|
case WLC_BIT_MAXIMIZED:
|
|
|
|
case WLC_BIT_RESIZING:
|
|
|
|
case WLC_BIT_MOVING:
|
2015-08-20 02:12:05 +02:00
|
|
|
break;
|
2015-08-17 02:28:06 +02:00
|
|
|
case WLC_BIT_ACTIVATED:
|
2015-08-20 02:12:05 +02:00
|
|
|
sway_log(L_DEBUG, "View %p requested to be activated", c);
|
2015-08-17 02:28:06 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-08-11 08:57:25 +02:00
|
|
|
|
2015-08-18 13:19:20 +02:00
|
|
|
static bool handle_key(wlc_handle view, uint32_t time, const struct wlc_modifiers *modifiers,
|
2015-08-25 22:38:16 +02:00
|
|
|
uint32_t key, enum wlc_key_state state) {
|
2015-08-20 02:52:52 +02:00
|
|
|
|
2015-08-18 12:48:41 +02:00
|
|
|
if (locked_view_focus && state == WLC_KEY_STATE_PRESSED) {
|
2015-08-23 16:59:18 +02:00
|
|
|
return EVENT_PASSTHROUGH;
|
2015-08-17 20:24:45 +02:00
|
|
|
}
|
2015-08-09 01:24:18 +02:00
|
|
|
|
2015-08-23 03:01:38 +02:00
|
|
|
// reset pointer mode on keypress
|
|
|
|
if (state == WLC_KEY_STATE_PRESSED && pointer_state.mode) {
|
|
|
|
pointer_mode_reset();
|
2015-08-19 19:45:40 +02:00
|
|
|
}
|
|
|
|
|
2015-08-11 08:37:25 +02:00
|
|
|
struct sway_mode *mode = config->current_mode;
|
2015-08-20 02:52:52 +02:00
|
|
|
|
2015-08-26 14:24:23 +02:00
|
|
|
struct wlc_modifiers no_mods = { 0, 0 };
|
|
|
|
uint32_t sym = tolower(wlc_keyboard_get_keysym_for_key(key, &no_mods));
|
2015-08-23 21:52:13 +02:00
|
|
|
|
2015-08-20 02:12:05 +02:00
|
|
|
int i;
|
2015-08-20 02:52:52 +02:00
|
|
|
|
2015-08-20 03:59:27 +02:00
|
|
|
if (state == WLC_KEY_STATE_PRESSED) {
|
2015-08-23 21:28:49 +02:00
|
|
|
press_key(sym, key);
|
2015-08-20 03:59:27 +02:00
|
|
|
} else { // WLC_KEY_STATE_RELEASED
|
2015-08-23 21:28:49 +02:00
|
|
|
release_key(sym, key);
|
2015-08-11 10:09:08 +02:00
|
|
|
}
|
2015-08-20 02:12:05 +02:00
|
|
|
|
2015-08-11 05:47:14 +02:00
|
|
|
for (i = 0; i < mode->bindings->length; ++i) {
|
|
|
|
struct sway_binding *binding = mode->bindings->items[i];
|
2015-08-09 01:24:18 +02:00
|
|
|
|
2015-08-23 21:52:13 +02:00
|
|
|
if ((modifiers->mods ^ binding->modifiers) == 0) {
|
2015-09-18 15:52:04 +02:00
|
|
|
bool match = false;
|
2015-08-11 05:47:14 +02:00
|
|
|
int j;
|
|
|
|
for (j = 0; j < binding->keys->length; ++j) {
|
2015-08-11 08:37:25 +02:00
|
|
|
xkb_keysym_t *key = binding->keys->items[j];
|
2015-08-23 21:28:49 +02:00
|
|
|
if ((match = check_key(*key, 0)) == false) {
|
2015-08-11 05:47:14 +02:00
|
|
|
break;
|
2015-08-09 01:24:18 +02:00
|
|
|
}
|
2015-08-11 05:47:14 +02:00
|
|
|
}
|
|
|
|
if (match) {
|
|
|
|
if (state == WLC_KEY_STATE_PRESSED) {
|
2015-10-22 14:14:13 +02:00
|
|
|
struct cmd_results *res = handle_command(binding->command);
|
|
|
|
if (res->status != CMD_SUCCESS) {
|
|
|
|
sway_log(L_ERROR, "Command '%s' failed: %s", res->input, res->error);
|
|
|
|
}
|
|
|
|
free_cmd_results(res);
|
2015-08-23 16:59:18 +02:00
|
|
|
return EVENT_HANDLED;
|
2015-08-11 08:37:25 +02:00
|
|
|
} else if (state == WLC_KEY_STATE_RELEASED) {
|
|
|
|
// TODO: --released
|
2015-08-09 01:24:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-08-23 16:59:18 +02:00
|
|
|
return EVENT_PASSTHROUGH;
|
2015-08-09 01:24:18 +02:00
|
|
|
}
|
2015-08-09 15:23:10 +02:00
|
|
|
|
2015-11-14 23:14:23 +01:00
|
|
|
static bool handle_pointer_motion(wlc_handle handle, uint32_t time, const struct wlc_point *origin) {
|
|
|
|
struct wlc_point new_origin = *origin;
|
2015-10-22 01:15:25 +02:00
|
|
|
// Switch to adjacent output if touching output edge.
|
|
|
|
//
|
|
|
|
// Since this doesn't currently support moving windows between outputs we
|
|
|
|
// don't do the switch if the pointer is in a mode.
|
2015-10-23 14:12:53 +02:00
|
|
|
if (config->seamless_mouse && !pointer_state.mode &&
|
|
|
|
!pointer_state.left.held && !pointer_state.right.held && !pointer_state.scroll.held) {
|
2015-10-22 01:15:25 +02:00
|
|
|
|
2015-10-25 01:20:00 +02:00
|
|
|
swayc_t *output = swayc_active_output(), *adjacent = NULL;
|
2015-11-16 00:35:25 +01:00
|
|
|
struct wlc_point abs_pos = *origin;
|
|
|
|
abs_pos.x += output->x;
|
|
|
|
abs_pos.y += output->y;
|
2015-10-22 01:15:25 +02:00
|
|
|
if (origin->x == 0) { // Left edge
|
2015-11-16 00:35:25 +01:00
|
|
|
if ((adjacent = swayc_adjacent_output(output, MOVE_LEFT, &abs_pos, false))) {
|
2015-10-27 23:19:55 +01:00
|
|
|
if (workspace_switch(swayc_active_workspace_for(adjacent))) {
|
2015-10-25 01:20:00 +02:00
|
|
|
new_origin.x = adjacent->width;
|
2015-11-16 00:35:25 +01:00
|
|
|
// adjust for differently aligned outputs (well, this is
|
|
|
|
// only correct when the two outputs have the same
|
|
|
|
// resolution or the same dpi I guess, it should take
|
|
|
|
// physical attributes into account)
|
|
|
|
new_origin.y += (output->y - adjacent->y);
|
2015-10-22 01:15:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if ((double)origin->x == output->width) { // Right edge
|
2015-11-16 00:35:25 +01:00
|
|
|
if ((adjacent = swayc_adjacent_output(output, MOVE_RIGHT, &abs_pos, false))) {
|
2015-10-27 23:19:55 +01:00
|
|
|
if (workspace_switch(swayc_active_workspace_for(adjacent))) {
|
2015-10-25 01:20:00 +02:00
|
|
|
new_origin.x = 0;
|
2015-11-16 00:35:25 +01:00
|
|
|
new_origin.y += (output->y - adjacent->y);
|
2015-10-22 01:15:25 +02:00
|
|
|
}
|
|
|
|
}
|
2015-10-25 01:20:00 +02:00
|
|
|
} else if (origin->y == 0) { // Top edge
|
2015-11-16 00:35:25 +01:00
|
|
|
if ((adjacent = swayc_adjacent_output(output, MOVE_UP, &abs_pos, false))) {
|
2015-10-27 23:19:55 +01:00
|
|
|
if (workspace_switch(swayc_active_workspace_for(adjacent))) {
|
2015-10-25 01:20:00 +02:00
|
|
|
new_origin.y = adjacent->height;
|
2015-11-16 00:35:25 +01:00
|
|
|
new_origin.x += (output->x - adjacent->x);
|
2015-10-22 01:15:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if ((double)origin->y == output->height) { // Bottom edge
|
2015-11-16 00:35:25 +01:00
|
|
|
if ((adjacent = swayc_adjacent_output(output, MOVE_DOWN, &abs_pos, false))) {
|
2015-10-27 23:19:55 +01:00
|
|
|
if (workspace_switch(swayc_active_workspace_for(adjacent))) {
|
2015-10-25 01:20:00 +02:00
|
|
|
new_origin.y = 0;
|
2015-11-16 00:35:25 +01:00
|
|
|
new_origin.x += (output->x - adjacent->x);
|
2015-10-22 01:15:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-28 00:41:28 +01:00
|
|
|
pointer_position_set(&new_origin, false);
|
2015-08-23 16:59:18 +02:00
|
|
|
return EVENT_PASSTHROUGH;
|
2015-08-09 15:23:10 +02:00
|
|
|
}
|
|
|
|
|
2015-08-20 00:44:13 +02:00
|
|
|
|
2015-08-13 05:59:43 +02:00
|
|
|
static bool handle_pointer_button(wlc_handle view, uint32_t time, const struct wlc_modifiers *modifiers,
|
2015-11-14 23:14:23 +01:00
|
|
|
uint32_t button, enum wlc_button_state state, const struct wlc_point *origin) {
|
2015-08-23 03:01:38 +02:00
|
|
|
|
2015-08-23 06:03:45 +02:00
|
|
|
// Update view pointer is on
|
|
|
|
pointer_state.view = container_under_pointer();
|
|
|
|
|
2015-08-23 03:01:38 +02:00
|
|
|
// Update pointer_state
|
|
|
|
switch (button) {
|
|
|
|
case M_LEFT_CLICK:
|
2015-08-23 06:03:45 +02: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;
|
|
|
|
}
|
2015-08-23 03:01:38 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case M_RIGHT_CLICK:
|
2015-08-23 06:03:45 +02: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;
|
|
|
|
}
|
2015-08-23 03:01:38 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case M_SCROLL_CLICK:
|
2015-08-23 06:03:45 +02: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;
|
|
|
|
}
|
2015-08-23 03:01:38 +02:00
|
|
|
break;
|
|
|
|
|
2015-08-23 06:03:45 +02:00
|
|
|
//TODO scrolling behavior
|
2015-08-23 03:01:38 +02:00
|
|
|
case M_SCROLL_UP:
|
|
|
|
case M_SCROLL_DOWN:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-08-23 06:16:46 +02: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 16:59:18 +02:00
|
|
|
return EVENT_PASSTHROUGH;
|
2015-08-23 06:16:46 +02:00
|
|
|
}
|
|
|
|
|
2015-08-28 21:30:59 +02:00
|
|
|
// set pointer mode only if floating mod has been set
|
2015-08-28 21:31:41 +02:00
|
|
|
if (config->floating_mod) {
|
2015-08-28 21:30:59 +02:00
|
|
|
pointer_mode_set(button, !(modifiers->mods ^ config->floating_mod));
|
|
|
|
}
|
2015-08-23 03:01:38 +02:00
|
|
|
|
|
|
|
// Check whether to change focus
|
|
|
|
swayc_t *pointer = pointer_state.view;
|
2015-08-29 08:01:48 +02:00
|
|
|
if (pointer) {
|
|
|
|
if (focused != pointer) {
|
|
|
|
set_focused_container(pointer_state.view);
|
|
|
|
}
|
2015-08-23 03:01:38 +02:00
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
}
|
2015-08-29 08:01:48 +02:00
|
|
|
wlc_view_bring_to_front(pointer->handle);
|
2015-08-23 03:01:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-29 08:43:52 +02: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;
|
|
|
|
}
|
|
|
|
|
2015-08-23 03:01:38 +02:00
|
|
|
// Finally send click
|
2015-08-23 16:59:18 +02:00
|
|
|
return EVENT_PASSTHROUGH;
|
2015-08-09 15:23:10 +02:00
|
|
|
}
|
2015-08-13 05:59:43 +02:00
|
|
|
|
2015-08-13 19:32:43 +02:00
|
|
|
static void handle_wlc_ready(void) {
|
|
|
|
sway_log(L_DEBUG, "Compositor is ready, executing cmds in queue");
|
2015-09-02 17:51:26 +02:00
|
|
|
// Execute commands until there are none left
|
2015-09-10 20:07:40 +02:00
|
|
|
config->active = true;
|
2015-09-02 17:51:26 +02:00
|
|
|
while (config->cmd_queue->length) {
|
2015-10-22 14:14:13 +02:00
|
|
|
char *line = config->cmd_queue->items[0];
|
|
|
|
struct cmd_results *res = handle_command(line);
|
|
|
|
if (res->status != CMD_SUCCESS) {
|
|
|
|
sway_log(L_ERROR, "Error on line '%s': %s", line, res->error);
|
|
|
|
}
|
|
|
|
free_cmd_results(res);
|
|
|
|
free(line);
|
2015-09-02 17:51:26 +02:00
|
|
|
list_del(config->cmd_queue, 0);
|
2015-08-13 19:32:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-13 05:59:43 +02:00
|
|
|
struct wlc_interface interface = {
|
|
|
|
.output = {
|
|
|
|
.created = handle_output_created,
|
|
|
|
.destroyed = handle_output_destroyed,
|
|
|
|
.resolution = handle_output_resolution_change,
|
2015-11-19 04:14:57 +01:00
|
|
|
.focus = handle_output_focused,
|
|
|
|
.render = {
|
|
|
|
.pre = handle_output_pre_render
|
|
|
|
}
|
2015-08-13 05:59:43 +02:00
|
|
|
},
|
|
|
|
.view = {
|
|
|
|
.created = handle_view_created,
|
|
|
|
.destroyed = handle_view_destroyed,
|
|
|
|
.focus = handle_view_focus,
|
|
|
|
.request = {
|
2015-08-17 02:28:06 +02:00
|
|
|
.geometry = handle_view_geometry_request,
|
|
|
|
.state = handle_view_state_request
|
2015-08-13 05:59:43 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
.keyboard = {
|
|
|
|
.key = handle_key
|
|
|
|
},
|
|
|
|
.pointer = {
|
|
|
|
.motion = handle_pointer_motion,
|
|
|
|
.button = handle_pointer_button
|
2015-08-13 19:32:43 +02:00
|
|
|
},
|
|
|
|
.compositor = {
|
2015-08-17 02:28:06 +02:00
|
|
|
.ready = handle_wlc_ready
|
2015-08-13 05:59:43 +02:00
|
|
|
}
|
|
|
|
};
|