2020-04-11 22:27:19 +00:00
|
|
|
/*
|
|
|
|
* See LICENSE file for copyright and license details.
|
|
|
|
*/
|
|
|
|
#define _POSIX_C_SOURCE 200112L
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
2020-04-12 03:44:34 +00:00
|
|
|
#include <sys/signal.h>
|
|
|
|
#include <sys/wait.h>
|
2020-04-12 02:29:27 +00:00
|
|
|
#include <linux/input-event-codes.h>
|
2020-04-11 22:27:19 +00:00
|
|
|
#include <wayland-server-core.h>
|
|
|
|
#include <wlr/backend.h>
|
|
|
|
#include <wlr/render/wlr_renderer.h>
|
|
|
|
#include <wlr/types/wlr_cursor.h>
|
|
|
|
#include <wlr/types/wlr_compositor.h>
|
|
|
|
#include <wlr/types/wlr_data_device.h>
|
|
|
|
#include <wlr/types/wlr_input_device.h>
|
|
|
|
#include <wlr/types/wlr_keyboard.h>
|
|
|
|
#include <wlr/types/wlr_matrix.h>
|
|
|
|
#include <wlr/types/wlr_output.h>
|
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
|
|
|
#include <wlr/types/wlr_pointer.h>
|
|
|
|
#include <wlr/types/wlr_seat.h>
|
|
|
|
#include <wlr/types/wlr_xcursor_manager.h>
|
|
|
|
#include <wlr/types/wlr_xdg_shell.h>
|
|
|
|
#include <wlr/util/log.h>
|
|
|
|
#include <xkbcommon/xkbcommon.h>
|
|
|
|
|
2020-04-12 00:46:51 +00:00
|
|
|
#define CLEANMASK(mask) (mask & ~WLR_MODIFIER_CAPS)
|
2020-04-12 00:41:32 +00:00
|
|
|
#define LENGTH(X) (sizeof X / sizeof X[0])
|
|
|
|
|
2020-04-21 19:00:18 +00:00
|
|
|
/* enums */
|
|
|
|
enum { CurNormal, CurMove, CurResize }; /* cursor */
|
2020-04-11 22:27:19 +00:00
|
|
|
|
2020-04-21 19:47:59 +00:00
|
|
|
typedef union {
|
|
|
|
int i;
|
|
|
|
unsigned int ui;
|
|
|
|
float f;
|
|
|
|
const void *v;
|
|
|
|
} Arg;
|
2020-04-11 22:27:19 +00:00
|
|
|
|
2020-04-21 19:47:59 +00:00
|
|
|
typedef struct {
|
|
|
|
unsigned int mod;
|
|
|
|
unsigned int button;
|
|
|
|
void (*func)(const Arg *);
|
|
|
|
const Arg arg;
|
|
|
|
} Button;
|
|
|
|
|
|
|
|
typedef struct {
|
2020-04-11 22:27:19 +00:00
|
|
|
struct wl_list link;
|
|
|
|
struct wlr_xdg_surface *xdg_surface;
|
|
|
|
struct wl_listener map;
|
|
|
|
struct wl_listener unmap;
|
|
|
|
struct wl_listener destroy;
|
|
|
|
struct wl_listener request_move;
|
|
|
|
struct wl_listener request_resize;
|
|
|
|
int x, y;
|
2020-04-21 19:47:59 +00:00
|
|
|
} Client;
|
2020-04-12 00:05:27 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint32_t mod;
|
|
|
|
xkb_keysym_t keysym;
|
2020-04-21 19:08:33 +00:00
|
|
|
void (*func)(const Arg *);
|
2020-04-12 00:05:27 +00:00
|
|
|
const Arg arg;
|
|
|
|
} Key;
|
|
|
|
|
2020-04-12 02:29:27 +00:00
|
|
|
typedef struct {
|
2020-04-21 19:47:59 +00:00
|
|
|
struct wl_list link;
|
|
|
|
struct wlr_input_device *device;
|
|
|
|
|
|
|
|
struct wl_listener modifiers;
|
|
|
|
struct wl_listener key;
|
|
|
|
} Keyboard;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
struct wl_list link;
|
|
|
|
struct wlr_output *wlr_output;
|
|
|
|
struct wl_listener frame;
|
|
|
|
} Monitor;
|
|
|
|
|
2020-04-22 02:53:25 +00:00
|
|
|
typedef struct {
|
|
|
|
const char *name;
|
|
|
|
float scale;
|
|
|
|
} MonitorRule;
|
|
|
|
|
2020-04-21 19:47:59 +00:00
|
|
|
/* Used to move all of the data necessary to render a surface from the top-level
|
|
|
|
* frame handler to the per-surface render function. */
|
|
|
|
struct render_data {
|
|
|
|
struct wlr_output *output;
|
|
|
|
struct timespec *when;
|
2020-04-21 19:57:27 +00:00
|
|
|
int x, y;
|
2020-04-21 19:47:59 +00:00
|
|
|
};
|
2020-04-12 02:29:27 +00:00
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
/* function declarations */
|
|
|
|
static void axisnotify(struct wl_listener *listener, void *data);
|
|
|
|
static void buttonpress(struct wl_listener *listener, void *data);
|
2020-04-21 19:08:33 +00:00
|
|
|
static void createkeyboard(struct wlr_input_device *device);
|
2020-04-21 19:47:59 +00:00
|
|
|
static void createmon(struct wl_listener *listener, void *data);
|
2020-04-21 19:53:35 +00:00
|
|
|
static void createnotify(struct wl_listener *listener, void *data);
|
2020-04-21 19:08:33 +00:00
|
|
|
static void createpointer(struct wlr_input_device *device);
|
2020-04-21 18:48:27 +00:00
|
|
|
static void cursorframe(struct wl_listener *listener, void *data);
|
|
|
|
static void destroynotify(struct wl_listener *listener, void *data);
|
2020-04-21 19:47:59 +00:00
|
|
|
static void focus(Client *c, struct wlr_surface *surface);
|
2020-04-21 19:08:33 +00:00
|
|
|
static void focusnext(const Arg *arg);
|
2020-04-21 18:48:27 +00:00
|
|
|
static void inputdevice(struct wl_listener *listener, void *data);
|
2020-04-21 19:08:33 +00:00
|
|
|
static bool keybinding(uint32_t mods, xkb_keysym_t sym);
|
2020-04-21 18:48:27 +00:00
|
|
|
static void keypress(struct wl_listener *listener, void *data);
|
|
|
|
static void keypressmod(struct wl_listener *listener, void *data);
|
|
|
|
static void maprequest(struct wl_listener *listener, void *data);
|
|
|
|
static void motionabsolute(struct wl_listener *listener, void *data);
|
2020-04-21 19:08:33 +00:00
|
|
|
static void motionnotify(uint32_t time);
|
2020-04-21 18:48:27 +00:00
|
|
|
static void motionrelative(struct wl_listener *listener, void *data);
|
2020-04-21 19:08:33 +00:00
|
|
|
static void movemouse(const Arg *arg);
|
2020-04-21 19:47:59 +00:00
|
|
|
static void moveresize(Client *c, unsigned int mode);
|
2020-04-21 19:08:33 +00:00
|
|
|
static void quit(const Arg *arg);
|
2020-04-21 18:48:27 +00:00
|
|
|
static void render(struct wlr_surface *surface, int sx, int sy, void *data);
|
2020-04-21 19:47:59 +00:00
|
|
|
static void rendermon(struct wl_listener *listener, void *data);
|
2020-04-21 19:08:33 +00:00
|
|
|
static void resizemouse(const Arg *arg);
|
2020-04-21 23:57:04 +00:00
|
|
|
static void run(char *startup_cmd);
|
2020-04-21 18:48:27 +00:00
|
|
|
static void setcursor(struct wl_listener *listener, void *data);
|
2020-04-21 23:57:04 +00:00
|
|
|
static void setup(void);
|
2020-04-21 19:08:33 +00:00
|
|
|
static void spawn(const Arg *arg);
|
2020-04-21 18:48:27 +00:00
|
|
|
static void unmapnotify(struct wl_listener *listener, void *data);
|
2020-04-22 00:42:21 +00:00
|
|
|
static Client * xytoclient(double x, double y,
|
2020-04-21 18:48:27 +00:00
|
|
|
struct wlr_surface **surface, double *sx, double *sy);
|
2020-04-12 00:05:27 +00:00
|
|
|
|
2020-04-21 19:08:33 +00:00
|
|
|
/* variables */
|
2020-04-21 19:15:19 +00:00
|
|
|
static struct wl_display *wl_display;
|
|
|
|
static struct wlr_backend *backend;
|
|
|
|
static struct wlr_renderer *renderer;
|
|
|
|
|
|
|
|
static struct wlr_xdg_shell *xdg_shell;
|
|
|
|
static struct wl_listener new_xdg_surface;
|
2020-04-21 19:47:59 +00:00
|
|
|
static struct wl_list clients;
|
2020-04-21 19:15:19 +00:00
|
|
|
|
|
|
|
static struct wlr_cursor *cursor;
|
|
|
|
static struct wlr_xcursor_manager *cursor_mgr;
|
|
|
|
static struct wl_listener cursor_motion;
|
|
|
|
static struct wl_listener cursor_motion_absolute;
|
|
|
|
static struct wl_listener cursor_button;
|
|
|
|
static struct wl_listener cursor_axis;
|
|
|
|
static struct wl_listener cursor_frame;
|
|
|
|
|
|
|
|
static struct wlr_seat *seat;
|
|
|
|
static struct wl_listener new_input;
|
|
|
|
static struct wl_listener request_cursor;
|
|
|
|
static struct wl_list keyboards;
|
|
|
|
static unsigned int cursor_mode;
|
2020-04-21 19:47:59 +00:00
|
|
|
static Client *grabbed_client;
|
2020-04-22 00:42:21 +00:00
|
|
|
static double grabsx, grabsy;
|
2020-04-21 19:15:19 +00:00
|
|
|
static int grab_width, grab_height;
|
|
|
|
|
|
|
|
static struct wlr_output_layout *output_layout;
|
2020-04-21 19:47:59 +00:00
|
|
|
static struct wl_list mons;
|
2020-04-21 19:15:19 +00:00
|
|
|
static struct wl_listener new_output;
|
2020-04-21 19:08:33 +00:00
|
|
|
|
2020-04-11 22:27:19 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
|
|
|
axisnotify(struct wl_listener *listener, void *data)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-21 18:48:27 +00:00
|
|
|
/* This event is forwarded by the cursor when a pointer emits an axis event,
|
|
|
|
* for example when you move the scroll wheel. */
|
|
|
|
struct wlr_event_pointer_axis *event = data;
|
|
|
|
/* Notify the client with pointer focus of the axis event. */
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_seat_pointer_notify_axis(seat,
|
2020-04-21 18:48:27 +00:00
|
|
|
event->time_msec, event->orientation, event->delta,
|
|
|
|
event->delta_discrete, event->source);
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
|
|
|
buttonpress(struct wl_listener *listener, void *data)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-21 18:48:27 +00:00
|
|
|
/* This event is forwarded by the cursor when a pointer emits a button
|
|
|
|
* event. */
|
|
|
|
struct wlr_event_pointer_button *event = data;
|
|
|
|
/* Notify the client with pointer focus that a button press has occurred */
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_seat_pointer_notify_button(seat,
|
2020-04-21 18:48:27 +00:00
|
|
|
event->time_msec, event->button, event->state);
|
|
|
|
double sx, sy;
|
|
|
|
struct wlr_surface *surface;
|
2020-04-21 19:47:59 +00:00
|
|
|
Client *c = xytoclient(cursor->x, cursor->y,
|
2020-04-21 19:08:33 +00:00
|
|
|
&surface, &sx, &sy);
|
2020-04-21 18:48:27 +00:00
|
|
|
if (event->state == WLR_BUTTON_RELEASED) {
|
|
|
|
/* If you released any buttons, we exit interactive move/resize mode. */
|
2020-04-21 19:15:19 +00:00
|
|
|
cursor_mode = CurNormal;
|
2020-04-21 18:48:27 +00:00
|
|
|
} else {
|
|
|
|
/* Focus that client if the button was _pressed_ */
|
2020-04-21 19:47:59 +00:00
|
|
|
focus(c, surface);
|
2020-04-11 22:27:19 +00:00
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
struct wlr_keyboard *keyboard = wlr_seat_get_keyboard(seat);
|
|
|
|
uint32_t mods = wlr_keyboard_get_modifiers(keyboard);
|
|
|
|
for (int i = 0; i < LENGTH(buttons); i++) {
|
|
|
|
if (event->button == buttons[i].button &&
|
|
|
|
CLEANMASK(mods) == CLEANMASK(buttons[i].mod) &&
|
|
|
|
buttons[i].func) {
|
2020-04-21 19:08:33 +00:00
|
|
|
buttons[i].func(&buttons[i].arg);
|
2020-04-21 18:48:27 +00:00
|
|
|
}
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
2020-04-21 19:08:33 +00:00
|
|
|
createkeyboard(struct wlr_input_device *device)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-21 19:47:59 +00:00
|
|
|
Keyboard *keyboard = calloc(1, sizeof(*keyboard));
|
2020-04-11 22:27:19 +00:00
|
|
|
keyboard->device = device;
|
|
|
|
|
2020-04-22 00:09:36 +00:00
|
|
|
/* Prepare an XKB keymap and assign it to the keyboard. */
|
2020-04-11 22:27:19 +00:00
|
|
|
struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
|
|
|
|
struct xkb_keymap *keymap = xkb_map_new_from_names(context, &xkb_rules,
|
|
|
|
XKB_KEYMAP_COMPILE_NO_FLAGS);
|
|
|
|
|
|
|
|
wlr_keyboard_set_keymap(device->keyboard, keymap);
|
|
|
|
xkb_keymap_unref(keymap);
|
|
|
|
xkb_context_unref(context);
|
|
|
|
wlr_keyboard_set_repeat_info(device->keyboard, 25, 600);
|
|
|
|
|
|
|
|
/* Here we set up listeners for keyboard events. */
|
2020-04-21 18:18:38 +00:00
|
|
|
keyboard->modifiers.notify = keypressmod;
|
2020-04-11 22:27:19 +00:00
|
|
|
wl_signal_add(&device->keyboard->events.modifiers, &keyboard->modifiers);
|
2020-04-21 18:18:38 +00:00
|
|
|
keyboard->key.notify = keypress;
|
2020-04-11 22:27:19 +00:00
|
|
|
wl_signal_add(&device->keyboard->events.key, &keyboard->key);
|
|
|
|
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_seat_set_keyboard(seat, device);
|
2020-04-11 22:27:19 +00:00
|
|
|
|
|
|
|
/* And add the keyboard to our list of keyboards */
|
2020-04-21 19:15:19 +00:00
|
|
|
wl_list_insert(&keyboards, &keyboard->link);
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
2020-04-21 19:47:59 +00:00
|
|
|
createmon(struct wl_listener *listener, void *data)
|
2020-04-21 18:48:27 +00:00
|
|
|
{
|
2020-04-22 00:09:36 +00:00
|
|
|
/* This event is raised by the backend when a new output (aka a display or
|
2020-04-21 18:48:27 +00:00
|
|
|
* monitor) becomes available. */
|
|
|
|
struct wlr_output *wlr_output = data;
|
|
|
|
|
|
|
|
/* Some backends don't have modes. DRM+KMS does, and we need to set a mode
|
|
|
|
* before we can use the output. The mode is a tuple of (width, height,
|
|
|
|
* refresh rate), and each monitor supports only a specific set of modes. We
|
|
|
|
* just pick the monitor's preferred mode, a more sophisticated compositor
|
|
|
|
* would let the user configure it. */
|
|
|
|
if (!wl_list_empty(&wlr_output->modes)) {
|
|
|
|
struct wlr_output_mode *mode = wlr_output_preferred_mode(wlr_output);
|
|
|
|
wlr_output_set_mode(wlr_output, mode);
|
|
|
|
wlr_output_enable(wlr_output, true);
|
|
|
|
if (!wlr_output_commit(wlr_output)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 02:53:25 +00:00
|
|
|
/* Allocates and configures monitor state using configured rules */
|
2020-04-21 19:47:59 +00:00
|
|
|
Monitor *m = calloc(1, sizeof(*m));
|
|
|
|
m->wlr_output = wlr_output;
|
2020-04-22 02:53:25 +00:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < LENGTH(monrules); i++) {
|
|
|
|
if (!monrules[i].name ||
|
|
|
|
!strcmp(wlr_output->name, monrules[i].name)) {
|
|
|
|
wlr_output_set_scale(wlr_output, monrules[i].scale);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-04-21 18:48:27 +00:00
|
|
|
/* Sets up a listener for the frame notify event. */
|
2020-04-21 19:47:59 +00:00
|
|
|
m->frame.notify = rendermon;
|
|
|
|
wl_signal_add(&wlr_output->events.frame, &m->frame);
|
|
|
|
wl_list_insert(&mons, &m->link);
|
2020-04-21 18:48:27 +00:00
|
|
|
|
|
|
|
/* Adds this to the output layout. The add_auto function arranges outputs
|
|
|
|
* from left-to-right in the order they appear. A more sophisticated
|
|
|
|
* compositor would let the user configure the arrangement of outputs in the
|
2020-04-21 22:26:52 +00:00
|
|
|
* layout.
|
|
|
|
*
|
|
|
|
* The output layout utility automatically adds a wl_output global to the
|
|
|
|
* display, which Wayland clients can see to find out information about the
|
|
|
|
* output (such as DPI, scale factor, manufacturer, etc).
|
|
|
|
*/
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_output_layout_add_auto(output_layout, wlr_output);
|
2020-04-21 18:48:27 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 19:53:35 +00:00
|
|
|
void
|
|
|
|
createnotify(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
/* This event is raised when wlr_xdg_shell receives a new xdg surface from a
|
|
|
|
* client, either a toplevel (application window) or popup. */
|
|
|
|
struct wlr_xdg_surface *xdg_surface = data;
|
|
|
|
if (xdg_surface->role != WLR_XDG_SURFACE_ROLE_TOPLEVEL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate a Client for this surface */
|
|
|
|
Client *c = calloc(1, sizeof(*c));
|
|
|
|
c->xdg_surface = xdg_surface;
|
|
|
|
|
|
|
|
/* Listen to the various events it can emit */
|
|
|
|
c->map.notify = maprequest;
|
|
|
|
wl_signal_add(&xdg_surface->events.map, &c->map);
|
|
|
|
c->unmap.notify = unmapnotify;
|
|
|
|
wl_signal_add(&xdg_surface->events.unmap, &c->unmap);
|
|
|
|
c->destroy.notify = destroynotify;
|
|
|
|
wl_signal_add(&xdg_surface->events.destroy, &c->destroy);
|
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
2020-04-21 19:08:33 +00:00
|
|
|
createpointer(struct wlr_input_device *device)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-11 22:27:19 +00:00
|
|
|
/* We don't do anything special with pointers. All of our pointer handling
|
|
|
|
* is proxied through wlr_cursor. On another compositor, you might take this
|
|
|
|
* opportunity to do libinput configuration on the device to set
|
|
|
|
* acceleration, etc. */
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_cursor_attach_input_device(cursor, device);
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
|
|
|
cursorframe(struct wl_listener *listener, void *data)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-21 18:48:27 +00:00
|
|
|
/* This event is forwarded by the cursor when a pointer emits an frame
|
|
|
|
* event. Frame events are sent after regular pointer events to group
|
|
|
|
* multiple events together. For instance, two axis events may happen at the
|
|
|
|
* same time, in which case a frame event won't be sent in between. */
|
|
|
|
/* Notify the client with pointer focus of the frame event. */
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_seat_pointer_notify_frame(seat);
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
|
|
|
destroynotify(struct wl_listener *listener, void *data)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-21 18:48:27 +00:00
|
|
|
/* Called when the surface is destroyed and should never be shown again. */
|
2020-04-21 19:47:59 +00:00
|
|
|
Client *c = wl_container_of(listener, c, destroy);
|
|
|
|
free(c);
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
2020-04-21 19:47:59 +00:00
|
|
|
focus(Client *c, struct wlr_surface *surface)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-21 18:48:27 +00:00
|
|
|
/* Note: this function only deals with keyboard focus. */
|
2020-04-21 19:47:59 +00:00
|
|
|
if (c == NULL) {
|
2020-04-21 18:48:27 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct wlr_surface *prev_surface = seat->keyboard_state.focused_surface;
|
|
|
|
if (prev_surface == surface) {
|
|
|
|
/* Don't re-focus an already focused surface. */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (prev_surface) {
|
|
|
|
/*
|
2020-04-22 00:09:36 +00:00
|
|
|
* Deactivate the previously focused surface. This lets the
|
|
|
|
* client know it no longer has focus and the client will
|
|
|
|
* repaint accordingly, e.g. stop displaying a caret.
|
2020-04-21 18:48:27 +00:00
|
|
|
*/
|
|
|
|
struct wlr_xdg_surface *previous = wlr_xdg_surface_from_wlr_surface(
|
|
|
|
seat->keyboard_state.focused_surface);
|
|
|
|
wlr_xdg_toplevel_set_activated(previous, false);
|
|
|
|
}
|
|
|
|
struct wlr_keyboard *keyboard = wlr_seat_get_keyboard(seat);
|
2020-04-21 19:47:59 +00:00
|
|
|
/* Move the client to the front */
|
|
|
|
wl_list_remove(&c->link);
|
|
|
|
wl_list_insert(&clients, &c->link);
|
2020-04-21 18:48:27 +00:00
|
|
|
/* Activate the new surface */
|
2020-04-21 19:47:59 +00:00
|
|
|
wlr_xdg_toplevel_set_activated(c->xdg_surface, true);
|
2020-04-11 22:27:19 +00:00
|
|
|
/*
|
2020-04-21 18:48:27 +00:00
|
|
|
* Tell the seat to have the keyboard enter this surface. wlroots will keep
|
|
|
|
* track of this and automatically send key events to the appropriate
|
|
|
|
* clients without additional work on your part.
|
2020-04-11 22:27:19 +00:00
|
|
|
*/
|
2020-04-21 19:47:59 +00:00
|
|
|
wlr_seat_keyboard_notify_enter(seat, c->xdg_surface->surface,
|
2020-04-21 18:48:27 +00:00
|
|
|
keyboard->keycodes, keyboard->num_keycodes, &keyboard->modifiers);
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
2020-04-21 19:08:33 +00:00
|
|
|
focusnext(const Arg *arg)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-21 19:47:59 +00:00
|
|
|
/* Cycle to the next client */
|
|
|
|
if (wl_list_length(&clients) < 2) {
|
2020-04-21 18:48:27 +00:00
|
|
|
return;
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
2020-04-21 19:47:59 +00:00
|
|
|
Client *c = wl_container_of(clients.next, c, link);
|
|
|
|
Client *n = wl_container_of(c->link.next, n, link);
|
|
|
|
focus(n, n->xdg_surface->surface);
|
|
|
|
/* Move the previous client to the end of the list */
|
|
|
|
wl_list_remove(&c->link);
|
|
|
|
wl_list_insert(clients.prev, &c->link);
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
|
|
|
inputdevice(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
/* This event is raised by the backend when a new input device becomes
|
|
|
|
* available. */
|
|
|
|
struct wlr_input_device *device = data;
|
|
|
|
switch (device->type) {
|
|
|
|
case WLR_INPUT_DEVICE_KEYBOARD:
|
2020-04-21 19:08:33 +00:00
|
|
|
createkeyboard(device);
|
2020-04-21 18:48:27 +00:00
|
|
|
break;
|
|
|
|
case WLR_INPUT_DEVICE_POINTER:
|
2020-04-21 19:08:33 +00:00
|
|
|
createpointer(device);
|
2020-04-21 18:48:27 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* We need to let the wlr_seat know what our capabilities are, which is
|
|
|
|
* communiciated to the client. In dwl we always have a cursor, even if
|
|
|
|
* there are no pointer devices, so we always include that capability. */
|
|
|
|
uint32_t caps = WL_SEAT_CAPABILITY_POINTER;
|
2020-04-21 19:15:19 +00:00
|
|
|
if (!wl_list_empty(&keyboards)) {
|
2020-04-21 18:48:27 +00:00
|
|
|
caps |= WL_SEAT_CAPABILITY_KEYBOARD;
|
|
|
|
}
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_seat_set_capabilities(seat, caps);
|
2020-04-21 18:48:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2020-04-21 19:08:33 +00:00
|
|
|
keybinding(uint32_t mods, xkb_keysym_t sym)
|
2020-04-21 18:48:27 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Here we handle compositor keybindings. This is when the compositor is
|
|
|
|
* processing keys, rather than passing them on to the client for its own
|
|
|
|
* processing.
|
|
|
|
*/
|
|
|
|
bool handled = false;
|
|
|
|
for (int i = 0; i < LENGTH(keys); i++) {
|
|
|
|
if (sym == keys[i].keysym &&
|
|
|
|
CLEANMASK(mods) == CLEANMASK(keys[i].mod) &&
|
|
|
|
keys[i].func) {
|
2020-04-21 19:08:33 +00:00
|
|
|
keys[i].func(&keys[i].arg);
|
2020-04-21 18:48:27 +00:00
|
|
|
handled = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return handled;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
keypress(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
/* This event is raised when a key is pressed or released. */
|
2020-04-21 19:47:59 +00:00
|
|
|
Keyboard *keyboard =
|
2020-04-21 18:48:27 +00:00
|
|
|
wl_container_of(listener, keyboard, key);
|
|
|
|
struct wlr_event_keyboard_key *event = data;
|
|
|
|
|
|
|
|
/* Translate libinput keycode -> xkbcommon */
|
|
|
|
uint32_t keycode = event->keycode + 8;
|
|
|
|
/* Get a list of keysyms based on the keymap for this keyboard */
|
|
|
|
const xkb_keysym_t *syms;
|
|
|
|
int nsyms = xkb_state_key_get_syms(
|
|
|
|
keyboard->device->keyboard->xkb_state, keycode, &syms);
|
|
|
|
|
|
|
|
bool handled = false;
|
|
|
|
uint32_t mods = wlr_keyboard_get_modifiers(keyboard->device->keyboard);
|
|
|
|
if (event->state == WLR_KEY_PRESSED) {
|
|
|
|
/* On _press_, attempt to process a compositor keybinding. */
|
|
|
|
for (int i = 0; i < nsyms; i++) {
|
2020-04-21 19:08:33 +00:00
|
|
|
handled = keybinding(mods, syms[i]) || handled;
|
2020-04-21 18:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!handled) {
|
|
|
|
/* Otherwise, we pass it along to the client. */
|
|
|
|
wlr_seat_set_keyboard(seat, keyboard->device);
|
|
|
|
wlr_seat_keyboard_notify_key(seat, event->time_msec,
|
|
|
|
event->keycode, event->state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
keypressmod(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
/* This event is raised when a modifier key, such as shift or alt, is
|
|
|
|
* pressed. We simply communicate this to the client. */
|
2020-04-21 19:47:59 +00:00
|
|
|
Keyboard *keyboard = wl_container_of(listener, keyboard, modifiers);
|
2020-04-21 18:48:27 +00:00
|
|
|
/*
|
|
|
|
* A seat can only have one keyboard, but this is a limitation of the
|
|
|
|
* Wayland protocol - not wlroots. We assign all connected keyboards to the
|
|
|
|
* same seat. You can swap out the underlying wlr_keyboard like this and
|
|
|
|
* wlr_seat handles this transparently.
|
|
|
|
*/
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_seat_set_keyboard(seat, keyboard->device);
|
2020-04-21 18:48:27 +00:00
|
|
|
/* Send modifiers to the client. */
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_seat_keyboard_notify_modifiers(seat,
|
2020-04-21 18:48:27 +00:00
|
|
|
&keyboard->device->keyboard->modifiers);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
maprequest(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
/* Called when the surface is mapped, or ready to display on-screen. */
|
2020-04-21 19:47:59 +00:00
|
|
|
Client *c = wl_container_of(listener, c, map);
|
2020-04-22 01:55:06 +00:00
|
|
|
|
|
|
|
/* Insert this client into the list and focus it. */
|
|
|
|
wl_list_insert(&clients, &c->link);
|
2020-04-21 19:47:59 +00:00
|
|
|
focus(c, c->xdg_surface->surface);
|
2020-04-21 18:48:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
motionabsolute(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
/* This event is forwarded by the cursor when a pointer emits an _absolute_
|
|
|
|
* motion event, from 0..1 on each axis. This happens, for example, when
|
|
|
|
* wlroots is running under a Wayland window rather than KMS+DRM, and you
|
|
|
|
* move the mouse over the window. You could enter the window from any edge,
|
|
|
|
* so we have to warp the mouse there. There is also some hardware which
|
|
|
|
* emits these events. */
|
|
|
|
struct wlr_event_pointer_motion_absolute *event = data;
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_cursor_warp_absolute(cursor, event->device, event->x, event->y);
|
2020-04-21 19:08:33 +00:00
|
|
|
motionnotify(event->time_msec);
|
2020-04-21 18:48:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-04-21 19:08:33 +00:00
|
|
|
motionnotify(uint32_t time)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-22 00:09:36 +00:00
|
|
|
/* If we are currently grabbing the mouse, handle and return */
|
2020-04-21 19:15:19 +00:00
|
|
|
if (cursor_mode == CurMove) {
|
2020-04-21 19:59:32 +00:00
|
|
|
/* Move the grabbed client to the new position. */
|
2020-04-22 00:42:21 +00:00
|
|
|
grabbed_client->x = cursor->x - grabsx;
|
|
|
|
grabbed_client->y = cursor->y - grabsy;
|
2020-04-11 22:27:19 +00:00
|
|
|
return;
|
2020-04-21 19:15:19 +00:00
|
|
|
} else if (cursor_mode == CurResize) {
|
2020-04-21 19:59:32 +00:00
|
|
|
/*
|
|
|
|
* Note that I took some shortcuts here. In a more fleshed-out
|
|
|
|
* compositor, you'd wait for the client to prepare a buffer at
|
|
|
|
* the new size, then commit any movement that was prepared.
|
|
|
|
*/
|
2020-04-22 00:42:21 +00:00
|
|
|
double dx = cursor->x - grabsx;
|
|
|
|
double dy = cursor->y - grabsy;
|
2020-04-21 19:59:32 +00:00
|
|
|
wlr_xdg_toplevel_set_size(grabbed_client->xdg_surface,
|
|
|
|
grab_width + dx, grab_height + dy);
|
2020-04-11 22:27:19 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-21 19:47:59 +00:00
|
|
|
/* Otherwise, find the client under the pointer and send the event along. */
|
2020-04-11 22:27:19 +00:00
|
|
|
double sx, sy;
|
|
|
|
struct wlr_surface *surface = NULL;
|
2020-04-21 19:47:59 +00:00
|
|
|
Client *c = xytoclient(cursor->x, cursor->y,
|
2020-04-21 19:08:33 +00:00
|
|
|
&surface, &sx, &sy);
|
2020-04-21 19:47:59 +00:00
|
|
|
if (!c) {
|
|
|
|
/* If there's no client under the cursor, set the cursor image to a
|
2020-04-11 22:27:19 +00:00
|
|
|
* default. This is what makes the cursor image appear when you move it
|
2020-04-21 19:47:59 +00:00
|
|
|
* around the screen, not over any clients. */
|
2020-04-11 22:27:19 +00:00
|
|
|
wlr_xcursor_manager_set_cursor_image(
|
2020-04-21 19:15:19 +00:00
|
|
|
cursor_mgr, "left_ptr", cursor);
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
if (surface) {
|
|
|
|
bool focus_changed = seat->pointer_state.focused_surface != surface;
|
|
|
|
/*
|
|
|
|
* "Enter" the surface if necessary. This lets the client know that the
|
|
|
|
* cursor has entered one of its surfaces.
|
|
|
|
*
|
|
|
|
* Note that this gives the surface "pointer focus", which is distinct
|
|
|
|
* from keyboard focus. You get pointer focus by moving the pointer over
|
|
|
|
* a window.
|
|
|
|
*/
|
|
|
|
wlr_seat_pointer_notify_enter(seat, surface, sx, sy);
|
|
|
|
if (!focus_changed) {
|
|
|
|
/* The enter event contains coordinates, so we only need to notify
|
|
|
|
* on motion if the focus did not change. */
|
|
|
|
wlr_seat_pointer_notify_motion(seat, time, sx, sy);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Clear pointer focus so future button events and such are not sent to
|
|
|
|
* the last client to have the cursor over it. */
|
|
|
|
wlr_seat_pointer_clear_focus(seat);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
2020-04-21 18:18:38 +00:00
|
|
|
motionrelative(struct wl_listener *listener, void *data)
|
|
|
|
{
|
2020-04-11 22:27:19 +00:00
|
|
|
/* This event is forwarded by the cursor when a pointer emits a _relative_
|
|
|
|
* pointer motion event (i.e. a delta) */
|
|
|
|
struct wlr_event_pointer_motion *event = data;
|
|
|
|
/* The cursor doesn't move unless we tell it to. The cursor automatically
|
|
|
|
* handles constraining the motion to the output layout, as well as any
|
|
|
|
* special configuration applied for the specific input device which
|
|
|
|
* generated the event. You can pass NULL for the device if you want to move
|
|
|
|
* the cursor around without any input. */
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_cursor_move(cursor, event->device,
|
2020-04-11 22:27:19 +00:00
|
|
|
event->delta_x, event->delta_y);
|
2020-04-21 19:08:33 +00:00
|
|
|
motionnotify(event->time_msec);
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
2020-04-21 19:08:33 +00:00
|
|
|
movemouse(const Arg *arg)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-11 22:27:19 +00:00
|
|
|
double sx, sy;
|
|
|
|
struct wlr_surface *surface;
|
2020-04-21 19:47:59 +00:00
|
|
|
Client *c = xytoclient(cursor->x, cursor->y,
|
2020-04-21 19:08:33 +00:00
|
|
|
&surface, &sx, &sy);
|
2020-04-21 19:47:59 +00:00
|
|
|
if (!c) {
|
2020-04-21 18:48:27 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-04-21 19:47:59 +00:00
|
|
|
moveresize(c, CurMove);
|
2020-04-21 18:48:27 +00:00
|
|
|
}
|
2020-04-12 02:29:27 +00:00
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
2020-04-21 19:47:59 +00:00
|
|
|
moveresize(Client *c, unsigned int mode)
|
2020-04-21 18:48:27 +00:00
|
|
|
{
|
|
|
|
/* This function sets up an interactive move or resize operation, where the
|
|
|
|
* compositor stops propagating pointer events to clients and instead
|
|
|
|
* consumes them itself, to move or resize windows. */
|
|
|
|
struct wlr_surface *focused_surface =
|
2020-04-21 19:15:19 +00:00
|
|
|
seat->pointer_state.focused_surface;
|
2020-04-21 19:47:59 +00:00
|
|
|
if (c->xdg_surface->surface != focused_surface) {
|
2020-04-21 18:48:27 +00:00
|
|
|
/* Deny move/resize requests from unfocused clients. */
|
|
|
|
return;
|
|
|
|
}
|
2020-04-21 19:47:59 +00:00
|
|
|
grabbed_client = c;
|
2020-04-21 19:15:19 +00:00
|
|
|
cursor_mode = mode;
|
2020-04-22 00:42:21 +00:00
|
|
|
struct wlr_box sbox;
|
|
|
|
wlr_xdg_surface_get_geometry(c->xdg_surface, &sbox);
|
2020-04-21 19:00:18 +00:00
|
|
|
if (mode == CurMove) {
|
2020-04-22 00:42:21 +00:00
|
|
|
grabsx = cursor->x - c->x;
|
|
|
|
grabsy = cursor->y - c->y;
|
2020-04-21 18:48:27 +00:00
|
|
|
} else {
|
2020-04-22 00:42:21 +00:00
|
|
|
grabsx = cursor->x + sbox.x;
|
|
|
|
grabsy = cursor->y + sbox.y;
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
2020-04-22 00:42:21 +00:00
|
|
|
grab_width = sbox.width;
|
|
|
|
grab_height = sbox.height;
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
2020-04-21 19:08:33 +00:00
|
|
|
quit(const Arg *arg)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-21 19:15:19 +00:00
|
|
|
wl_display_terminate(wl_display);
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
2020-04-21 18:18:38 +00:00
|
|
|
render(struct wlr_surface *surface, int sx, int sy, void *data)
|
|
|
|
{
|
2020-04-11 22:27:19 +00:00
|
|
|
/* This function is called for every surface that needs to be rendered. */
|
|
|
|
struct render_data *rdata = data;
|
|
|
|
struct wlr_output *output = rdata->output;
|
|
|
|
|
|
|
|
/* We first obtain a wlr_texture, which is a GPU resource. wlroots
|
|
|
|
* automatically handles negotiating these with the client. The underlying
|
|
|
|
* resource could be an opaque handle passed from the client, or the client
|
|
|
|
* could have sent a pixel buffer which we copied to the GPU, or a few other
|
|
|
|
* means. You don't have to worry about this, wlroots takes care of it. */
|
|
|
|
struct wlr_texture *texture = wlr_surface_get_texture(surface);
|
|
|
|
if (texture == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-21 19:47:59 +00:00
|
|
|
/* The client has a position in layout coordinates. If you have two displays,
|
|
|
|
* one next to the other, both 1080p, a client on the rightmost display might
|
2020-04-11 22:27:19 +00:00
|
|
|
* have layout coordinates of 2000,100. We need to translate that to
|
|
|
|
* output-local coordinates, or (2000 - 1920). */
|
|
|
|
double ox = 0, oy = 0;
|
|
|
|
wlr_output_layout_output_coords(
|
2020-04-21 19:15:19 +00:00
|
|
|
output_layout, output, &ox, &oy);
|
2020-04-21 19:57:27 +00:00
|
|
|
ox += rdata->x + sx, oy += rdata->y + sy;
|
2020-04-11 22:27:19 +00:00
|
|
|
|
|
|
|
/* We also have to apply the scale factor for HiDPI outputs. This is only
|
|
|
|
* part of the puzzle, dwl does not fully support HiDPI. */
|
2020-04-22 00:42:21 +00:00
|
|
|
struct wlr_box obox = {
|
2020-04-11 22:27:19 +00:00
|
|
|
.x = ox * output->scale,
|
|
|
|
.y = oy * output->scale,
|
|
|
|
.width = surface->current.width * output->scale,
|
|
|
|
.height = surface->current.height * output->scale,
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2020-04-22 00:09:36 +00:00
|
|
|
* Those familiar with OpenGL are also familiar with the role of matrices
|
2020-04-21 19:47:59 +00:00
|
|
|
* in graphics programming. We need to prepare a matrix to render the
|
|
|
|
* client with. wlr_matrix_project_box is a helper which takes a box with
|
|
|
|
* a desired x, y coordinates, width and height, and an output geometry,
|
|
|
|
* then prepares an orthographic projection and multiplies the necessary
|
2020-04-11 22:27:19 +00:00
|
|
|
* transforms to produce a model-view-projection matrix.
|
|
|
|
*
|
|
|
|
* Naturally you can do this any way you like, for example to make a 3D
|
|
|
|
* compositor.
|
|
|
|
*/
|
|
|
|
float matrix[9];
|
|
|
|
enum wl_output_transform transform =
|
|
|
|
wlr_output_transform_invert(surface->current.transform);
|
2020-04-22 00:42:21 +00:00
|
|
|
wlr_matrix_project_box(matrix, &obox, transform, 0,
|
2020-04-11 22:27:19 +00:00
|
|
|
output->transform_matrix);
|
|
|
|
|
|
|
|
/* This takes our matrix, the texture, and an alpha, and performs the actual
|
|
|
|
* rendering on the GPU. */
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_render_texture_with_matrix(renderer, texture, matrix, 1);
|
2020-04-11 22:27:19 +00:00
|
|
|
|
|
|
|
/* This lets the client know that we've displayed that frame and it can
|
|
|
|
* prepare another one now if it likes. */
|
|
|
|
wlr_surface_send_frame_done(surface, rdata->when);
|
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
2020-04-21 19:47:59 +00:00
|
|
|
rendermon(struct wl_listener *listener, void *data)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-11 22:27:19 +00:00
|
|
|
/* This function is called every time an output is ready to display a frame,
|
|
|
|
* generally at the output's refresh rate (e.g. 60Hz). */
|
2020-04-21 19:47:59 +00:00
|
|
|
Monitor *m = wl_container_of(listener, m, frame);
|
2020-04-11 22:27:19 +00:00
|
|
|
|
|
|
|
struct timespec now;
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
|
|
|
|
|
|
|
/* wlr_output_attach_render makes the OpenGL context current. */
|
2020-04-21 19:47:59 +00:00
|
|
|
if (!wlr_output_attach_render(m->wlr_output, NULL)) {
|
2020-04-11 22:27:19 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Begin the renderer (calls glViewport and some other GL sanity checks) */
|
2020-04-22 02:55:36 +00:00
|
|
|
wlr_renderer_begin(renderer, m->wlr_output->width, m->wlr_output->height);
|
2020-04-22 02:58:13 +00:00
|
|
|
wlr_renderer_clear(renderer, rootcolor);
|
2020-04-11 22:27:19 +00:00
|
|
|
|
|
|
|
/* Each subsequent window we render is rendered on top of the last. Because
|
2020-04-21 19:47:59 +00:00
|
|
|
* our client list is ordered front-to-back, we iterate over it backwards. */
|
|
|
|
Client *c;
|
|
|
|
wl_list_for_each_reverse(c, &clients, link) {
|
2020-04-11 22:27:19 +00:00
|
|
|
struct render_data rdata = {
|
2020-04-21 19:47:59 +00:00
|
|
|
.output = m->wlr_output,
|
2020-04-11 22:27:19 +00:00
|
|
|
.when = &now,
|
2020-04-21 19:57:27 +00:00
|
|
|
.x = c->x,
|
|
|
|
.y = c->y,
|
2020-04-11 22:27:19 +00:00
|
|
|
};
|
2020-04-21 18:18:38 +00:00
|
|
|
/* This calls our render function for each surface among the
|
2020-04-11 22:27:19 +00:00
|
|
|
* xdg_surface's toplevel and popups. */
|
2020-04-21 19:47:59 +00:00
|
|
|
wlr_xdg_surface_for_each_surface(c->xdg_surface,
|
2020-04-21 18:18:38 +00:00
|
|
|
render, &rdata);
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Hardware cursors are rendered by the GPU on a separate plane, and can be
|
|
|
|
* moved around without re-rendering what's beneath them - which is more
|
|
|
|
* efficient. However, not all hardware supports hardware cursors. For this
|
|
|
|
* reason, wlroots provides a software fallback, which we ask it to render
|
|
|
|
* here. wlr_cursor handles configuring hardware vs software cursors for you,
|
|
|
|
* and this function is a no-op when hardware cursors are in use. */
|
2020-04-21 19:47:59 +00:00
|
|
|
wlr_output_render_software_cursors(m->wlr_output, NULL);
|
2020-04-11 22:27:19 +00:00
|
|
|
|
|
|
|
/* Conclude rendering and swap the buffers, showing the final frame
|
|
|
|
* on-screen. */
|
|
|
|
wlr_renderer_end(renderer);
|
2020-04-21 19:47:59 +00:00
|
|
|
wlr_output_commit(m->wlr_output);
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
2020-04-21 19:08:33 +00:00
|
|
|
resizemouse(const Arg *arg)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-12 02:29:27 +00:00
|
|
|
double sx, sy;
|
|
|
|
struct wlr_surface *surface;
|
2020-04-21 19:47:59 +00:00
|
|
|
Client *c = xytoclient(cursor->x, cursor->y,
|
2020-04-21 19:08:33 +00:00
|
|
|
&surface, &sx, &sy);
|
2020-04-21 19:47:59 +00:00
|
|
|
if (!c) {
|
2020-04-12 02:29:27 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-04-22 00:42:21 +00:00
|
|
|
struct wlr_box sbox;
|
|
|
|
wlr_xdg_surface_get_geometry(c->xdg_surface, &sbox);
|
2020-04-22 00:09:36 +00:00
|
|
|
/* Doesn't work for X11 output - the next absolute motion event
|
|
|
|
* returns the cursor to where it started */
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_cursor_warp_closest(cursor, NULL,
|
2020-04-22 00:42:21 +00:00
|
|
|
c->x + sbox.x + sbox.width,
|
|
|
|
c->y + sbox.y + sbox.height);
|
2020-04-21 19:47:59 +00:00
|
|
|
moveresize(c, CurResize);
|
2020-04-12 02:29:27 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 23:57:04 +00:00
|
|
|
void
|
|
|
|
run(char *startup_cmd)
|
|
|
|
{
|
|
|
|
pid_t startup_pid = -1;
|
|
|
|
|
|
|
|
/* Add a Unix socket to the Wayland display. */
|
|
|
|
const char *socket = wl_display_add_socket_auto(wl_display);
|
|
|
|
if (!socket) {
|
|
|
|
wlr_backend_destroy(backend);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start the backend. This will enumerate outputs and inputs, become the DRM
|
|
|
|
* master, etc */
|
|
|
|
if (!wlr_backend_start(backend)) {
|
|
|
|
wlr_backend_destroy(backend);
|
|
|
|
wl_display_destroy(wl_display);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the WAYLAND_DISPLAY environment variable to our socket and run the
|
|
|
|
* startup command if requested. */
|
|
|
|
setenv("WAYLAND_DISPLAY", socket, true);
|
|
|
|
if (startup_cmd) {
|
|
|
|
startup_pid = fork();
|
|
|
|
if (startup_pid < 0) {
|
|
|
|
perror("startup: fork");
|
|
|
|
wl_display_destroy(wl_display);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (startup_pid == 0) {
|
|
|
|
execl("/bin/sh", "/bin/sh", "-c", startup_cmd, (void *)NULL);
|
|
|
|
perror("startup: execl");
|
|
|
|
wl_display_destroy(wl_display);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Run the Wayland event loop. This does not return until you exit the
|
|
|
|
* compositor. Starting the backend rigged up all of the necessary event
|
|
|
|
* loop configuration to listen to libinput events, DRM events, generate
|
|
|
|
* frame events at the refresh rate, and so on. */
|
|
|
|
wlr_log(WLR_INFO, "Running Wayland compositor on WAYLAND_DISPLAY=%s",
|
|
|
|
socket);
|
|
|
|
wl_display_run(wl_display);
|
|
|
|
|
|
|
|
if (startup_cmd) {
|
|
|
|
kill(startup_pid, SIGTERM);
|
|
|
|
waitpid(startup_pid, NULL, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
|
|
|
setcursor(struct wl_listener *listener, void *data)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-22 00:09:36 +00:00
|
|
|
/* This event is raised by the seat when a client provides a cursor image */
|
2020-04-21 18:48:27 +00:00
|
|
|
struct wlr_seat_pointer_request_set_cursor_event *event = data;
|
|
|
|
struct wlr_seat_client *focused_client =
|
2020-04-21 19:15:19 +00:00
|
|
|
seat->pointer_state.focused_client;
|
2020-04-21 18:48:27 +00:00
|
|
|
/* This can be sent by any client, so we check to make sure this one is
|
|
|
|
* actually has pointer focus first. */
|
|
|
|
if (focused_client == event->seat_client) {
|
|
|
|
/* Once we've vetted the client, we can tell the cursor to use the
|
|
|
|
* provided surface as the cursor image. It will set the hardware cursor
|
|
|
|
* on the output that it's currently on and continue to do so as the
|
|
|
|
* cursor moves between outputs. */
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_cursor_set_surface(cursor, event->surface,
|
2020-04-21 18:48:27 +00:00
|
|
|
event->hotspot_x, event->hotspot_y);
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
2020-04-21 18:48:27 +00:00
|
|
|
}
|
2020-04-11 22:27:19 +00:00
|
|
|
|
2020-04-21 18:48:27 +00:00
|
|
|
void
|
2020-04-21 23:57:04 +00:00
|
|
|
setup(void)
|
2020-04-21 18:18:38 +00:00
|
|
|
{
|
2020-04-11 22:27:19 +00:00
|
|
|
/* The backend is a wlroots feature which abstracts the underlying input and
|
|
|
|
* output hardware. The autocreate option will choose the most suitable
|
|
|
|
* backend based on the current environment, such as opening an X11 window
|
|
|
|
* if an X11 server is running. The NULL argument here optionally allows you
|
|
|
|
* to pass in a custom renderer if wlr_renderer doesn't meet your needs. The
|
|
|
|
* backend uses the renderer, for example, to fall back to software cursors
|
|
|
|
* if the backend does not support hardware cursors (some older GPUs
|
|
|
|
* don't). */
|
2020-04-21 19:15:19 +00:00
|
|
|
backend = wlr_backend_autocreate(wl_display, NULL);
|
2020-04-11 22:27:19 +00:00
|
|
|
|
|
|
|
/* If we don't provide a renderer, autocreate makes a GLES2 renderer for us.
|
|
|
|
* The renderer is responsible for defining the various pixel formats it
|
|
|
|
* supports for shared memory, this configures that for clients. */
|
2020-04-21 19:15:19 +00:00
|
|
|
renderer = wlr_backend_get_renderer(backend);
|
|
|
|
wlr_renderer_init_wl_display(renderer, wl_display);
|
2020-04-11 22:27:19 +00:00
|
|
|
|
|
|
|
/* This creates some hands-off wlroots interfaces. The compositor is
|
|
|
|
* necessary for clients to allocate surfaces and the data device manager
|
|
|
|
* handles the clipboard. Each of these wlroots interfaces has room for you
|
|
|
|
* to dig your fingers in and play with their behavior if you want. */
|
2020-04-21 19:15:19 +00:00
|
|
|
wlr_compositor_create(wl_display, renderer);
|
|
|
|
wlr_data_device_manager_create(wl_display);
|
2020-04-11 22:27:19 +00:00
|
|
|
|
|
|
|
/* Creates an output layout, which a wlroots utility for working with an
|
|
|
|
* arrangement of screens in a physical layout. */
|
2020-04-21 19:15:19 +00:00
|
|
|
output_layout = wlr_output_layout_create();
|
2020-04-11 22:27:19 +00:00
|
|
|
|
|
|
|
/* Configure a listener to be notified when new outputs are available on the
|
|
|
|
* backend. */
|
2020-04-21 19:47:59 +00:00
|
|
|
wl_list_init(&mons);
|
|
|
|
new_output.notify = createmon;
|
2020-04-21 19:15:19 +00:00
|
|
|
wl_signal_add(&backend->events.new_output, &new_output);
|
2020-04-11 22:27:19 +00:00
|
|
|
|
2020-04-21 19:47:59 +00:00
|
|
|
/* Set up our list of clients and the xdg-shell. The xdg-shell is a Wayland
|
2020-04-11 22:27:19 +00:00
|
|
|
* protocol which is used for application windows. For more detail on
|
|
|
|
* shells, refer to my article:
|
|
|
|
*
|
|
|
|
* https://drewdevault.com/2018/07/29/Wayland-shells.html
|
|
|
|
*/
|
2020-04-21 19:47:59 +00:00
|
|
|
wl_list_init(&clients);
|
2020-04-21 19:15:19 +00:00
|
|
|
xdg_shell = wlr_xdg_shell_create(wl_display);
|
|
|
|
new_xdg_surface.notify = createnotify;
|
|
|
|
wl_signal_add(&xdg_shell->events.new_surface,
|
|
|
|
&new_xdg_surface);
|
2020-04-11 22:27:19 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Creates a cursor, which is a wlroots utility for tracking the cursor
|
|
|
|
* image shown on screen.
|
|
|
|
*/
|
2020-04-21 19:15:19 +00:00
|
|
|
cursor = wlr_cursor_create();
|
|
|
|
wlr_cursor_attach_output_layout(cursor, output_layout);
|
2020-04-11 22:27:19 +00:00
|
|
|
|
|
|
|
/* Creates an xcursor manager, another wlroots utility which loads up
|
|
|
|
* Xcursor themes to source cursor images from and makes sure that cursor
|
|
|
|
* images are available at all scale factors on the screen (necessary for
|
|
|
|
* HiDPI support). We add a cursor theme at scale factor 1 to begin with. */
|
2020-04-21 19:15:19 +00:00
|
|
|
cursor_mgr = wlr_xcursor_manager_create(NULL, 24);
|
|
|
|
wlr_xcursor_manager_load(cursor_mgr, 1);
|
2020-04-11 22:27:19 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* wlr_cursor *only* displays an image on screen. It does not move around
|
|
|
|
* when the pointer moves. However, we can attach input devices to it, and
|
|
|
|
* it will generate aggregate events for all of them. In these events, we
|
|
|
|
* can choose how we want to process them, forwarding them to clients and
|
|
|
|
* moving the cursor around. More detail on this process is described in my
|
|
|
|
* input handling blog post:
|
|
|
|
*
|
|
|
|
* https://drewdevault.com/2018/07/17/Input-handling-in-wlroots.html
|
|
|
|
*
|
|
|
|
* And more comments are sprinkled throughout the notify functions above.
|
|
|
|
*/
|
2020-04-21 19:15:19 +00:00
|
|
|
cursor_motion.notify = motionrelative;
|
|
|
|
wl_signal_add(&cursor->events.motion, &cursor_motion);
|
|
|
|
cursor_motion_absolute.notify = motionabsolute;
|
|
|
|
wl_signal_add(&cursor->events.motion_absolute,
|
|
|
|
&cursor_motion_absolute);
|
|
|
|
cursor_button.notify = buttonpress;
|
|
|
|
wl_signal_add(&cursor->events.button, &cursor_button);
|
|
|
|
cursor_axis.notify = axisnotify;
|
|
|
|
wl_signal_add(&cursor->events.axis, &cursor_axis);
|
|
|
|
cursor_frame.notify = cursorframe;
|
|
|
|
wl_signal_add(&cursor->events.frame, &cursor_frame);
|
2020-04-11 22:27:19 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Configures a seat, which is a single "seat" at which a user sits and
|
|
|
|
* operates the computer. This conceptually includes up to one keyboard,
|
|
|
|
* pointer, touch, and drawing tablet device. We also rig up a listener to
|
|
|
|
* let us know when new input devices are available on the backend.
|
|
|
|
*/
|
2020-04-21 19:15:19 +00:00
|
|
|
wl_list_init(&keyboards);
|
|
|
|
new_input.notify = inputdevice;
|
|
|
|
wl_signal_add(&backend->events.new_input, &new_input);
|
|
|
|
seat = wlr_seat_create(wl_display, "seat0");
|
|
|
|
request_cursor.notify = setcursor;
|
|
|
|
wl_signal_add(&seat->events.request_set_cursor,
|
|
|
|
&request_cursor);
|
2020-04-21 23:57:04 +00:00
|
|
|
}
|
2020-04-11 22:27:19 +00:00
|
|
|
|
2020-04-21 23:57:04 +00:00
|
|
|
void
|
|
|
|
spawn(const Arg *arg)
|
|
|
|
{
|
|
|
|
if (fork() == 0) {
|
|
|
|
setsid();
|
|
|
|
execvp(((char **)arg->v)[0], (char **)arg->v);
|
|
|
|
fprintf(stderr, "dwl: execvp %s", ((char **)arg->v)[0]);
|
|
|
|
perror(" failed");
|
|
|
|
exit(EXIT_FAILURE);
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
2020-04-21 23:57:04 +00:00
|
|
|
}
|
2020-04-11 22:27:19 +00:00
|
|
|
|
2020-04-21 23:57:04 +00:00
|
|
|
void
|
|
|
|
unmapnotify(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
/* Called when the surface is unmapped, and should no longer be shown. */
|
|
|
|
Client *c = wl_container_of(listener, c, unmap);
|
2020-04-22 01:55:06 +00:00
|
|
|
wl_list_remove(&c->link);
|
2020-04-21 23:57:04 +00:00
|
|
|
}
|
2020-04-11 22:27:19 +00:00
|
|
|
|
2020-04-21 23:57:04 +00:00
|
|
|
Client *
|
2020-04-22 00:42:21 +00:00
|
|
|
xytoclient(double x, double y,
|
2020-04-21 23:57:04 +00:00
|
|
|
struct wlr_surface **surface, double *sx, double *sy)
|
|
|
|
{
|
|
|
|
/* This iterates over all of our surfaces and attempts to find one under the
|
|
|
|
* cursor. This relies on clients being ordered from top-to-bottom. */
|
|
|
|
Client *c;
|
|
|
|
wl_list_for_each(c, &clients, link) {
|
2020-04-22 00:17:44 +00:00
|
|
|
/*
|
|
|
|
* XDG toplevels may have nested surfaces, such as popup windows
|
|
|
|
* for context menus or tooltips. This function tests if any of
|
2020-04-22 00:42:21 +00:00
|
|
|
* those are underneath the coordinates x and y (in layout
|
|
|
|
* coordinates). If so, it sets the surface pointer to that
|
|
|
|
* wlr_surface and the sx and sy coordinates to the coordinates
|
|
|
|
* relative to that surface's top-left corner.
|
2020-04-22 00:17:44 +00:00
|
|
|
*/
|
|
|
|
double _sx, _sy;
|
|
|
|
struct wlr_surface *_surface = NULL;
|
|
|
|
_surface = wlr_xdg_surface_surface_at(c->xdg_surface,
|
2020-04-22 00:42:21 +00:00
|
|
|
x - c->x, y - c->y, &_sx, &_sy);
|
2020-04-22 00:17:44 +00:00
|
|
|
|
|
|
|
if (_surface != NULL) {
|
|
|
|
*sx = _sx;
|
|
|
|
*sy = _sy;
|
|
|
|
*surface = _surface;
|
2020-04-21 23:57:04 +00:00
|
|
|
return c;
|
2020-04-11 22:27:19 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-21 23:57:04 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2020-04-11 22:27:19 +00:00
|
|
|
|
2020-04-21 23:57:04 +00:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
wlr_log_init(WLR_DEBUG, NULL);
|
|
|
|
char *startup_cmd = NULL;
|
|
|
|
|
|
|
|
int c;
|
|
|
|
while ((c = getopt(argc, argv, "s:h")) != -1) {
|
|
|
|
switch (c) {
|
|
|
|
case 's':
|
|
|
|
startup_cmd = optarg;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf("Usage: %s [-s startup command]\n", argv[0]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (optind < argc) {
|
|
|
|
printf("Usage: %s [-s startup command]\n", argv[0]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The Wayland display is managed by libwayland. It handles accepting
|
|
|
|
* clients from the Unix socket, manging Wayland globals, and so on. */
|
|
|
|
wl_display = wl_display_create();
|
|
|
|
|
|
|
|
setup();
|
|
|
|
run(startup_cmd);
|
|
|
|
|
2020-04-11 22:27:19 +00:00
|
|
|
/* Once wl_display_run returns, we shut down the server. */
|
2020-04-21 19:15:19 +00:00
|
|
|
wl_display_destroy_clients(wl_display);
|
|
|
|
wl_display_destroy(wl_display);
|
2020-04-11 22:27:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|