2018-05-14 01:38:56 +10:00
|
|
|
#define _POSIX_C_SOURCE 199309L
|
2018-07-21 12:13:00 +10:00
|
|
|
#include <float.h>
|
2018-05-14 01:38:56 +10:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
2019-07-28 06:02:56 +10:00
|
|
|
#include <wayland-server-core.h>
|
2018-05-14 01:38:56 +10:00
|
|
|
#include <wlr/types/wlr_xdg_shell.h>
|
2018-05-27 22:28:37 +10:00
|
|
|
#include <wlr/util/edges.h>
|
|
|
|
#include "log.h"
|
2018-07-30 03:31:10 +10:00
|
|
|
#include "sway/decoration.h"
|
2018-08-18 15:10:06 +10:00
|
|
|
#include "sway/desktop.h"
|
Prepare arrange code for type safe arguments
This commit changes the arrange code in a way that will support type
safe arguments.
The arrange_output et al functions are now public, however I opted not
to use them directly yet. I've kept the generic arrange_windows there
for convenience until type safety is fully implemented. This means this
patch has much less risk of breaking things as it would otherwise.
To be type safe, arrange_children_of cannot exist in its previous form
because the thing passed to it could be either a workspace or a
container. So it's now renamed to arrange_children and accepts a list_t,
as well as the parent layout and parent's box.
There was some code which checked the grandparent's layout to see if it
was tabbed or stacked and adjusted the Y offset of the grandchild
accordingly. Accessing the grandparent layout isn't easy when using type
safe arguments, and it seemed odd to even need to do this. I determined
that this was needed because a child of a tabbed container would have a
swayc Y matching the top of the tab bar. I've changed this so a child of
a tabbed container will have a swayc Y matching the bottom of the tab
bar, which means we don't need to access the grandparent layout. Some
tweaks to the rendering and autoconfigure code have been made to
implement this, and the container_at code appears to work without
needing any changes.
arrange_children_of (now arrange_children) would check if the parent had
gaps and would copy them to the child, effectively making the
workspace's gaps recurse into all children. We can't do this any more
without passing has_gaps, gaps_inner and gaps_outer as arguments to
arrange_children, so I've changed the add_gaps function to retrieve it
from the workspace directly.
apply_tabbed_or_stacked_layout has been split into two functions, as it
had different logic depending on the layout.
Lastly, arrange.h had an unnecessary include of transaction.h. I've
removed it, which means I've had to add it to several other files.
2018-08-26 10:16:49 +10:00
|
|
|
#include "sway/desktop/transaction.h"
|
2018-10-24 20:38:52 +11:00
|
|
|
#include "sway/input/cursor.h"
|
2018-05-27 22:28:37 +10:00
|
|
|
#include "sway/input/input-manager.h"
|
|
|
|
#include "sway/input/seat.h"
|
Implement type safe arguments and demote sway_container
This commit changes the meaning of sway_container so that it only refers
to layout containers and view containers. Workspaces, outputs and the
root are no longer known as containers. Instead, root, outputs,
workspaces and containers are all a type of node, and containers come in
two types: layout containers and view containers.
In addition to the above, this implements type safe variables. This
means we use specific types such as sway_output and sway_workspace
instead of generic containers or nodes. However, it's worth noting that
in a few places places (eg. seat focus and transactions) referring to
them in a generic way is unavoidable which is why we still use nodes in
some places.
If you want a TL;DR, look at node.h, as well as the struct definitions
for root, output, workspace and container. Note that sway_output now
contains a workspaces list, and workspaces now contain a tiling and
floating list, and containers now contain a pointer back to the
workspace.
There are now functions for seat_get_focused_workspace and
seat_get_focused_container. The latter will return NULL if a workspace
itself is focused. Most other seat functions like seat_get_focus and
seat_set_focus now accept and return nodes.
In the config->handler_context struct, current_container has been
replaced with three pointers: node, container and workspace. node is the
same as what current_container was, while workspace is the workspace
that the node resides on and container is the actual container, which
may be NULL if a workspace itself is focused.
The global root_container variable has been replaced with one simply
called root, which is a pointer to the sway_root instance.
The way outputs are created, enabled, disabled and destroyed has
changed. Previously we'd wrap the sway_output in a container when it is
enabled, but as we don't have containers any more it needs a different
approach. The output_create and output_destroy functions previously
created/destroyed the container, but now they create/destroy the
sway_output. There is a new function output_disable to disable an output
without destroying it.
Containers have a new view property. If this is populated then the
container is a view container, otherwise it's a layout container. Like
before, this property is immutable for the life of the container.
Containers have both a `sway_container *parent` and
`sway_workspace *workspace`. As we use specific types now, parent cannot
point to a workspace so it'll be NULL for containers which are direct
children of the workspace. The workspace property is set for all
containers, except those which are hidden in the scratchpad as they have
no workspace.
In some cases we need to refer to workspaces in a container-like way.
For example, workspaces have layout and children, but when using
specific types this makes it difficult. Likewise, it's difficult for a
container to get its parent's layout when the parent could be another
container or a workspace. To make it easier, some helper functions have
been created: container_parent_layout and container_get_siblings.
container_remove_child has been renamed to container_detach and
container_replace_child has been renamed to container_replace.
`container_handle_fullscreen_reparent(con, old_parent)` has had the
old_parent removed. We now unfullscreen the workspace when detaching the
container, so this function is simplified and only needs one argument
now.
container_notify_subtree_changed has been renamed to
container_update_representation. This is more descriptive of its
purpose. I also wanted to be able to call it with whatever container was
changed rather than the container's parent, which makes bubbling up to
the workspace easier.
There are now state structs per node thing. ie. sway_output_state,
sway_workspace_state and sway_container_state.
The focus, move and layout commands have been completely refactored to
work with the specific types. I considered making these a separate PR,
but I'd be backporting my changes only to replace them again, and it's
easier just to test everything at once.
2018-08-30 21:00:10 +10:00
|
|
|
#include "sway/output.h"
|
2018-06-06 22:57:34 +10:00
|
|
|
#include "sway/tree/arrange.h"
|
2018-05-14 01:38:56 +10:00
|
|
|
#include "sway/tree/container.h"
|
|
|
|
#include "sway/tree/view.h"
|
Implement type safe arguments and demote sway_container
This commit changes the meaning of sway_container so that it only refers
to layout containers and view containers. Workspaces, outputs and the
root are no longer known as containers. Instead, root, outputs,
workspaces and containers are all a type of node, and containers come in
two types: layout containers and view containers.
In addition to the above, this implements type safe variables. This
means we use specific types such as sway_output and sway_workspace
instead of generic containers or nodes. However, it's worth noting that
in a few places places (eg. seat focus and transactions) referring to
them in a generic way is unavoidable which is why we still use nodes in
some places.
If you want a TL;DR, look at node.h, as well as the struct definitions
for root, output, workspace and container. Note that sway_output now
contains a workspaces list, and workspaces now contain a tiling and
floating list, and containers now contain a pointer back to the
workspace.
There are now functions for seat_get_focused_workspace and
seat_get_focused_container. The latter will return NULL if a workspace
itself is focused. Most other seat functions like seat_get_focus and
seat_set_focus now accept and return nodes.
In the config->handler_context struct, current_container has been
replaced with three pointers: node, container and workspace. node is the
same as what current_container was, while workspace is the workspace
that the node resides on and container is the actual container, which
may be NULL if a workspace itself is focused.
The global root_container variable has been replaced with one simply
called root, which is a pointer to the sway_root instance.
The way outputs are created, enabled, disabled and destroyed has
changed. Previously we'd wrap the sway_output in a container when it is
enabled, but as we don't have containers any more it needs a different
approach. The output_create and output_destroy functions previously
created/destroyed the container, but now they create/destroy the
sway_output. There is a new function output_disable to disable an output
without destroying it.
Containers have a new view property. If this is populated then the
container is a view container, otherwise it's a layout container. Like
before, this property is immutable for the life of the container.
Containers have both a `sway_container *parent` and
`sway_workspace *workspace`. As we use specific types now, parent cannot
point to a workspace so it'll be NULL for containers which are direct
children of the workspace. The workspace property is set for all
containers, except those which are hidden in the scratchpad as they have
no workspace.
In some cases we need to refer to workspaces in a container-like way.
For example, workspaces have layout and children, but when using
specific types this makes it difficult. Likewise, it's difficult for a
container to get its parent's layout when the parent could be another
container or a workspace. To make it easier, some helper functions have
been created: container_parent_layout and container_get_siblings.
container_remove_child has been renamed to container_detach and
container_replace_child has been renamed to container_replace.
`container_handle_fullscreen_reparent(con, old_parent)` has had the
old_parent removed. We now unfullscreen the workspace when detaching the
container, so this function is simplified and only needs one argument
now.
container_notify_subtree_changed has been renamed to
container_update_representation. This is more descriptive of its
purpose. I also wanted to be able to call it with whatever container was
changed rather than the container's parent, which makes bubbling up to
the workspace easier.
There are now state structs per node thing. ie. sway_output_state,
sway_workspace_state and sway_container_state.
The focus, move and layout commands have been completely refactored to
work with the specific types. I considered making these a separate PR,
but I'd be backporting my changes only to replace them again, and it's
easier just to test everything at once.
2018-08-30 21:00:10 +10:00
|
|
|
#include "sway/tree/workspace.h"
|
2019-02-23 18:28:49 +11:00
|
|
|
#include "sway/xdg_decoration.h"
|
2018-05-14 01:38:56 +10:00
|
|
|
|
|
|
|
static const struct sway_view_child_impl popup_impl;
|
|
|
|
|
2018-10-06 14:49:33 +10:00
|
|
|
static void popup_get_root_coords(struct sway_view_child *child,
|
|
|
|
int *root_sx, int *root_sy) {
|
|
|
|
struct sway_xdg_popup *popup = (struct sway_xdg_popup *)child;
|
|
|
|
struct wlr_xdg_surface *surface = popup->wlr_xdg_surface;
|
2018-10-06 17:29:23 +10:00
|
|
|
|
2018-10-21 00:18:56 +11:00
|
|
|
int x_offset = -child->view->geometry.x - surface->geometry.x;
|
|
|
|
int y_offset = -child->view->geometry.y - surface->geometry.y;
|
|
|
|
|
2018-10-06 17:29:23 +10:00
|
|
|
wlr_xdg_popup_get_toplevel_coords(surface->popup,
|
2018-10-21 00:18:56 +11:00
|
|
|
x_offset + surface->popup->geometry.x,
|
|
|
|
y_offset + surface->popup->geometry.y,
|
2018-10-06 17:29:23 +10:00
|
|
|
root_sx, root_sy);
|
2018-10-06 14:49:33 +10:00
|
|
|
}
|
|
|
|
|
2018-05-14 01:38:56 +10:00
|
|
|
static void popup_destroy(struct sway_view_child *child) {
|
|
|
|
if (!sway_assert(child->impl == &popup_impl,
|
|
|
|
"Expected an xdg_shell popup")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct sway_xdg_popup *popup = (struct sway_xdg_popup *)child;
|
|
|
|
wl_list_remove(&popup->new_popup.link);
|
|
|
|
wl_list_remove(&popup->destroy.link);
|
|
|
|
free(popup);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct sway_view_child_impl popup_impl = {
|
2018-10-06 14:49:33 +10:00
|
|
|
.get_root_coords = popup_get_root_coords,
|
2018-05-14 01:38:56 +10:00
|
|
|
.destroy = popup_destroy,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct sway_xdg_popup *popup_create(
|
|
|
|
struct wlr_xdg_popup *wlr_popup, struct sway_view *view);
|
|
|
|
|
|
|
|
static void popup_handle_new_popup(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_xdg_popup *popup =
|
|
|
|
wl_container_of(listener, popup, new_popup);
|
|
|
|
struct wlr_xdg_popup *wlr_popup = data;
|
|
|
|
popup_create(wlr_popup, popup->child.view);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void popup_handle_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_xdg_popup *popup = wl_container_of(listener, popup, destroy);
|
|
|
|
view_child_destroy(&popup->child);
|
|
|
|
}
|
|
|
|
|
2018-07-13 05:30:10 +10:00
|
|
|
static void popup_unconstrain(struct sway_xdg_popup *popup) {
|
|
|
|
struct sway_view *view = popup->child.view;
|
|
|
|
struct wlr_xdg_popup *wlr_popup = popup->wlr_xdg_surface->popup;
|
|
|
|
|
Implement type safe arguments and demote sway_container
This commit changes the meaning of sway_container so that it only refers
to layout containers and view containers. Workspaces, outputs and the
root are no longer known as containers. Instead, root, outputs,
workspaces and containers are all a type of node, and containers come in
two types: layout containers and view containers.
In addition to the above, this implements type safe variables. This
means we use specific types such as sway_output and sway_workspace
instead of generic containers or nodes. However, it's worth noting that
in a few places places (eg. seat focus and transactions) referring to
them in a generic way is unavoidable which is why we still use nodes in
some places.
If you want a TL;DR, look at node.h, as well as the struct definitions
for root, output, workspace and container. Note that sway_output now
contains a workspaces list, and workspaces now contain a tiling and
floating list, and containers now contain a pointer back to the
workspace.
There are now functions for seat_get_focused_workspace and
seat_get_focused_container. The latter will return NULL if a workspace
itself is focused. Most other seat functions like seat_get_focus and
seat_set_focus now accept and return nodes.
In the config->handler_context struct, current_container has been
replaced with three pointers: node, container and workspace. node is the
same as what current_container was, while workspace is the workspace
that the node resides on and container is the actual container, which
may be NULL if a workspace itself is focused.
The global root_container variable has been replaced with one simply
called root, which is a pointer to the sway_root instance.
The way outputs are created, enabled, disabled and destroyed has
changed. Previously we'd wrap the sway_output in a container when it is
enabled, but as we don't have containers any more it needs a different
approach. The output_create and output_destroy functions previously
created/destroyed the container, but now they create/destroy the
sway_output. There is a new function output_disable to disable an output
without destroying it.
Containers have a new view property. If this is populated then the
container is a view container, otherwise it's a layout container. Like
before, this property is immutable for the life of the container.
Containers have both a `sway_container *parent` and
`sway_workspace *workspace`. As we use specific types now, parent cannot
point to a workspace so it'll be NULL for containers which are direct
children of the workspace. The workspace property is set for all
containers, except those which are hidden in the scratchpad as they have
no workspace.
In some cases we need to refer to workspaces in a container-like way.
For example, workspaces have layout and children, but when using
specific types this makes it difficult. Likewise, it's difficult for a
container to get its parent's layout when the parent could be another
container or a workspace. To make it easier, some helper functions have
been created: container_parent_layout and container_get_siblings.
container_remove_child has been renamed to container_detach and
container_replace_child has been renamed to container_replace.
`container_handle_fullscreen_reparent(con, old_parent)` has had the
old_parent removed. We now unfullscreen the workspace when detaching the
container, so this function is simplified and only needs one argument
now.
container_notify_subtree_changed has been renamed to
container_update_representation. This is more descriptive of its
purpose. I also wanted to be able to call it with whatever container was
changed rather than the container's parent, which makes bubbling up to
the workspace easier.
There are now state structs per node thing. ie. sway_output_state,
sway_workspace_state and sway_container_state.
The focus, move and layout commands have been completely refactored to
work with the specific types. I considered making these a separate PR,
but I'd be backporting my changes only to replace them again, and it's
easier just to test everything at once.
2018-08-30 21:00:10 +10:00
|
|
|
struct sway_output *output = view->container->workspace->output;
|
2018-07-13 05:30:10 +10:00
|
|
|
|
|
|
|
// the output box expressed in the coordinate system of the toplevel parent
|
|
|
|
// of the popup
|
|
|
|
struct wlr_box output_toplevel_sx_box = {
|
Move view {x,y,width,height} into container struct
This renames/moves the following properties:
* sway_view.{x,y,width,height} ->
sway_container.content_{x,y,width,height}
* This is required to support placeholder containers as they don't
have a view.
* sway_container_state.view_{x,y,width,height} ->
sway_container_state.content_{x,y,width,height}
* To remain consistent with the above.
* sway_container_state.con_{x,y,width,height} ->
sway_container_state.{x,y,width,height}
* The con prefix was there to give it contrast from the view
properties, and is no longer useful.
The function container_set_geometry_from_floating_view has also been
renamed to container_set_geometry_from_content.
2018-11-17 19:32:03 +11:00
|
|
|
.x = output->lx - view->container->content_x,
|
|
|
|
.y = output->ly - view->container->content_y,
|
2018-08-30 21:20:31 +10:00
|
|
|
.width = output->width,
|
|
|
|
.height = output->height,
|
2018-07-13 05:30:10 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
wlr_xdg_popup_unconstrain_from_box(wlr_popup, &output_toplevel_sx_box);
|
|
|
|
}
|
|
|
|
|
2018-05-14 01:38:56 +10:00
|
|
|
static struct sway_xdg_popup *popup_create(
|
|
|
|
struct wlr_xdg_popup *wlr_popup, struct sway_view *view) {
|
|
|
|
struct wlr_xdg_surface *xdg_surface = wlr_popup->base;
|
|
|
|
|
|
|
|
struct sway_xdg_popup *popup =
|
|
|
|
calloc(1, sizeof(struct sway_xdg_popup));
|
|
|
|
if (popup == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
view_child_init(&popup->child, &popup_impl, view, xdg_surface->surface);
|
2018-07-13 05:30:10 +10:00
|
|
|
popup->wlr_xdg_surface = xdg_surface;
|
2018-05-14 01:38:56 +10:00
|
|
|
|
|
|
|
wl_signal_add(&xdg_surface->events.new_popup, &popup->new_popup);
|
|
|
|
popup->new_popup.notify = popup_handle_new_popup;
|
|
|
|
wl_signal_add(&xdg_surface->events.destroy, &popup->destroy);
|
|
|
|
popup->destroy.notify = popup_handle_destroy;
|
|
|
|
|
2018-10-06 14:49:33 +10:00
|
|
|
wl_signal_add(&xdg_surface->events.map, &popup->child.surface_map);
|
|
|
|
wl_signal_add(&xdg_surface->events.unmap, &popup->child.surface_unmap);
|
|
|
|
|
2018-07-13 05:30:10 +10:00
|
|
|
popup_unconstrain(popup);
|
|
|
|
|
2018-05-14 01:38:56 +10:00
|
|
|
return popup;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct sway_xdg_shell_view *xdg_shell_view_from_view(
|
|
|
|
struct sway_view *view) {
|
|
|
|
if (!sway_assert(view->type == SWAY_VIEW_XDG_SHELL,
|
|
|
|
"Expected xdg_shell view")) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return (struct sway_xdg_shell_view *)view;
|
|
|
|
}
|
|
|
|
|
2018-07-21 12:13:00 +10:00
|
|
|
static void get_constraints(struct sway_view *view, double *min_width,
|
|
|
|
double *max_width, double *min_height, double *max_height) {
|
|
|
|
struct wlr_xdg_toplevel_state *state =
|
|
|
|
&view->wlr_xdg_surface->toplevel->current;
|
|
|
|
*min_width = state->min_width > 0 ? state->min_width : DBL_MIN;
|
|
|
|
*max_width = state->max_width > 0 ? state->max_width : DBL_MAX;
|
|
|
|
*min_height = state->min_height > 0 ? state->min_height : DBL_MIN;
|
|
|
|
*max_height = state->max_height > 0 ? state->max_height : DBL_MAX;
|
|
|
|
}
|
|
|
|
|
2018-07-03 08:06:44 +10:00
|
|
|
static const char *get_string_prop(struct sway_view *view,
|
|
|
|
enum sway_view_prop prop) {
|
2018-05-14 01:38:56 +10:00
|
|
|
if (xdg_shell_view_from_view(view) == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
switch (prop) {
|
|
|
|
case VIEW_PROP_TITLE:
|
|
|
|
return view->wlr_xdg_surface->toplevel->title;
|
|
|
|
case VIEW_PROP_APP_ID:
|
|
|
|
return view->wlr_xdg_surface->toplevel->app_id;
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-03 16:35:06 +10:00
|
|
|
static uint32_t configure(struct sway_view *view, double lx, double ly,
|
|
|
|
int width, int height) {
|
2018-05-14 01:38:56 +10:00
|
|
|
struct sway_xdg_shell_view *xdg_shell_view =
|
|
|
|
xdg_shell_view_from_view(view);
|
|
|
|
if (xdg_shell_view == NULL) {
|
2018-06-03 16:35:06 +10:00
|
|
|
return 0;
|
2018-05-14 01:38:56 +10:00
|
|
|
}
|
2018-06-03 16:35:06 +10:00
|
|
|
return wlr_xdg_toplevel_set_size(view->wlr_xdg_surface, width, height);
|
2018-05-14 01:38:56 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
static void set_activated(struct sway_view *view, bool activated) {
|
|
|
|
if (xdg_shell_view_from_view(view) == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct wlr_xdg_surface *surface = view->wlr_xdg_surface;
|
|
|
|
if (surface->role == WLR_XDG_SURFACE_ROLE_TOPLEVEL) {
|
|
|
|
wlr_xdg_toplevel_set_activated(surface, activated);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-28 02:53:13 +10:00
|
|
|
static void set_tiled(struct sway_view *view, bool tiled) {
|
|
|
|
if (xdg_shell_view_from_view(view) == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct wlr_xdg_surface *surface = view->wlr_xdg_surface;
|
|
|
|
enum wlr_edges edges = WLR_EDGE_NONE;
|
|
|
|
if (tiled) {
|
|
|
|
edges = WLR_EDGE_LEFT | WLR_EDGE_RIGHT | WLR_EDGE_TOP |
|
|
|
|
WLR_EDGE_BOTTOM;
|
|
|
|
}
|
|
|
|
wlr_xdg_toplevel_set_tiled(surface, edges);
|
|
|
|
}
|
|
|
|
|
2018-05-14 01:38:56 +10:00
|
|
|
static void set_fullscreen(struct sway_view *view, bool fullscreen) {
|
|
|
|
if (xdg_shell_view_from_view(view) == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct wlr_xdg_surface *surface = view->wlr_xdg_surface;
|
|
|
|
wlr_xdg_toplevel_set_fullscreen(surface, fullscreen);
|
|
|
|
}
|
|
|
|
|
2018-05-24 22:30:44 +10:00
|
|
|
static bool wants_floating(struct sway_view *view) {
|
2018-06-26 12:59:06 +10:00
|
|
|
struct wlr_xdg_toplevel *toplevel = view->wlr_xdg_surface->toplevel;
|
|
|
|
struct wlr_xdg_toplevel_state *state = &toplevel->current;
|
|
|
|
return (state->min_width != 0 && state->min_height != 0
|
2018-09-06 23:57:57 +10:00
|
|
|
&& (state->min_width == state->max_width
|
|
|
|
|| state->min_height == state->max_height))
|
2018-06-26 12:59:06 +10:00
|
|
|
|| toplevel->parent;
|
2018-05-24 22:30:44 +10:00
|
|
|
}
|
|
|
|
|
2018-05-14 01:38:56 +10:00
|
|
|
static void for_each_surface(struct sway_view *view,
|
|
|
|
wlr_surface_iterator_func_t iterator, void *user_data) {
|
|
|
|
if (xdg_shell_view_from_view(view) == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
wlr_xdg_surface_for_each_surface(view->wlr_xdg_surface, iterator,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
|
2018-08-02 23:30:26 +10:00
|
|
|
static void for_each_popup(struct sway_view *view,
|
|
|
|
wlr_surface_iterator_func_t iterator, void *user_data) {
|
|
|
|
if (xdg_shell_view_from_view(view) == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
wlr_xdg_surface_for_each_popup(view->wlr_xdg_surface, iterator, user_data);
|
|
|
|
}
|
|
|
|
|
2018-10-07 21:40:05 +11:00
|
|
|
static bool is_transient_for(struct sway_view *child,
|
|
|
|
struct sway_view *ancestor) {
|
|
|
|
if (xdg_shell_view_from_view(child) == NULL) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
struct wlr_xdg_surface *surface = child->wlr_xdg_surface;
|
2018-12-22 09:25:07 +11:00
|
|
|
while (surface && surface->role == WLR_XDG_SURFACE_ROLE_TOPLEVEL) {
|
2018-10-07 21:40:05 +11:00
|
|
|
if (surface->toplevel->parent == ancestor->wlr_xdg_surface) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
surface = surface->toplevel->parent;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-05-14 01:38:56 +10:00
|
|
|
static void _close(struct sway_view *view) {
|
|
|
|
if (xdg_shell_view_from_view(view) == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct wlr_xdg_surface *surface = view->wlr_xdg_surface;
|
2019-01-15 04:53:33 +11:00
|
|
|
if (surface->role == WLR_XDG_SURFACE_ROLE_TOPLEVEL
|
|
|
|
&& surface->toplevel) {
|
|
|
|
wlr_xdg_toplevel_send_close(surface);
|
2018-05-14 01:38:56 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-31 19:58:34 +10:00
|
|
|
static void close_popups(struct sway_view *view) {
|
2019-02-06 05:07:01 +11:00
|
|
|
struct wlr_xdg_popup *popup, *tmp;
|
|
|
|
wl_list_for_each_safe(popup, tmp, &view->wlr_xdg_surface->popups, link) {
|
|
|
|
wlr_xdg_popup_destroy(popup->base);
|
|
|
|
}
|
2018-07-31 19:58:34 +10:00
|
|
|
}
|
|
|
|
|
2018-06-26 13:18:33 +10:00
|
|
|
static void destroy(struct sway_view *view) {
|
2018-05-14 01:38:56 +10:00
|
|
|
struct sway_xdg_shell_view *xdg_shell_view =
|
|
|
|
xdg_shell_view_from_view(view);
|
|
|
|
if (xdg_shell_view == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
free(xdg_shell_view);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct sway_view_impl view_impl = {
|
2018-07-21 12:13:00 +10:00
|
|
|
.get_constraints = get_constraints,
|
2018-05-14 11:47:39 +10:00
|
|
|
.get_string_prop = get_string_prop,
|
2018-05-14 01:38:56 +10:00
|
|
|
.configure = configure,
|
|
|
|
.set_activated = set_activated,
|
2018-06-28 02:53:13 +10:00
|
|
|
.set_tiled = set_tiled,
|
2018-05-14 01:38:56 +10:00
|
|
|
.set_fullscreen = set_fullscreen,
|
2018-05-24 22:30:44 +10:00
|
|
|
.wants_floating = wants_floating,
|
2018-05-14 01:38:56 +10:00
|
|
|
.for_each_surface = for_each_surface,
|
2018-08-02 23:30:26 +10:00
|
|
|
.for_each_popup = for_each_popup,
|
2018-10-07 21:40:05 +11:00
|
|
|
.is_transient_for = is_transient_for,
|
2018-05-14 01:38:56 +10:00
|
|
|
.close = _close,
|
2018-07-31 19:58:34 +10:00
|
|
|
.close_popups = close_popups,
|
2018-06-26 13:18:33 +10:00
|
|
|
.destroy = destroy,
|
2018-05-14 01:38:56 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
static void handle_commit(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_xdg_shell_view *xdg_shell_view =
|
|
|
|
wl_container_of(listener, xdg_shell_view, commit);
|
|
|
|
struct sway_view *view = &xdg_shell_view->view;
|
2018-06-03 16:35:06 +10:00
|
|
|
struct wlr_xdg_surface *xdg_surface = view->wlr_xdg_surface;
|
|
|
|
|
Implement type safe arguments and demote sway_container
This commit changes the meaning of sway_container so that it only refers
to layout containers and view containers. Workspaces, outputs and the
root are no longer known as containers. Instead, root, outputs,
workspaces and containers are all a type of node, and containers come in
two types: layout containers and view containers.
In addition to the above, this implements type safe variables. This
means we use specific types such as sway_output and sway_workspace
instead of generic containers or nodes. However, it's worth noting that
in a few places places (eg. seat focus and transactions) referring to
them in a generic way is unavoidable which is why we still use nodes in
some places.
If you want a TL;DR, look at node.h, as well as the struct definitions
for root, output, workspace and container. Note that sway_output now
contains a workspaces list, and workspaces now contain a tiling and
floating list, and containers now contain a pointer back to the
workspace.
There are now functions for seat_get_focused_workspace and
seat_get_focused_container. The latter will return NULL if a workspace
itself is focused. Most other seat functions like seat_get_focus and
seat_set_focus now accept and return nodes.
In the config->handler_context struct, current_container has been
replaced with three pointers: node, container and workspace. node is the
same as what current_container was, while workspace is the workspace
that the node resides on and container is the actual container, which
may be NULL if a workspace itself is focused.
The global root_container variable has been replaced with one simply
called root, which is a pointer to the sway_root instance.
The way outputs are created, enabled, disabled and destroyed has
changed. Previously we'd wrap the sway_output in a container when it is
enabled, but as we don't have containers any more it needs a different
approach. The output_create and output_destroy functions previously
created/destroyed the container, but now they create/destroy the
sway_output. There is a new function output_disable to disable an output
without destroying it.
Containers have a new view property. If this is populated then the
container is a view container, otherwise it's a layout container. Like
before, this property is immutable for the life of the container.
Containers have both a `sway_container *parent` and
`sway_workspace *workspace`. As we use specific types now, parent cannot
point to a workspace so it'll be NULL for containers which are direct
children of the workspace. The workspace property is set for all
containers, except those which are hidden in the scratchpad as they have
no workspace.
In some cases we need to refer to workspaces in a container-like way.
For example, workspaces have layout and children, but when using
specific types this makes it difficult. Likewise, it's difficult for a
container to get its parent's layout when the parent could be another
container or a workspace. To make it easier, some helper functions have
been created: container_parent_layout and container_get_siblings.
container_remove_child has been renamed to container_detach and
container_replace_child has been renamed to container_replace.
`container_handle_fullscreen_reparent(con, old_parent)` has had the
old_parent removed. We now unfullscreen the workspace when detaching the
container, so this function is simplified and only needs one argument
now.
container_notify_subtree_changed has been renamed to
container_update_representation. This is more descriptive of its
purpose. I also wanted to be able to call it with whatever container was
changed rather than the container's parent, which makes bubbling up to
the workspace easier.
There are now state structs per node thing. ie. sway_output_state,
sway_workspace_state and sway_container_state.
The focus, move and layout commands have been completely refactored to
work with the specific types. I considered making these a separate PR,
but I'd be backporting my changes only to replace them again, and it's
easier just to test everything at once.
2018-08-30 21:00:10 +10:00
|
|
|
if (view->container->node.instruction) {
|
2018-08-18 15:10:06 +10:00
|
|
|
wlr_xdg_surface_get_geometry(xdg_surface, &view->geometry);
|
2018-08-15 10:03:55 +10:00
|
|
|
transaction_notify_view_ready_by_serial(view,
|
|
|
|
xdg_surface->configure_serial);
|
2018-08-18 15:10:06 +10:00
|
|
|
} else {
|
|
|
|
struct wlr_box new_geo;
|
|
|
|
wlr_xdg_surface_get_geometry(xdg_surface, &new_geo);
|
|
|
|
|
2020-06-03 22:39:12 +10:00
|
|
|
if ((new_geo.width != view->geometry.width ||
|
2020-06-03 22:51:29 +10:00
|
|
|
new_geo.height != view->geometry.height ||
|
|
|
|
new_geo.x != view->geometry.x ||
|
|
|
|
new_geo.y != view->geometry.y)) {
|
2019-01-28 17:00:34 +11:00
|
|
|
// The view has unexpectedly sent a new size
|
2018-08-18 15:10:06 +10:00
|
|
|
desktop_damage_view(view);
|
|
|
|
view_update_size(view, new_geo.width, new_geo.height);
|
|
|
|
memcpy(&view->geometry, &new_geo, sizeof(struct wlr_box));
|
|
|
|
desktop_damage_view(view);
|
|
|
|
transaction_commit_dirty();
|
2020-06-29 03:05:04 +10:00
|
|
|
transaction_notify_view_ready_by_size(view,
|
|
|
|
new_geo.width, new_geo.height);
|
2018-08-18 15:10:06 +10:00
|
|
|
} else {
|
|
|
|
memcpy(&view->geometry, &new_geo, sizeof(struct wlr_box));
|
|
|
|
}
|
2018-05-24 22:30:44 +10:00
|
|
|
}
|
2018-06-03 16:35:06 +10:00
|
|
|
|
2018-05-14 01:38:56 +10:00
|
|
|
view_damage_from(view);
|
|
|
|
}
|
|
|
|
|
2018-07-23 07:20:07 +10:00
|
|
|
static void handle_set_title(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_xdg_shell_view *xdg_shell_view =
|
|
|
|
wl_container_of(listener, xdg_shell_view, set_title);
|
|
|
|
struct sway_view *view = &xdg_shell_view->view;
|
|
|
|
view_update_title(view, false);
|
|
|
|
view_execute_criteria(view);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_set_app_id(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_xdg_shell_view *xdg_shell_view =
|
|
|
|
wl_container_of(listener, xdg_shell_view, set_app_id);
|
|
|
|
struct sway_view *view = &xdg_shell_view->view;
|
|
|
|
view_execute_criteria(view);
|
|
|
|
}
|
|
|
|
|
2018-05-14 01:38:56 +10:00
|
|
|
static void handle_new_popup(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_xdg_shell_view *xdg_shell_view =
|
|
|
|
wl_container_of(listener, xdg_shell_view, new_popup);
|
|
|
|
struct wlr_xdg_popup *wlr_popup = data;
|
|
|
|
popup_create(wlr_popup, &xdg_shell_view->view);
|
|
|
|
}
|
|
|
|
|
2018-06-25 08:17:01 +10:00
|
|
|
static void handle_request_fullscreen(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_xdg_shell_view *xdg_shell_view =
|
|
|
|
wl_container_of(listener, xdg_shell_view, request_fullscreen);
|
|
|
|
struct wlr_xdg_toplevel_set_fullscreen_event *e = data;
|
|
|
|
struct wlr_xdg_surface *xdg_surface =
|
|
|
|
xdg_shell_view->view.wlr_xdg_surface;
|
|
|
|
struct sway_view *view = &xdg_shell_view->view;
|
|
|
|
|
|
|
|
if (!sway_assert(xdg_surface->role == WLR_XDG_SURFACE_ROLE_TOPLEVEL,
|
|
|
|
"xdg_shell requested fullscreen of surface with role %i",
|
|
|
|
xdg_surface->role)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!xdg_surface->mapped) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-25 14:24:02 +11:00
|
|
|
if (e->fullscreen && e->output && e->output->data) {
|
|
|
|
struct sway_output *output = e->output->data;
|
|
|
|
struct sway_workspace *ws = output_get_active_workspace(output);
|
|
|
|
if (ws && !container_is_scratchpad_hidden(view->container)) {
|
|
|
|
if (container_is_floating(view->container)) {
|
|
|
|
workspace_add_floating(ws, view->container);
|
|
|
|
} else {
|
|
|
|
workspace_add_tiling(ws, view->container);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Implement type safe arguments and demote sway_container
This commit changes the meaning of sway_container so that it only refers
to layout containers and view containers. Workspaces, outputs and the
root are no longer known as containers. Instead, root, outputs,
workspaces and containers are all a type of node, and containers come in
two types: layout containers and view containers.
In addition to the above, this implements type safe variables. This
means we use specific types such as sway_output and sway_workspace
instead of generic containers or nodes. However, it's worth noting that
in a few places places (eg. seat focus and transactions) referring to
them in a generic way is unavoidable which is why we still use nodes in
some places.
If you want a TL;DR, look at node.h, as well as the struct definitions
for root, output, workspace and container. Note that sway_output now
contains a workspaces list, and workspaces now contain a tiling and
floating list, and containers now contain a pointer back to the
workspace.
There are now functions for seat_get_focused_workspace and
seat_get_focused_container. The latter will return NULL if a workspace
itself is focused. Most other seat functions like seat_get_focus and
seat_set_focus now accept and return nodes.
In the config->handler_context struct, current_container has been
replaced with three pointers: node, container and workspace. node is the
same as what current_container was, while workspace is the workspace
that the node resides on and container is the actual container, which
may be NULL if a workspace itself is focused.
The global root_container variable has been replaced with one simply
called root, which is a pointer to the sway_root instance.
The way outputs are created, enabled, disabled and destroyed has
changed. Previously we'd wrap the sway_output in a container when it is
enabled, but as we don't have containers any more it needs a different
approach. The output_create and output_destroy functions previously
created/destroyed the container, but now they create/destroy the
sway_output. There is a new function output_disable to disable an output
without destroying it.
Containers have a new view property. If this is populated then the
container is a view container, otherwise it's a layout container. Like
before, this property is immutable for the life of the container.
Containers have both a `sway_container *parent` and
`sway_workspace *workspace`. As we use specific types now, parent cannot
point to a workspace so it'll be NULL for containers which are direct
children of the workspace. The workspace property is set for all
containers, except those which are hidden in the scratchpad as they have
no workspace.
In some cases we need to refer to workspaces in a container-like way.
For example, workspaces have layout and children, but when using
specific types this makes it difficult. Likewise, it's difficult for a
container to get its parent's layout when the parent could be another
container or a workspace. To make it easier, some helper functions have
been created: container_parent_layout and container_get_siblings.
container_remove_child has been renamed to container_detach and
container_replace_child has been renamed to container_replace.
`container_handle_fullscreen_reparent(con, old_parent)` has had the
old_parent removed. We now unfullscreen the workspace when detaching the
container, so this function is simplified and only needs one argument
now.
container_notify_subtree_changed has been renamed to
container_update_representation. This is more descriptive of its
purpose. I also wanted to be able to call it with whatever container was
changed rather than the container's parent, which makes bubbling up to
the workspace easier.
There are now state structs per node thing. ie. sway_output_state,
sway_workspace_state and sway_container_state.
The focus, move and layout commands have been completely refactored to
work with the specific types. I considered making these a separate PR,
but I'd be backporting my changes only to replace them again, and it's
easier just to test everything at once.
2018-08-30 21:00:10 +10:00
|
|
|
container_set_fullscreen(view->container, e->fullscreen);
|
2018-06-25 08:17:01 +10:00
|
|
|
|
2019-01-25 09:29:21 +11:00
|
|
|
arrange_root();
|
2018-07-14 23:14:55 +10:00
|
|
|
transaction_commit_dirty();
|
2018-06-25 08:17:01 +10:00
|
|
|
}
|
|
|
|
|
2018-07-20 09:28:22 +10:00
|
|
|
static void handle_request_move(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_xdg_shell_view *xdg_shell_view =
|
|
|
|
wl_container_of(listener, xdg_shell_view, request_move);
|
|
|
|
struct sway_view *view = &xdg_shell_view->view;
|
Implement type safe arguments and demote sway_container
This commit changes the meaning of sway_container so that it only refers
to layout containers and view containers. Workspaces, outputs and the
root are no longer known as containers. Instead, root, outputs,
workspaces and containers are all a type of node, and containers come in
two types: layout containers and view containers.
In addition to the above, this implements type safe variables. This
means we use specific types such as sway_output and sway_workspace
instead of generic containers or nodes. However, it's worth noting that
in a few places places (eg. seat focus and transactions) referring to
them in a generic way is unavoidable which is why we still use nodes in
some places.
If you want a TL;DR, look at node.h, as well as the struct definitions
for root, output, workspace and container. Note that sway_output now
contains a workspaces list, and workspaces now contain a tiling and
floating list, and containers now contain a pointer back to the
workspace.
There are now functions for seat_get_focused_workspace and
seat_get_focused_container. The latter will return NULL if a workspace
itself is focused. Most other seat functions like seat_get_focus and
seat_set_focus now accept and return nodes.
In the config->handler_context struct, current_container has been
replaced with three pointers: node, container and workspace. node is the
same as what current_container was, while workspace is the workspace
that the node resides on and container is the actual container, which
may be NULL if a workspace itself is focused.
The global root_container variable has been replaced with one simply
called root, which is a pointer to the sway_root instance.
The way outputs are created, enabled, disabled and destroyed has
changed. Previously we'd wrap the sway_output in a container when it is
enabled, but as we don't have containers any more it needs a different
approach. The output_create and output_destroy functions previously
created/destroyed the container, but now they create/destroy the
sway_output. There is a new function output_disable to disable an output
without destroying it.
Containers have a new view property. If this is populated then the
container is a view container, otherwise it's a layout container. Like
before, this property is immutable for the life of the container.
Containers have both a `sway_container *parent` and
`sway_workspace *workspace`. As we use specific types now, parent cannot
point to a workspace so it'll be NULL for containers which are direct
children of the workspace. The workspace property is set for all
containers, except those which are hidden in the scratchpad as they have
no workspace.
In some cases we need to refer to workspaces in a container-like way.
For example, workspaces have layout and children, but when using
specific types this makes it difficult. Likewise, it's difficult for a
container to get its parent's layout when the parent could be another
container or a workspace. To make it easier, some helper functions have
been created: container_parent_layout and container_get_siblings.
container_remove_child has been renamed to container_detach and
container_replace_child has been renamed to container_replace.
`container_handle_fullscreen_reparent(con, old_parent)` has had the
old_parent removed. We now unfullscreen the workspace when detaching the
container, so this function is simplified and only needs one argument
now.
container_notify_subtree_changed has been renamed to
container_update_representation. This is more descriptive of its
purpose. I also wanted to be able to call it with whatever container was
changed rather than the container's parent, which makes bubbling up to
the workspace easier.
There are now state structs per node thing. ie. sway_output_state,
sway_workspace_state and sway_container_state.
The focus, move and layout commands have been completely refactored to
work with the specific types. I considered making these a separate PR,
but I'd be backporting my changes only to replace them again, and it's
easier just to test everything at once.
2018-08-30 21:00:10 +10:00
|
|
|
if (!container_is_floating(view->container)) {
|
2018-07-22 21:45:01 +10:00
|
|
|
return;
|
|
|
|
}
|
2018-07-20 09:28:22 +10:00
|
|
|
struct wlr_xdg_toplevel_move_event *e = data;
|
|
|
|
struct sway_seat *seat = e->seat->seat->data;
|
2018-07-21 11:23:48 +10:00
|
|
|
if (e->serial == seat->last_button_serial) {
|
Introduce default seatop
This introduces a `default` seat operation which is used when no mouse
buttons are being held. This means there is now always a seat operation
in progress. It allows us to separate `default` code from the standard
cursor management code.
The sway_seatop_impl struct has gained callbacks `axis`, `rebase` and
`end`, and lost callbacks `finish` and `abort`. `axis` and `rebase` are
only used by the default seatop. `end` is called when a seatop is being
replaced by another one and allows the seatop to free any resources,
though no seatop currently needs to do this. `finish` is no longer
required, as each seatop can gracefully finish in their `button`
callback. And `abort` is not needed, as calling `end` would achieve the
same thing. The struct has also gained a bool named allow_set_cursor
which allows the client to set a new cursor during `default` and `down`
seatops.
Seatops would previously store which button they were started with and
stop when that button was released. This behaviour is changed so that it
only ends once all buttons are released. So you can start a drag with
$mod+left, then click and hold right, release left and it'll continue
dragging while the right button is held.
The motion callback now accepts dx and dy. Most seatops don't use this
as they store the cursor position when the seatop is started and compare
it with the current cursor position. This approach doesn't make sense
for the default seatop though, hence why dx and dy are needed.
The pressed_buttons array has been moved from the sway_cursor struct to
the default seatop's data. This is only used for the default seatop to
check bindings. The total pressed button count remains in the
sway_cursor struct though, because all the other seatops check it to
know if they should end.
The `down` seatop no longer has a `moved` property. This was used to
track if the cursor moved and to recheck focus_follows_mouse, but seems
to work without it.
The logic for focus_follows_mouse has been refactored. As part of this
I've removed the call to wlr_seat_keyboard_has_grab as we don't appear
to use keyboard grabs.
The functions for handling relative motion, absolute motion and tool
axis have been changed. Previously the handler functions were
handle_cursor_motion, handle_cursor_motion_absolute and
handle_tool_axis. The latter two both called cursor_motion_absolute.
Both handle_cursor_motion and cursor_motion_absolute did very similar
things. These are now simplified into three handlers and a single common
function called cursor_motion. All three handlers call cursor_motion. As
cursor_motion works with relative distances, the absolute and tool axis
handlers convert them to relative first.
2019-03-16 18:47:39 +11:00
|
|
|
seatop_begin_move_floating(seat, view->container);
|
2018-07-21 11:23:48 +10:00
|
|
|
}
|
2018-07-20 09:28:22 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_request_resize(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_xdg_shell_view *xdg_shell_view =
|
|
|
|
wl_container_of(listener, xdg_shell_view, request_resize);
|
|
|
|
struct sway_view *view = &xdg_shell_view->view;
|
Implement type safe arguments and demote sway_container
This commit changes the meaning of sway_container so that it only refers
to layout containers and view containers. Workspaces, outputs and the
root are no longer known as containers. Instead, root, outputs,
workspaces and containers are all a type of node, and containers come in
two types: layout containers and view containers.
In addition to the above, this implements type safe variables. This
means we use specific types such as sway_output and sway_workspace
instead of generic containers or nodes. However, it's worth noting that
in a few places places (eg. seat focus and transactions) referring to
them in a generic way is unavoidable which is why we still use nodes in
some places.
If you want a TL;DR, look at node.h, as well as the struct definitions
for root, output, workspace and container. Note that sway_output now
contains a workspaces list, and workspaces now contain a tiling and
floating list, and containers now contain a pointer back to the
workspace.
There are now functions for seat_get_focused_workspace and
seat_get_focused_container. The latter will return NULL if a workspace
itself is focused. Most other seat functions like seat_get_focus and
seat_set_focus now accept and return nodes.
In the config->handler_context struct, current_container has been
replaced with three pointers: node, container and workspace. node is the
same as what current_container was, while workspace is the workspace
that the node resides on and container is the actual container, which
may be NULL if a workspace itself is focused.
The global root_container variable has been replaced with one simply
called root, which is a pointer to the sway_root instance.
The way outputs are created, enabled, disabled and destroyed has
changed. Previously we'd wrap the sway_output in a container when it is
enabled, but as we don't have containers any more it needs a different
approach. The output_create and output_destroy functions previously
created/destroyed the container, but now they create/destroy the
sway_output. There is a new function output_disable to disable an output
without destroying it.
Containers have a new view property. If this is populated then the
container is a view container, otherwise it's a layout container. Like
before, this property is immutable for the life of the container.
Containers have both a `sway_container *parent` and
`sway_workspace *workspace`. As we use specific types now, parent cannot
point to a workspace so it'll be NULL for containers which are direct
children of the workspace. The workspace property is set for all
containers, except those which are hidden in the scratchpad as they have
no workspace.
In some cases we need to refer to workspaces in a container-like way.
For example, workspaces have layout and children, but when using
specific types this makes it difficult. Likewise, it's difficult for a
container to get its parent's layout when the parent could be another
container or a workspace. To make it easier, some helper functions have
been created: container_parent_layout and container_get_siblings.
container_remove_child has been renamed to container_detach and
container_replace_child has been renamed to container_replace.
`container_handle_fullscreen_reparent(con, old_parent)` has had the
old_parent removed. We now unfullscreen the workspace when detaching the
container, so this function is simplified and only needs one argument
now.
container_notify_subtree_changed has been renamed to
container_update_representation. This is more descriptive of its
purpose. I also wanted to be able to call it with whatever container was
changed rather than the container's parent, which makes bubbling up to
the workspace easier.
There are now state structs per node thing. ie. sway_output_state,
sway_workspace_state and sway_container_state.
The focus, move and layout commands have been completely refactored to
work with the specific types. I considered making these a separate PR,
but I'd be backporting my changes only to replace them again, and it's
easier just to test everything at once.
2018-08-30 21:00:10 +10:00
|
|
|
if (!container_is_floating(view->container)) {
|
2018-07-22 21:45:01 +10:00
|
|
|
return;
|
|
|
|
}
|
2018-07-20 09:28:22 +10:00
|
|
|
struct wlr_xdg_toplevel_resize_event *e = data;
|
|
|
|
struct sway_seat *seat = e->seat->seat->data;
|
2018-07-21 11:23:48 +10:00
|
|
|
if (e->serial == seat->last_button_serial) {
|
Introduce default seatop
This introduces a `default` seat operation which is used when no mouse
buttons are being held. This means there is now always a seat operation
in progress. It allows us to separate `default` code from the standard
cursor management code.
The sway_seatop_impl struct has gained callbacks `axis`, `rebase` and
`end`, and lost callbacks `finish` and `abort`. `axis` and `rebase` are
only used by the default seatop. `end` is called when a seatop is being
replaced by another one and allows the seatop to free any resources,
though no seatop currently needs to do this. `finish` is no longer
required, as each seatop can gracefully finish in their `button`
callback. And `abort` is not needed, as calling `end` would achieve the
same thing. The struct has also gained a bool named allow_set_cursor
which allows the client to set a new cursor during `default` and `down`
seatops.
Seatops would previously store which button they were started with and
stop when that button was released. This behaviour is changed so that it
only ends once all buttons are released. So you can start a drag with
$mod+left, then click and hold right, release left and it'll continue
dragging while the right button is held.
The motion callback now accepts dx and dy. Most seatops don't use this
as they store the cursor position when the seatop is started and compare
it with the current cursor position. This approach doesn't make sense
for the default seatop though, hence why dx and dy are needed.
The pressed_buttons array has been moved from the sway_cursor struct to
the default seatop's data. This is only used for the default seatop to
check bindings. The total pressed button count remains in the
sway_cursor struct though, because all the other seatops check it to
know if they should end.
The `down` seatop no longer has a `moved` property. This was used to
track if the cursor moved and to recheck focus_follows_mouse, but seems
to work without it.
The logic for focus_follows_mouse has been refactored. As part of this
I've removed the call to wlr_seat_keyboard_has_grab as we don't appear
to use keyboard grabs.
The functions for handling relative motion, absolute motion and tool
axis have been changed. Previously the handler functions were
handle_cursor_motion, handle_cursor_motion_absolute and
handle_tool_axis. The latter two both called cursor_motion_absolute.
Both handle_cursor_motion and cursor_motion_absolute did very similar
things. These are now simplified into three handlers and a single common
function called cursor_motion. All three handlers call cursor_motion. As
cursor_motion works with relative distances, the absolute and tool axis
handlers convert them to relative first.
2019-03-16 18:47:39 +11:00
|
|
|
seatop_begin_resize_floating(seat, view->container, e->edges);
|
2018-07-21 11:23:48 +10:00
|
|
|
}
|
2018-06-25 08:17:01 +10:00
|
|
|
}
|
|
|
|
|
2018-05-14 01:38:56 +10:00
|
|
|
static void handle_unmap(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_xdg_shell_view *xdg_shell_view =
|
|
|
|
wl_container_of(listener, xdg_shell_view, unmap);
|
2018-06-23 16:24:11 +10:00
|
|
|
struct sway_view *view = &xdg_shell_view->view;
|
|
|
|
|
|
|
|
if (!sway_assert(view->surface, "Cannot unmap unmapped view")) {
|
|
|
|
return;
|
|
|
|
}
|
2018-05-14 01:38:56 +10:00
|
|
|
|
2018-06-26 13:15:45 +10:00
|
|
|
view_unmap(view);
|
2018-05-14 01:38:56 +10:00
|
|
|
|
|
|
|
wl_list_remove(&xdg_shell_view->commit.link);
|
|
|
|
wl_list_remove(&xdg_shell_view->new_popup.link);
|
2018-06-25 08:17:01 +10:00
|
|
|
wl_list_remove(&xdg_shell_view->request_fullscreen.link);
|
2018-07-20 09:28:22 +10:00
|
|
|
wl_list_remove(&xdg_shell_view->request_move.link);
|
|
|
|
wl_list_remove(&xdg_shell_view->request_resize.link);
|
2018-07-23 07:20:07 +10:00
|
|
|
wl_list_remove(&xdg_shell_view->set_title.link);
|
|
|
|
wl_list_remove(&xdg_shell_view->set_app_id.link);
|
2018-05-14 01:38:56 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_map(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_xdg_shell_view *xdg_shell_view =
|
|
|
|
wl_container_of(listener, xdg_shell_view, map);
|
|
|
|
struct sway_view *view = &xdg_shell_view->view;
|
|
|
|
struct wlr_xdg_surface *xdg_surface = view->wlr_xdg_surface;
|
|
|
|
|
2018-05-30 10:22:35 +10:00
|
|
|
view->natural_width = view->wlr_xdg_surface->geometry.width;
|
|
|
|
view->natural_height = view->wlr_xdg_surface->geometry.height;
|
|
|
|
if (!view->natural_width && !view->natural_height) {
|
2018-07-01 23:46:02 +10:00
|
|
|
view->natural_width = view->wlr_xdg_surface->surface->current.width;
|
|
|
|
view->natural_height = view->wlr_xdg_surface->surface->current.height;
|
2018-05-30 10:22:35 +10:00
|
|
|
}
|
2018-06-06 22:57:34 +10:00
|
|
|
|
2018-10-14 06:01:02 +11:00
|
|
|
bool csd = false;
|
2018-09-24 20:54:57 +10:00
|
|
|
|
2018-09-27 23:00:10 +10:00
|
|
|
if (!view->xdg_decoration) {
|
|
|
|
struct sway_server_decoration *deco =
|
2018-10-14 06:01:02 +11:00
|
|
|
decoration_from_surface(xdg_surface->surface);
|
|
|
|
csd = !deco || deco->wlr_server_decoration->mode ==
|
2018-09-27 23:00:10 +10:00
|
|
|
WLR_SERVER_DECORATION_MANAGER_MODE_CLIENT;
|
2018-05-14 01:38:56 +10:00
|
|
|
|
2018-06-06 22:57:34 +10:00
|
|
|
}
|
2018-10-07 21:40:05 +11:00
|
|
|
|
2018-10-14 06:01:02 +11:00
|
|
|
view_map(view, view->wlr_xdg_surface->surface,
|
2019-03-25 14:24:02 +11:00
|
|
|
xdg_surface->toplevel->client_pending.fullscreen,
|
|
|
|
xdg_surface->toplevel->client_pending.fullscreen_output,
|
|
|
|
csd);
|
2018-10-14 06:01:02 +11:00
|
|
|
|
2018-10-26 00:30:09 +11:00
|
|
|
transaction_commit_dirty();
|
2018-06-06 22:57:34 +10:00
|
|
|
|
2018-05-14 01:38:56 +10:00
|
|
|
xdg_shell_view->commit.notify = handle_commit;
|
|
|
|
wl_signal_add(&xdg_surface->surface->events.commit,
|
|
|
|
&xdg_shell_view->commit);
|
|
|
|
|
|
|
|
xdg_shell_view->new_popup.notify = handle_new_popup;
|
|
|
|
wl_signal_add(&xdg_surface->events.new_popup,
|
|
|
|
&xdg_shell_view->new_popup);
|
2018-06-25 08:17:01 +10:00
|
|
|
|
|
|
|
xdg_shell_view->request_fullscreen.notify = handle_request_fullscreen;
|
|
|
|
wl_signal_add(&xdg_surface->toplevel->events.request_fullscreen,
|
|
|
|
&xdg_shell_view->request_fullscreen);
|
2018-07-20 09:28:22 +10:00
|
|
|
|
|
|
|
xdg_shell_view->request_move.notify = handle_request_move;
|
|
|
|
wl_signal_add(&xdg_surface->toplevel->events.request_move,
|
|
|
|
&xdg_shell_view->request_move);
|
|
|
|
|
|
|
|
xdg_shell_view->request_resize.notify = handle_request_resize;
|
|
|
|
wl_signal_add(&xdg_surface->toplevel->events.request_resize,
|
|
|
|
&xdg_shell_view->request_resize);
|
2018-07-23 07:20:07 +10:00
|
|
|
|
|
|
|
xdg_shell_view->set_title.notify = handle_set_title;
|
|
|
|
wl_signal_add(&xdg_surface->toplevel->events.set_title,
|
|
|
|
&xdg_shell_view->set_title);
|
|
|
|
|
|
|
|
xdg_shell_view->set_app_id.notify = handle_set_app_id;
|
|
|
|
wl_signal_add(&xdg_surface->toplevel->events.set_app_id,
|
|
|
|
&xdg_shell_view->set_app_id);
|
2018-05-14 01:38:56 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_xdg_shell_view *xdg_shell_view =
|
|
|
|
wl_container_of(listener, xdg_shell_view, destroy);
|
2018-06-23 16:24:11 +10:00
|
|
|
struct sway_view *view = &xdg_shell_view->view;
|
Implement type safe arguments and demote sway_container
This commit changes the meaning of sway_container so that it only refers
to layout containers and view containers. Workspaces, outputs and the
root are no longer known as containers. Instead, root, outputs,
workspaces and containers are all a type of node, and containers come in
two types: layout containers and view containers.
In addition to the above, this implements type safe variables. This
means we use specific types such as sway_output and sway_workspace
instead of generic containers or nodes. However, it's worth noting that
in a few places places (eg. seat focus and transactions) referring to
them in a generic way is unavoidable which is why we still use nodes in
some places.
If you want a TL;DR, look at node.h, as well as the struct definitions
for root, output, workspace and container. Note that sway_output now
contains a workspaces list, and workspaces now contain a tiling and
floating list, and containers now contain a pointer back to the
workspace.
There are now functions for seat_get_focused_workspace and
seat_get_focused_container. The latter will return NULL if a workspace
itself is focused. Most other seat functions like seat_get_focus and
seat_set_focus now accept and return nodes.
In the config->handler_context struct, current_container has been
replaced with three pointers: node, container and workspace. node is the
same as what current_container was, while workspace is the workspace
that the node resides on and container is the actual container, which
may be NULL if a workspace itself is focused.
The global root_container variable has been replaced with one simply
called root, which is a pointer to the sway_root instance.
The way outputs are created, enabled, disabled and destroyed has
changed. Previously we'd wrap the sway_output in a container when it is
enabled, but as we don't have containers any more it needs a different
approach. The output_create and output_destroy functions previously
created/destroyed the container, but now they create/destroy the
sway_output. There is a new function output_disable to disable an output
without destroying it.
Containers have a new view property. If this is populated then the
container is a view container, otherwise it's a layout container. Like
before, this property is immutable for the life of the container.
Containers have both a `sway_container *parent` and
`sway_workspace *workspace`. As we use specific types now, parent cannot
point to a workspace so it'll be NULL for containers which are direct
children of the workspace. The workspace property is set for all
containers, except those which are hidden in the scratchpad as they have
no workspace.
In some cases we need to refer to workspaces in a container-like way.
For example, workspaces have layout and children, but when using
specific types this makes it difficult. Likewise, it's difficult for a
container to get its parent's layout when the parent could be another
container or a workspace. To make it easier, some helper functions have
been created: container_parent_layout and container_get_siblings.
container_remove_child has been renamed to container_detach and
container_replace_child has been renamed to container_replace.
`container_handle_fullscreen_reparent(con, old_parent)` has had the
old_parent removed. We now unfullscreen the workspace when detaching the
container, so this function is simplified and only needs one argument
now.
container_notify_subtree_changed has been renamed to
container_update_representation. This is more descriptive of its
purpose. I also wanted to be able to call it with whatever container was
changed rather than the container's parent, which makes bubbling up to
the workspace easier.
There are now state structs per node thing. ie. sway_output_state,
sway_workspace_state and sway_container_state.
The focus, move and layout commands have been completely refactored to
work with the specific types. I considered making these a separate PR,
but I'd be backporting my changes only to replace them again, and it's
easier just to test everything at once.
2018-08-30 21:00:10 +10:00
|
|
|
if (!sway_assert(view->surface == NULL, "Tried to destroy a mapped view")) {
|
2018-06-23 16:24:11 +10:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
wl_list_remove(&xdg_shell_view->destroy.link);
|
|
|
|
wl_list_remove(&xdg_shell_view->map.link);
|
|
|
|
wl_list_remove(&xdg_shell_view->unmap.link);
|
|
|
|
view->wlr_xdg_surface = NULL;
|
2019-02-23 18:28:49 +11:00
|
|
|
if (view->xdg_decoration) {
|
|
|
|
view->xdg_decoration->view = NULL;
|
|
|
|
}
|
2018-08-20 15:54:30 +10:00
|
|
|
view_begin_destroy(view);
|
2018-05-14 01:38:56 +10:00
|
|
|
}
|
|
|
|
|
2018-06-30 15:00:24 +10:00
|
|
|
struct sway_view *view_from_wlr_xdg_surface(
|
|
|
|
struct wlr_xdg_surface *xdg_surface) {
|
|
|
|
return xdg_surface->data;
|
|
|
|
}
|
|
|
|
|
2018-05-14 01:38:56 +10:00
|
|
|
void handle_xdg_shell_surface(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_xdg_surface *xdg_surface = data;
|
|
|
|
|
|
|
|
if (xdg_surface->role == WLR_XDG_SURFACE_ROLE_POPUP) {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "New xdg_shell popup");
|
2018-05-14 01:38:56 +10:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "New xdg_shell toplevel title='%s' app_id='%s'",
|
2018-05-14 01:38:56 +10:00
|
|
|
xdg_surface->toplevel->title, xdg_surface->toplevel->app_id);
|
|
|
|
wlr_xdg_surface_ping(xdg_surface);
|
|
|
|
|
|
|
|
struct sway_xdg_shell_view *xdg_shell_view =
|
|
|
|
calloc(1, sizeof(struct sway_xdg_shell_view));
|
|
|
|
if (!sway_assert(xdg_shell_view, "Failed to allocate view")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
view_init(&xdg_shell_view->view, SWAY_VIEW_XDG_SHELL, &view_impl);
|
|
|
|
xdg_shell_view->view.wlr_xdg_surface = xdg_surface;
|
|
|
|
|
|
|
|
xdg_shell_view->map.notify = handle_map;
|
|
|
|
wl_signal_add(&xdg_surface->events.map, &xdg_shell_view->map);
|
|
|
|
|
|
|
|
xdg_shell_view->unmap.notify = handle_unmap;
|
|
|
|
wl_signal_add(&xdg_surface->events.unmap, &xdg_shell_view->unmap);
|
|
|
|
|
|
|
|
xdg_shell_view->destroy.notify = handle_destroy;
|
|
|
|
wl_signal_add(&xdg_surface->events.destroy, &xdg_shell_view->destroy);
|
|
|
|
|
2018-06-30 15:00:24 +10:00
|
|
|
xdg_surface->data = xdg_shell_view;
|
2018-05-14 01:38:56 +10:00
|
|
|
}
|