2018-05-05 12:36:50 +10:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
2018-04-01 07:49:40 +10:00
|
|
|
#include <stdlib.h>
|
2018-08-06 21:46:28 +10:00
|
|
|
#include <strings.h>
|
2019-07-28 06:02:56 +10:00
|
|
|
#include <wayland-server-core.h>
|
2018-04-30 21:24:13 +10:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
Correctly track saved surfaces during multiple transactions
Fixes #2364.
Suppose a view is 600px wide, and we tell it to resize to 601px during a
resize operation. We create a transaction, save the 600px buffer and
send the configure. This buffer is saved into the associated
instruction, and is rendered while we wait for the view to commit a
601px buffer.
Before the view commits the 601px buffer, suppose we tell it to resize
to 602px. The new transaction will also save the buffer, but it's still
the 600px buffer because we haven't received a new one yet.
Then suppose the view commits its original 601px buffer. This completes
the first transaction, so we apply the 601px width to the container.
There's still the second (now only) transaction remaining, so we render
the saved buffer from that. But this is still the 600px buffer, and we
believe it's 601px. Whoops.
The problem here is we can't stack buffers like this. So this commit
removes the saved buffer from the instructions, places it in the view
instead, and re-saves the latest buffer every time the view completes a
transaction and still has further pending transactions.
As saved buffers are now specific to views rather than instructions, the
functions for saving and removing the saved buffer have been moved to
view.c.
The calls to save and restore the buffer have been relocated to more
appropriate functions too, favouring transaction_commit and
transaction_apply rather than transaction_add_container and
transaction_destroy.
2018-08-01 16:23:11 +10:00
|
|
|
#include <wlr/types/wlr_buffer.h>
|
2018-02-26 09:23:36 +11:00
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
2018-09-24 20:54:57 +10:00
|
|
|
#include <wlr/types/wlr_server_decoration.h>
|
|
|
|
#include <wlr/types/wlr_xdg_decoration_v1.h>
|
2018-07-25 21:43:21 +10:00
|
|
|
#include "config.h"
|
2018-11-18 10:33:06 +11:00
|
|
|
#if HAVE_XWAYLAND
|
2018-06-27 10:32:09 +10:00
|
|
|
#include <wlr/xwayland.h>
|
2018-07-25 06:16:06 +10:00
|
|
|
#endif
|
2018-05-13 08:16:36 +10:00
|
|
|
#include "list.h"
|
2018-03-31 04:18:50 +11:00
|
|
|
#include "log.h"
|
2018-04-24 14:59:49 +10:00
|
|
|
#include "sway/criteria.h"
|
|
|
|
#include "sway/commands.h"
|
2018-10-06 14:49:33 +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"
|
2020-05-06 02:35:03 +10:00
|
|
|
#include "sway/desktop/idle_inhibit_v1.h"
|
2018-09-10 15:47:58 +10:00
|
|
|
#include "sway/input/cursor.h"
|
2018-04-16 20:36:40 +10:00
|
|
|
#include "sway/ipc-server.h"
|
2018-03-31 04:18:50 +11:00
|
|
|
#include "sway/output.h"
|
2018-04-24 14:59:49 +10:00
|
|
|
#include "sway/input/seat.h"
|
2019-08-20 19:30:09 +10:00
|
|
|
#include "sway/server.h"
|
2018-04-28 11:26:14 +10:00
|
|
|
#include "sway/tree/arrange.h"
|
2018-03-30 14:41:33 +11:00
|
|
|
#include "sway/tree/container.h"
|
|
|
|
#include "sway/tree/view.h"
|
2018-04-17 09:31:34 +10:00
|
|
|
#include "sway/tree/workspace.h"
|
2018-05-08 02:30:45 +10:00
|
|
|
#include "sway/config.h"
|
2018-09-24 20:54:57 +10:00
|
|
|
#include "sway/xdg_decoration.h"
|
2018-05-08 02:30:45 +10:00
|
|
|
#include "pango.h"
|
2018-05-25 21:07:59 +10:00
|
|
|
#include "stringop.h"
|
2018-01-22 01:09:53 +11:00
|
|
|
|
2018-04-06 01:38:14 +10:00
|
|
|
void view_init(struct sway_view *view, enum sway_view_type type,
|
2018-04-01 08:07:44 +10:00
|
|
|
const struct sway_view_impl *impl) {
|
2018-04-01 07:49:40 +10:00
|
|
|
view->type = type;
|
2018-04-01 08:07:44 +10:00
|
|
|
view->impl = impl;
|
2018-05-13 08:16:36 +10:00
|
|
|
view->executed_criteria = create_list();
|
2020-05-31 09:37:43 +10:00
|
|
|
wl_list_init(&view->saved_buffers);
|
2018-07-15 22:43:33 +10:00
|
|
|
view->allow_request_urgent = true;
|
2020-03-13 08:10:04 +11:00
|
|
|
view->shortcuts_inhibit = SHORTCUTS_INHIBIT_DEFAULT;
|
2018-04-06 04:46:02 +10:00
|
|
|
wl_signal_init(&view->events.unmap);
|
2018-04-01 07:49:40 +10:00
|
|
|
}
|
|
|
|
|
2018-08-20 15:54:30 +10:00
|
|
|
void view_destroy(struct sway_view *view) {
|
2018-06-23 16:24:11 +10:00
|
|
|
if (!sway_assert(view->surface == NULL, "Tried to free mapped view")) {
|
2018-04-01 07:49:40 +10:00
|
|
|
return;
|
|
|
|
}
|
2018-06-23 16:24:11 +10:00
|
|
|
if (!sway_assert(view->destroying,
|
|
|
|
"Tried to free view which wasn't marked as destroying")) {
|
|
|
|
return;
|
2018-04-01 07:49:40 +10:00
|
|
|
}
|
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->container == NULL,
|
|
|
|
"Tried to free view which still has a container "
|
2018-06-23 16:24:11 +10:00
|
|
|
"(might have a pending transaction?)")) {
|
2018-06-03 16:35:06 +10:00
|
|
|
return;
|
|
|
|
}
|
2020-05-31 09:37:43 +10:00
|
|
|
if (!wl_list_empty(&view->saved_buffers)) {
|
|
|
|
view_remove_saved_buffer(view);
|
|
|
|
}
|
2018-05-13 08:16:36 +10:00
|
|
|
list_free(view->executed_criteria);
|
|
|
|
|
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
|
|
|
free(view->title_format);
|
2018-05-15 14:48:19 +10:00
|
|
|
|
2018-06-26 13:18:33 +10:00
|
|
|
if (view->impl->destroy) {
|
|
|
|
view->impl->destroy(view);
|
2018-04-06 01:38:14 +10:00
|
|
|
} else {
|
|
|
|
free(view);
|
|
|
|
}
|
2018-04-01 07:49:40 +10:00
|
|
|
}
|
|
|
|
|
2018-08-20 15:54:30 +10:00
|
|
|
void view_begin_destroy(struct sway_view *view) {
|
2018-06-23 16:24:11 +10:00
|
|
|
if (!sway_assert(view->surface == NULL, "Tried to destroy a mapped view")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
view->destroying = true;
|
|
|
|
|
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) {
|
2018-08-20 15:54:30 +10:00
|
|
|
view_destroy(view);
|
2018-06-23 16:24:11 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-22 01:09:53 +11:00
|
|
|
const char *view_get_title(struct sway_view *view) {
|
2018-05-13 08:16:36 +10:00
|
|
|
if (view->impl->get_string_prop) {
|
|
|
|
return view->impl->get_string_prop(view, VIEW_PROP_TITLE);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *view_get_app_id(struct sway_view *view) {
|
2018-05-13 08:16:36 +10:00
|
|
|
if (view->impl->get_string_prop) {
|
|
|
|
return view->impl->get_string_prop(view, VIEW_PROP_APP_ID);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *view_get_class(struct sway_view *view) {
|
2018-05-13 08:16:36 +10:00
|
|
|
if (view->impl->get_string_prop) {
|
|
|
|
return view->impl->get_string_prop(view, VIEW_PROP_CLASS);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *view_get_instance(struct sway_view *view) {
|
2018-05-13 08:16:36 +10:00
|
|
|
if (view->impl->get_string_prop) {
|
|
|
|
return view->impl->get_string_prop(view, VIEW_PROP_INSTANCE);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-11-18 10:33:06 +11:00
|
|
|
#if HAVE_XWAYLAND
|
2018-05-13 08:16:36 +10:00
|
|
|
uint32_t view_get_x11_window_id(struct sway_view *view) {
|
|
|
|
if (view->impl->get_int_prop) {
|
|
|
|
return view->impl->get_int_prop(view, VIEW_PROP_X11_WINDOW_ID);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2018-10-23 06:17:27 +11:00
|
|
|
|
|
|
|
uint32_t view_get_x11_parent_id(struct sway_view *view) {
|
|
|
|
if (view->impl->get_int_prop) {
|
|
|
|
return view->impl->get_int_prop(view, VIEW_PROP_X11_PARENT_ID);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2018-07-25 06:16:06 +10:00
|
|
|
#endif
|
2018-05-13 08:17:46 +10:00
|
|
|
const char *view_get_window_role(struct sway_view *view) {
|
|
|
|
if (view->impl->get_string_prop) {
|
|
|
|
return view->impl->get_string_prop(view, VIEW_PROP_WINDOW_ROLE);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-13 08:16:36 +10:00
|
|
|
uint32_t view_get_window_type(struct sway_view *view) {
|
|
|
|
if (view->impl->get_int_prop) {
|
|
|
|
return view->impl->get_int_prop(view, VIEW_PROP_WINDOW_TYPE);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-05-27 21:59:38 +10:00
|
|
|
const char *view_get_shell(struct sway_view *view) {
|
2018-05-05 12:36:50 +10:00
|
|
|
switch(view->type) {
|
2018-05-14 01:38:56 +10:00
|
|
|
case SWAY_VIEW_XDG_SHELL:
|
|
|
|
return "xdg_shell";
|
2018-11-18 10:33:06 +11:00
|
|
|
#if HAVE_XWAYLAND
|
2018-05-05 12:36:50 +10:00
|
|
|
case SWAY_VIEW_XWAYLAND:
|
|
|
|
return "xwayland";
|
2018-07-25 07:37:41 +10:00
|
|
|
#endif
|
2018-05-05 12:36:50 +10:00
|
|
|
}
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
|
2018-07-21 12:13:00 +10:00
|
|
|
void view_get_constraints(struct sway_view *view, double *min_width,
|
|
|
|
double *max_width, double *min_height, double *max_height) {
|
|
|
|
if (view->impl->get_constraints) {
|
|
|
|
view->impl->get_constraints(view,
|
|
|
|
min_width, max_width, min_height, max_height);
|
|
|
|
} else {
|
|
|
|
*min_width = DBL_MIN;
|
|
|
|
*max_width = DBL_MAX;
|
|
|
|
*min_height = DBL_MIN;
|
|
|
|
*max_height = DBL_MAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-03 16:35:06 +10:00
|
|
|
uint32_t view_configure(struct sway_view *view, double lx, double ly, int width,
|
2018-04-03 00:57:45 +10:00
|
|
|
int height) {
|
|
|
|
if (view->impl->configure) {
|
2018-06-03 16:35:06 +10:00
|
|
|
return view->impl->configure(view, lx, ly, width, height);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
2018-06-03 16:35:06 +10:00
|
|
|
return 0;
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
|
2020-05-06 02:35:03 +10:00
|
|
|
bool view_inhibit_idle(struct sway_view *view) {
|
|
|
|
struct sway_idle_inhibitor_v1 *user_inhibitor =
|
|
|
|
sway_idle_inhibit_v1_user_inhibitor_for_view(view);
|
|
|
|
|
|
|
|
struct sway_idle_inhibitor_v1 *application_inhibitor =
|
|
|
|
sway_idle_inhibit_v1_application_inhibitor_for_view(view);
|
|
|
|
|
|
|
|
if (!user_inhibitor && !application_inhibitor) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!user_inhibitor) {
|
|
|
|
return sway_idle_inhibit_v1_is_active(application_inhibitor);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!application_inhibitor) {
|
|
|
|
return sway_idle_inhibit_v1_is_active(user_inhibitor);
|
|
|
|
}
|
|
|
|
|
|
|
|
return sway_idle_inhibit_v1_is_active(user_inhibitor)
|
|
|
|
|| sway_idle_inhibit_v1_is_active(application_inhibitor);
|
|
|
|
}
|
|
|
|
|
2020-06-01 09:03:42 +10:00
|
|
|
bool view_ancestor_is_only_visible(struct sway_view *view) {
|
|
|
|
bool only_visible = true;
|
2018-10-01 23:41:15 +10:00
|
|
|
struct sway_container *con = view->container;
|
|
|
|
while (con) {
|
|
|
|
enum sway_container_layout layout = container_parent_layout(con);
|
|
|
|
if (layout != L_TABBED && layout != L_STACKED) {
|
|
|
|
list_t *siblings = container_get_siblings(con);
|
|
|
|
if (siblings && siblings->length > 1) {
|
2020-06-01 09:03:42 +10:00
|
|
|
only_visible = false;
|
2018-10-01 23:41:15 +10:00
|
|
|
}
|
2020-06-01 09:03:42 +10:00
|
|
|
} else {
|
|
|
|
only_visible = true;
|
2018-10-01 23:41:15 +10:00
|
|
|
}
|
|
|
|
con = con->parent;
|
|
|
|
}
|
2020-06-01 09:03:42 +10:00
|
|
|
return only_visible;
|
2018-10-01 23:41:15 +10:00
|
|
|
}
|
|
|
|
|
2020-06-27 10:12:28 +10:00
|
|
|
static bool view_is_only_visible(struct sway_view *view) {
|
|
|
|
struct sway_container *con = view->container;
|
|
|
|
while (con) {
|
|
|
|
enum sway_container_layout layout = container_parent_layout(con);
|
|
|
|
if (layout != L_TABBED && layout != L_STACKED) {
|
|
|
|
list_t *siblings = container_get_siblings(con);
|
|
|
|
if (siblings && siblings->length > 1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
con = con->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-10-02 02:56:27 +10:00
|
|
|
static bool gaps_to_edge(struct sway_view *view) {
|
2018-11-08 14:44:11 +11:00
|
|
|
struct side_gaps gaps = view->container->workspace->current_gaps;
|
|
|
|
return gaps.top > 0 || gaps.right > 0 || gaps.bottom > 0 || gaps.left > 0;
|
2018-10-02 02:56:27 +10:00
|
|
|
}
|
|
|
|
|
2018-04-30 21:24:13 +10:00
|
|
|
void view_autoconfigure(struct sway_view *view) {
|
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
|
|
|
struct sway_container *con = view->container;
|
2019-04-17 05:11:35 +10:00
|
|
|
struct sway_workspace *ws = con->workspace;
|
|
|
|
|
2019-04-01 14:27:18 +11:00
|
|
|
if (container_is_scratchpad_hidden(con) &&
|
|
|
|
con->fullscreen_mode != FULLSCREEN_GLOBAL) {
|
2018-09-05 17:59:31 +10:00
|
|
|
return;
|
|
|
|
}
|
2019-04-17 05:11:35 +10:00
|
|
|
struct sway_output *output = ws ? ws->output : NULL;
|
2018-05-14 14:20:34 +10:00
|
|
|
|
2019-01-25 09:29:21 +11:00
|
|
|
if (con->fullscreen_mode == FULLSCREEN_WORKSPACE) {
|
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
|
|
|
con->content_x = output->lx;
|
|
|
|
con->content_y = output->ly;
|
|
|
|
con->content_width = output->width;
|
|
|
|
con->content_height = output->height;
|
2018-04-30 21:24:13 +10:00
|
|
|
return;
|
2019-01-25 09:29:21 +11:00
|
|
|
} else if (con->fullscreen_mode == FULLSCREEN_GLOBAL) {
|
|
|
|
con->content_x = root->x;
|
|
|
|
con->content_y = root->y;
|
|
|
|
con->content_width = root->width;
|
|
|
|
con->content_height = root->height;
|
|
|
|
return;
|
2018-04-30 21:24:13 +10:00
|
|
|
}
|
|
|
|
|
2018-10-31 21:28:36 +11:00
|
|
|
con->border_top = con->border_bottom = true;
|
|
|
|
con->border_left = con->border_right = true;
|
2019-04-17 05:20:48 +10:00
|
|
|
double y_offset = 0;
|
|
|
|
|
|
|
|
if (!container_is_floating(con) && ws) {
|
2019-04-01 14:27:18 +11:00
|
|
|
if (config->hide_edge_borders == E_BOTH
|
2020-06-27 10:12:28 +10:00
|
|
|
|| config->hide_edge_borders == E_VERTICAL) {
|
2019-07-06 20:57:32 +10:00
|
|
|
con->border_left = con->x != ws->x;
|
|
|
|
int right_x = con->x + con->width;
|
2019-04-01 14:27:18 +11:00
|
|
|
con->border_right = right_x != ws->x + ws->width;
|
|
|
|
}
|
2020-06-27 10:12:28 +10:00
|
|
|
|
2019-04-01 14:27:18 +11:00
|
|
|
if (config->hide_edge_borders == E_BOTH
|
2020-06-27 10:12:28 +10:00
|
|
|
|| config->hide_edge_borders == E_HORIZONTAL) {
|
2019-07-06 20:57:32 +10:00
|
|
|
con->border_top = con->y != ws->y;
|
|
|
|
int bottom_y = con->y + con->height;
|
2019-04-01 14:27:18 +11:00
|
|
|
con->border_bottom = bottom_y != ws->y + ws->height;
|
|
|
|
}
|
2018-05-14 14:20:34 +10:00
|
|
|
|
2020-06-27 10:12:28 +10:00
|
|
|
bool smart = config->hide_edge_borders_smart == ESMART_ON ||
|
|
|
|
(config->hide_edge_borders_smart == ESMART_NO_GAPS &&
|
|
|
|
!gaps_to_edge(view));
|
|
|
|
if (smart) {
|
2020-10-26 08:20:19 +11:00
|
|
|
bool show_border = container_is_floating_or_child(con) ||
|
|
|
|
!view_is_only_visible(view);
|
2020-06-27 10:12:28 +10:00
|
|
|
con->border_left &= show_border;
|
|
|
|
con->border_right &= show_border;
|
|
|
|
con->border_top &= show_border;
|
|
|
|
con->border_bottom &= show_border;
|
|
|
|
}
|
|
|
|
|
2019-04-17 05:20:48 +10:00
|
|
|
// In a tabbed or stacked container, the container's y is the top of the
|
|
|
|
// title area. We have to offset the surface y by the height of the title,
|
|
|
|
// bar, and disable any top border because we'll always have the title bar.
|
|
|
|
list_t *siblings = container_get_siblings(con);
|
|
|
|
bool show_titlebar = (siblings && siblings->length > 1)
|
|
|
|
|| !config->hide_lone_tab;
|
|
|
|
if (show_titlebar) {
|
|
|
|
enum sway_container_layout layout = container_parent_layout(con);
|
|
|
|
if (layout == L_TABBED) {
|
|
|
|
y_offset = container_titlebar_height();
|
|
|
|
con->border_top = false;
|
|
|
|
} else if (layout == L_STACKED) {
|
|
|
|
y_offset = container_titlebar_height() * siblings->length;
|
|
|
|
con->border_top = false;
|
|
|
|
}
|
2019-02-24 20:00:15 +11:00
|
|
|
}
|
2018-05-20 15:34:08 +10:00
|
|
|
}
|
|
|
|
|
2019-01-23 02:07:38 +11:00
|
|
|
double x, y, width, height;
|
2018-10-31 21:28:36 +11:00
|
|
|
switch (con->border) {
|
2019-01-23 02:07:38 +11:00
|
|
|
default:
|
2018-09-24 20:54:57 +10:00
|
|
|
case B_CSD:
|
2018-05-01 17:36:12 +10:00
|
|
|
case B_NONE:
|
2018-06-06 19:19:30 +10:00
|
|
|
x = con->x;
|
2018-09-06 09:13:36 +10:00
|
|
|
y = con->y + y_offset;
|
2018-06-06 19:19:30 +10:00
|
|
|
width = con->width;
|
2018-09-06 09:13:36 +10:00
|
|
|
height = con->height - y_offset;
|
2018-05-01 17:36:12 +10:00
|
|
|
break;
|
|
|
|
case B_PIXEL:
|
2018-10-31 21:28:36 +11:00
|
|
|
x = con->x + con->border_thickness * con->border_left;
|
|
|
|
y = con->y + con->border_thickness * con->border_top + y_offset;
|
2018-06-06 19:19:30 +10:00
|
|
|
width = con->width
|
2018-10-31 21:28:36 +11:00
|
|
|
- con->border_thickness * con->border_left
|
|
|
|
- con->border_thickness * con->border_right;
|
2018-09-06 09:13:36 +10:00
|
|
|
height = con->height - y_offset
|
2018-10-31 21:28:36 +11:00
|
|
|
- con->border_thickness * con->border_top
|
|
|
|
- con->border_thickness * con->border_bottom;
|
2018-05-01 17:36:12 +10:00
|
|
|
break;
|
|
|
|
case B_NORMAL:
|
2018-05-21 22:58:46 +10:00
|
|
|
// Height is: 1px border + 3px pad + title height + 3px pad + 1px border
|
2018-10-31 21:28:36 +11:00
|
|
|
x = con->x + con->border_thickness * con->border_left;
|
2018-06-06 19:19:30 +10:00
|
|
|
width = con->width
|
2018-10-31 21:28:36 +11:00
|
|
|
- con->border_thickness * con->border_left
|
|
|
|
- con->border_thickness * con->border_right;
|
2018-09-06 09:13:36 +10:00
|
|
|
if (y_offset) {
|
|
|
|
y = con->y + y_offset;
|
|
|
|
height = con->height - y_offset
|
2018-10-31 21:28:36 +11:00
|
|
|
- con->border_thickness * con->border_bottom;
|
2018-09-06 09:13:36 +10:00
|
|
|
} else {
|
|
|
|
y = con->y + container_titlebar_height();
|
|
|
|
height = con->height - container_titlebar_height()
|
2018-10-31 21:28:36 +11:00
|
|
|
- con->border_thickness * con->border_bottom;
|
2018-09-06 09:13:36 +10:00
|
|
|
}
|
2018-05-01 17:36:12 +10:00
|
|
|
break;
|
2018-04-30 21:24:13 +10:00
|
|
|
}
|
|
|
|
|
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
|
|
|
con->content_x = x;
|
|
|
|
con->content_y = y;
|
|
|
|
con->content_width = width;
|
|
|
|
con->content_height = height;
|
2018-04-30 21:24:13 +10:00
|
|
|
}
|
|
|
|
|
2018-01-22 01:09:53 +11:00
|
|
|
void view_set_activated(struct sway_view *view, bool activated) {
|
2018-04-01 08:07:44 +10:00
|
|
|
if (view->impl->set_activated) {
|
|
|
|
view->impl->set_activated(view, activated);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
2019-08-20 19:30:09 +10:00
|
|
|
if (view->foreign_toplevel) {
|
|
|
|
wlr_foreign_toplevel_handle_v1_set_activated(
|
|
|
|
view->foreign_toplevel, activated);
|
|
|
|
}
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
|
2018-09-02 15:03:58 +10:00
|
|
|
void view_request_activate(struct sway_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
|
|
|
struct sway_workspace *ws = view->container->workspace;
|
|
|
|
if (!ws) { // hidden scratchpad container
|
|
|
|
return;
|
|
|
|
}
|
2018-10-18 22:20:00 +11:00
|
|
|
struct sway_seat *seat = input_manager_current_seat();
|
2018-09-02 18:25:45 +10:00
|
|
|
|
|
|
|
switch (config->focus_on_window_activation) {
|
|
|
|
case FOWA_SMART:
|
|
|
|
if (workspace_is_visible(ws)) {
|
2018-09-06 19:26:56 +10:00
|
|
|
seat_set_focus_container(seat, view->container);
|
2018-09-02 18:25:45 +10:00
|
|
|
} else {
|
|
|
|
view_set_urgent(view, true);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case FOWA_URGENT:
|
2018-09-02 15:03:58 +10:00
|
|
|
view_set_urgent(view, true);
|
2018-09-02 18:25:45 +10:00
|
|
|
break;
|
|
|
|
case FOWA_FOCUS:
|
2018-09-06 19:26:56 +10:00
|
|
|
seat_set_focus_container(seat, view->container);
|
2018-09-02 18:25:45 +10:00
|
|
|
break;
|
|
|
|
case FOWA_NONE:
|
|
|
|
break;
|
2018-09-02 15:03:58 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-24 20:54:57 +10:00
|
|
|
void view_set_csd_from_server(struct sway_view *view, bool enabled) {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Telling view %p to set CSD to %i", view, enabled);
|
2018-09-24 20:54:57 +10:00
|
|
|
if (view->xdg_decoration) {
|
|
|
|
uint32_t mode = enabled ?
|
|
|
|
WLR_XDG_TOPLEVEL_DECORATION_V1_MODE_CLIENT_SIDE :
|
|
|
|
WLR_XDG_TOPLEVEL_DECORATION_V1_MODE_SERVER_SIDE;
|
|
|
|
wlr_xdg_toplevel_decoration_v1_set_mode(
|
|
|
|
view->xdg_decoration->wlr_xdg_decoration, mode);
|
2018-07-13 05:01:33 +10:00
|
|
|
}
|
2018-09-27 22:44:57 +10:00
|
|
|
view->using_csd = enabled;
|
2018-09-24 20:54:57 +10:00
|
|
|
}
|
2018-07-17 10:14:33 +10:00
|
|
|
|
2018-09-27 17:09:05 +10:00
|
|
|
void view_update_csd_from_client(struct sway_view *view, bool enabled) {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "View %p updated CSD to %i", view, enabled);
|
2018-10-31 21:28:36 +11:00
|
|
|
struct sway_container *con = view->container;
|
|
|
|
if (enabled && con && con->border != B_CSD) {
|
|
|
|
con->saved_border = con->border;
|
|
|
|
if (container_is_floating(con)) {
|
|
|
|
con->border = B_CSD;
|
2018-07-17 10:14:33 +10:00
|
|
|
}
|
2018-10-31 21:28:36 +11:00
|
|
|
} else if (!enabled && con && con->border == B_CSD) {
|
|
|
|
con->border = con->saved_border;
|
2018-07-13 05:01:33 +10:00
|
|
|
}
|
2018-09-27 22:44:57 +10:00
|
|
|
view->using_csd = enabled;
|
2018-09-24 20:54:57 +10:00
|
|
|
}
|
2018-07-17 10:14:33 +10:00
|
|
|
|
2018-09-24 20:54:57 +10:00
|
|
|
void view_set_tiled(struct sway_view *view, bool tiled) {
|
2018-06-28 02:53:13 +10:00
|
|
|
if (view->impl->set_tiled) {
|
|
|
|
view->impl->set_tiled(view, tiled);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-22 01:09:53 +11:00
|
|
|
void view_close(struct sway_view *view) {
|
2018-04-01 08:07:44 +10:00
|
|
|
if (view->impl->close) {
|
|
|
|
view->impl->close(view);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
}
|
2018-02-26 09:23:36 +11:00
|
|
|
|
2018-07-31 19:58:34 +10:00
|
|
|
void view_close_popups(struct sway_view *view) {
|
|
|
|
if (view->impl->close_popups) {
|
|
|
|
view->impl->close_popups(view);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-06 04:43:12 +10:00
|
|
|
void view_damage_from(struct sway_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
|
|
|
for (int i = 0; i < root->outputs->length; ++i) {
|
|
|
|
struct sway_output *output = root->outputs->items[i];
|
|
|
|
output_damage_from_view(output, view);
|
2018-04-03 00:57:45 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-07 00:26:32 +10:00
|
|
|
void view_for_each_surface(struct sway_view *view,
|
|
|
|
wlr_surface_iterator_func_t iterator, void *user_data) {
|
2018-06-23 16:24:11 +10:00
|
|
|
if (!view->surface) {
|
|
|
|
return;
|
|
|
|
}
|
2018-04-07 00:26:32 +10:00
|
|
|
if (view->impl->for_each_surface) {
|
|
|
|
view->impl->for_each_surface(view, iterator, user_data);
|
|
|
|
} else {
|
|
|
|
wlr_surface_for_each_surface(view->surface, iterator, user_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-02 23:30:26 +10:00
|
|
|
void view_for_each_popup(struct sway_view *view,
|
|
|
|
wlr_surface_iterator_func_t iterator, void *user_data) {
|
|
|
|
if (!view->surface) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (view->impl->for_each_popup) {
|
|
|
|
view->impl->for_each_popup(view, iterator, user_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-06 04:46:02 +10:00
|
|
|
static void view_subsurface_create(struct sway_view *view,
|
|
|
|
struct wlr_subsurface *subsurface);
|
|
|
|
|
|
|
|
static void view_init_subsurfaces(struct sway_view *view,
|
|
|
|
struct wlr_surface *surface);
|
|
|
|
|
|
|
|
static void view_handle_surface_new_subsurface(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_view *view =
|
|
|
|
wl_container_of(listener, view, surface_new_subsurface);
|
|
|
|
struct wlr_subsurface *subsurface = data;
|
|
|
|
view_subsurface_create(view, subsurface);
|
|
|
|
}
|
|
|
|
|
2018-05-13 08:16:36 +10:00
|
|
|
static bool view_has_executed_criteria(struct sway_view *view,
|
|
|
|
struct criteria *criteria) {
|
|
|
|
for (int i = 0; i < view->executed_criteria->length; ++i) {
|
|
|
|
struct criteria *item = view->executed_criteria->items[i];
|
|
|
|
if (item == criteria) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_execute_criteria(struct sway_view *view) {
|
|
|
|
list_t *criterias = criteria_for_view(view, CT_COMMAND);
|
|
|
|
for (int i = 0; i < criterias->length; i++) {
|
|
|
|
struct criteria *criteria = criterias->items[i];
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Checking criteria %s", criteria->raw);
|
2018-05-13 08:16:36 +10:00
|
|
|
if (view_has_executed_criteria(view, criteria)) {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Criteria already executed");
|
2018-05-13 08:16:36 +10:00
|
|
|
continue;
|
|
|
|
}
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "for_window '%s' matches view %p, cmd: '%s'",
|
2018-05-13 08:16:36 +10:00
|
|
|
criteria->raw, view, criteria->cmdlist);
|
|
|
|
list_add(view->executed_criteria, criteria);
|
2018-11-28 13:42:09 +11:00
|
|
|
list_t *res_list = execute_command(
|
2018-09-23 08:38:15 +10:00
|
|
|
criteria->cmdlist, NULL, view->container);
|
2018-11-28 13:42:09 +11:00
|
|
|
while (res_list->length) {
|
|
|
|
struct cmd_results *res = res_list->items[0];
|
|
|
|
free_cmd_results(res);
|
|
|
|
list_del(res_list, 0);
|
|
|
|
}
|
|
|
|
list_free(res_list);
|
2018-04-24 14:59:49 +10:00
|
|
|
}
|
2018-05-13 08:16:36 +10:00
|
|
|
list_free(criterias);
|
2018-04-24 14:59:49 +10:00
|
|
|
}
|
|
|
|
|
2019-09-21 01:58:19 +10:00
|
|
|
static void view_populate_pid(struct sway_view *view) {
|
|
|
|
pid_t pid;
|
|
|
|
switch (view->type) {
|
|
|
|
#if HAVE_XWAYLAND
|
|
|
|
case SWAY_VIEW_XWAYLAND:;
|
|
|
|
struct wlr_xwayland_surface *surf =
|
|
|
|
wlr_xwayland_surface_from_wlr_surface(view->surface);
|
|
|
|
pid = surf->pid;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case SWAY_VIEW_XDG_SHELL:;
|
|
|
|
struct wl_client *client =
|
|
|
|
wl_resource_get_client(view->surface->resource);
|
|
|
|
wl_client_get_credentials(client, &pid, NULL, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
view->pid = pid;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
static struct sway_workspace *select_workspace(struct sway_view *view) {
|
2018-10-18 22:20:00 +11:00
|
|
|
struct sway_seat *seat = input_manager_current_seat();
|
2018-07-25 23:34:00 +10:00
|
|
|
|
|
|
|
// Check if there's any `assign` criteria for the view
|
|
|
|
list_t *criterias = criteria_for_view(view,
|
2018-08-12 09:38:19 +10:00
|
|
|
CT_ASSIGN_WORKSPACE | CT_ASSIGN_WORKSPACE_NUMBER | CT_ASSIGN_OUTPUT);
|
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_workspace *ws = NULL;
|
2018-07-25 23:34:00 +10:00
|
|
|
for (int i = 0; i < criterias->length; ++i) {
|
|
|
|
struct criteria *criteria = criterias->items[i];
|
2018-08-12 09:38:19 +10:00
|
|
|
if (criteria->type == CT_ASSIGN_OUTPUT) {
|
2018-12-21 05:02:45 +11:00
|
|
|
struct sway_output *output = output_by_name_or_id(criteria->target);
|
2018-08-12 09:38:19 +10:00
|
|
|
if (output) {
|
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
|
|
|
ws = output_get_active_workspace(output);
|
2018-08-12 09:38:19 +10:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// CT_ASSIGN_WORKSPACE(_NUMBER)
|
|
|
|
ws = criteria->type == CT_ASSIGN_WORKSPACE_NUMBER ?
|
|
|
|
workspace_by_number(criteria->target) :
|
|
|
|
workspace_by_name(criteria->target);
|
|
|
|
|
2018-07-25 23:34:00 +10:00
|
|
|
if (!ws) {
|
2018-08-06 21:46:28 +10:00
|
|
|
if (strcasecmp(criteria->target, "back_and_forth") == 0) {
|
2018-10-21 12:26:22 +11:00
|
|
|
if (seat->prev_workspace_name) {
|
|
|
|
ws = workspace_create(NULL, seat->prev_workspace_name);
|
2018-08-06 21:46:28 +10:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ws = workspace_create(NULL, criteria->target);
|
|
|
|
}
|
2018-07-25 23:34:00 +10:00
|
|
|
}
|
|
|
|
break;
|
2018-07-16 22:18:12 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
list_free(criterias);
|
2018-07-25 23:34:00 +10:00
|
|
|
if (ws) {
|
2020-01-09 11:30:27 +11:00
|
|
|
root_remove_workspace_pid(view->pid);
|
2018-07-25 23:34:00 +10:00
|
|
|
return ws;
|
2018-04-01 07:49:40 +10:00
|
|
|
}
|
|
|
|
|
2018-07-25 23:34:00 +10:00
|
|
|
// Check if there's a PID mapping
|
2019-09-21 01:58:19 +10:00
|
|
|
ws = root_workspace_for_pid(view->pid);
|
2018-07-25 23:34:00 +10:00
|
|
|
if (ws) {
|
|
|
|
return ws;
|
|
|
|
}
|
2018-06-27 10:32:09 +10:00
|
|
|
|
2018-07-25 23:34:00 +10:00
|
|
|
// Use the focused workspace
|
2018-10-13 20:15:04 +11:00
|
|
|
struct sway_node *node = seat_get_focus_inactive(seat, &root->node);
|
|
|
|
if (node && node->type == N_WORKSPACE) {
|
|
|
|
return node->sway_workspace;
|
|
|
|
} else if (node && node->type == N_CONTAINER) {
|
|
|
|
return node->sway_container->workspace;
|
|
|
|
}
|
|
|
|
|
2019-01-17 21:16:23 +11:00
|
|
|
// When there's no outputs connected, the above should match a workspace on
|
|
|
|
// the noop output.
|
|
|
|
sway_assert(false, "Expected to find a workspace");
|
|
|
|
return NULL;
|
2018-07-25 23:34:00 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool should_focus(struct sway_view *view) {
|
2018-10-18 22:20:00 +11:00
|
|
|
struct sway_seat *seat = input_manager_current_seat();
|
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_container *prev_con = seat_get_focused_container(seat);
|
|
|
|
struct sway_workspace *prev_ws = seat_get_focused_workspace(seat);
|
|
|
|
struct sway_workspace *map_ws = view->container->workspace;
|
2018-05-13 08:16:36 +10:00
|
|
|
|
2019-04-01 14:27:18 +11:00
|
|
|
if (view->container->fullscreen_mode == FULLSCREEN_GLOBAL) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-07-25 23:34:00 +10:00
|
|
|
// Views can only take focus if they are mapped into the active workspace
|
|
|
|
if (prev_ws != map_ws) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the view is the only one in the focused workspace, it'll get focus
|
|
|
|
// regardless of any no_focus criteria.
|
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->parent && !prev_con) {
|
|
|
|
size_t num_children = view->container->workspace->tiling->length +
|
|
|
|
view->container->workspace->floating->length;
|
2018-07-25 23:34:00 +10:00
|
|
|
if (num_children == 1) {
|
|
|
|
return true;
|
2018-05-13 08:16:36 +10:00
|
|
|
}
|
|
|
|
}
|
2018-07-25 23:34:00 +10:00
|
|
|
|
|
|
|
// Check no_focus criteria
|
|
|
|
list_t *criterias = criteria_for_view(view, CT_NO_FOCUS);
|
|
|
|
size_t len = criterias->length;
|
2018-06-27 10:32:09 +10:00
|
|
|
list_free(criterias);
|
2018-07-25 23:34:00 +10:00
|
|
|
return len == 0;
|
|
|
|
}
|
2018-06-27 10:32:09 +10:00
|
|
|
|
2019-08-20 19:30:09 +10:00
|
|
|
static void handle_foreign_activate_request(
|
|
|
|
struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_view *view = wl_container_of(
|
|
|
|
listener, view, foreign_activate_request);
|
|
|
|
struct wlr_foreign_toplevel_handle_v1_activated_event *event = data;
|
|
|
|
struct sway_seat *seat;
|
|
|
|
wl_list_for_each(seat, &server.input->seats, link) {
|
|
|
|
if (seat->wlr_seat == event->seat) {
|
2020-07-25 03:33:01 +10:00
|
|
|
if (container_is_scratchpad_hidden_or_child(view->container)) {
|
|
|
|
root_scratchpad_show(view->container);
|
|
|
|
}
|
2019-08-20 19:30:09 +10:00
|
|
|
seat_set_focus_container(seat, view->container);
|
2020-07-25 03:33:01 +10:00
|
|
|
seat_consider_warp_to_focus(seat);
|
|
|
|
container_raise_floating(view->container);
|
2019-08-20 19:30:09 +10:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-31 09:31:52 +10:00
|
|
|
static void handle_foreign_fullscreen_request(
|
|
|
|
struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_view *view = wl_container_of(
|
|
|
|
listener, view, foreign_fullscreen_request);
|
|
|
|
struct wlr_foreign_toplevel_handle_v1_fullscreen_event *event = data;
|
|
|
|
|
|
|
|
// Match fullscreen command behavior for scratchpad hidden views
|
|
|
|
struct sway_container *container = view->container;
|
|
|
|
if (!container->workspace) {
|
|
|
|
while (container->parent) {
|
|
|
|
container = container->parent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
container_set_fullscreen(container,
|
|
|
|
event->fullscreen ? FULLSCREEN_WORKSPACE : FULLSCREEN_NONE);
|
|
|
|
if (event->fullscreen) {
|
|
|
|
arrange_root();
|
|
|
|
} else {
|
|
|
|
if (container->parent) {
|
|
|
|
arrange_container(container->parent);
|
|
|
|
} else if (container->workspace) {
|
|
|
|
arrange_workspace(container->workspace);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-20 19:30:09 +10:00
|
|
|
static void handle_foreign_close_request(
|
|
|
|
struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_view *view = wl_container_of(
|
|
|
|
listener, view, foreign_close_request);
|
|
|
|
view_close(view);
|
|
|
|
}
|
|
|
|
|
2020-08-04 05:22:03 +10:00
|
|
|
static void handle_foreign_destroy(
|
|
|
|
struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_view *view = wl_container_of(
|
|
|
|
listener, view, foreign_destroy);
|
|
|
|
|
|
|
|
wl_list_remove(&view->foreign_activate_request.link);
|
|
|
|
wl_list_remove(&view->foreign_fullscreen_request.link);
|
|
|
|
wl_list_remove(&view->foreign_close_request.link);
|
|
|
|
wl_list_remove(&view->foreign_destroy.link);
|
|
|
|
}
|
|
|
|
|
2018-10-14 06:01:02 +11:00
|
|
|
void view_map(struct sway_view *view, struct wlr_surface *wlr_surface,
|
2019-03-25 14:24:02 +11:00
|
|
|
bool fullscreen, struct wlr_output *fullscreen_output,
|
|
|
|
bool decoration) {
|
2018-07-25 23:34:00 +10:00
|
|
|
if (!sway_assert(view->surface == NULL, "cannot map mapped view")) {
|
|
|
|
return;
|
2018-06-27 10:32:09 +10:00
|
|
|
}
|
2018-07-25 23:34:00 +10:00
|
|
|
view->surface = wlr_surface;
|
2019-09-21 01:58:19 +10:00
|
|
|
view_populate_pid(view);
|
2019-09-23 03:28:12 +10:00
|
|
|
view->container = container_create(view);
|
2018-07-25 23:34:00 +10:00
|
|
|
|
2019-03-25 14:24:02 +11:00
|
|
|
// If there is a request to be opened fullscreen on a specific output, try
|
|
|
|
// to honor that request. Otherwise, fallback to assigns, pid mappings,
|
|
|
|
// focused workspace, etc
|
|
|
|
struct sway_workspace *ws = NULL;
|
|
|
|
if (fullscreen_output && fullscreen_output->data) {
|
|
|
|
struct sway_output *output = fullscreen_output->data;
|
|
|
|
ws = output_get_active_workspace(output);
|
|
|
|
}
|
|
|
|
if (!ws) {
|
|
|
|
ws = select_workspace(view);
|
|
|
|
}
|
|
|
|
|
2018-10-18 22:20:00 +11:00
|
|
|
struct sway_seat *seat = input_manager_current_seat();
|
2019-04-01 14:27:18 +11:00
|
|
|
struct sway_node *node = ws ? seat_get_focus_inactive(seat, &ws->node)
|
|
|
|
: seat_get_focus_inactive(seat, &root->node);
|
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_container *target_sibling = node->type == N_CONTAINER ?
|
|
|
|
node->sway_container : NULL;
|
2018-07-25 23:34:00 +10:00
|
|
|
|
2019-08-20 19:30:09 +10:00
|
|
|
view->foreign_toplevel =
|
|
|
|
wlr_foreign_toplevel_handle_v1_create(server.foreign_toplevel_manager);
|
|
|
|
view->foreign_activate_request.notify = handle_foreign_activate_request;
|
|
|
|
wl_signal_add(&view->foreign_toplevel->events.request_activate,
|
|
|
|
&view->foreign_activate_request);
|
2020-07-31 09:31:52 +10:00
|
|
|
view->foreign_fullscreen_request.notify = handle_foreign_fullscreen_request;
|
|
|
|
wl_signal_add(&view->foreign_toplevel->events.request_fullscreen,
|
|
|
|
&view->foreign_fullscreen_request);
|
2019-08-20 19:30:09 +10:00
|
|
|
view->foreign_close_request.notify = handle_foreign_close_request;
|
|
|
|
wl_signal_add(&view->foreign_toplevel->events.request_close,
|
|
|
|
&view->foreign_close_request);
|
2020-08-04 05:22:03 +10:00
|
|
|
view->foreign_destroy.notify = handle_foreign_destroy;
|
|
|
|
wl_signal_add(&view->foreign_toplevel->events.destroy,
|
|
|
|
&view->foreign_destroy);
|
2019-08-20 19:30:09 +10:00
|
|
|
|
2018-05-24 22:30:44 +10:00
|
|
|
// If we're about to launch the view into the floating container, then
|
|
|
|
// launch it as a tiled view in the root of the workspace instead.
|
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 (target_sibling && container_is_floating(target_sibling)) {
|
|
|
|
target_sibling = NULL;
|
2019-04-01 14:27:18 +11:00
|
|
|
ws = seat_get_last_known_workspace(seat);
|
2018-05-24 22:30:44 +10:00
|
|
|
}
|
2018-06-27 10:32:09 +10:00
|
|
|
|
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 (target_sibling) {
|
2018-09-11 21:34:21 +10:00
|
|
|
container_add_sibling(target_sibling, view->container, 1);
|
2019-04-01 14:27:18 +11:00
|
|
|
} else if (ws) {
|
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
|
|
|
workspace_add_tiling(ws, view->container);
|
|
|
|
}
|
|
|
|
ipc_event_window(view->container, "new");
|
2018-04-01 07:49:40 +10:00
|
|
|
|
2018-04-06 04:46:02 +10:00
|
|
|
view_init_subsurfaces(view, wlr_surface);
|
|
|
|
wl_signal_add(&wlr_surface->events.new_subsurface,
|
|
|
|
&view->surface_new_subsurface);
|
|
|
|
view->surface_new_subsurface.notify = view_handle_surface_new_subsurface;
|
|
|
|
|
2019-06-27 17:57:58 +10:00
|
|
|
if (decoration) {
|
|
|
|
view_update_csd_from_client(view, decoration);
|
|
|
|
}
|
|
|
|
|
2018-05-24 22:30:44 +10:00
|
|
|
if (view->impl->wants_floating && view->impl->wants_floating(view)) {
|
2018-10-31 21:28:36 +11:00
|
|
|
view->container->border = config->floating_border;
|
|
|
|
view->container->border_thickness = config->floating_border_thickness;
|
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_floating(view->container, true);
|
2018-07-05 09:04:15 +10:00
|
|
|
} else {
|
2018-10-31 21:28:36 +11:00
|
|
|
view->container->border = config->border;
|
|
|
|
view->container->border_thickness = config->border_thickness;
|
2018-07-05 09:04:15 +10:00
|
|
|
view_set_tiled(view, true);
|
2018-05-24 22:30:44 +10:00
|
|
|
}
|
|
|
|
|
2018-10-09 00:50:43 +11:00
|
|
|
if (config->popup_during_fullscreen == POPUP_LEAVE &&
|
|
|
|
view->container->workspace &&
|
|
|
|
view->container->workspace->fullscreen &&
|
|
|
|
view->container->workspace->fullscreen->view) {
|
|
|
|
struct sway_container *fs = view->container->workspace->fullscreen;
|
|
|
|
if (view_is_transient_for(view, fs->view)) {
|
|
|
|
container_set_fullscreen(fs, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-13 08:16:36 +10:00
|
|
|
view_update_title(view, false);
|
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_update_representation(view->container);
|
2018-10-14 06:01:02 +11:00
|
|
|
|
|
|
|
if (fullscreen) {
|
|
|
|
container_set_fullscreen(view->container, true);
|
|
|
|
arrange_workspace(view->container->workspace);
|
|
|
|
} else {
|
|
|
|
if (view->container->parent) {
|
|
|
|
arrange_container(view->container->parent);
|
|
|
|
} else if (view->container->workspace) {
|
|
|
|
arrange_workspace(view->container->workspace);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-12 21:54:09 +11:00
|
|
|
view_execute_criteria(view);
|
|
|
|
|
2018-10-14 06:01:02 +11:00
|
|
|
if (should_focus(view)) {
|
2018-10-18 22:20:00 +11:00
|
|
|
input_manager_set_focus(&view->container->node);
|
2018-10-14 06:01:02 +11:00
|
|
|
}
|
2019-08-20 19:30:09 +10:00
|
|
|
|
2020-06-24 15:55:42 +10:00
|
|
|
const char *app_id;
|
|
|
|
const char *class;
|
|
|
|
if ((app_id = view_get_app_id(view)) != NULL) {
|
2019-08-20 19:30:09 +10:00
|
|
|
wlr_foreign_toplevel_handle_v1_set_app_id(
|
|
|
|
view->foreign_toplevel, app_id);
|
2020-06-24 15:55:42 +10:00
|
|
|
} else if ((class = view_get_class(view)) != NULL) {
|
|
|
|
wlr_foreign_toplevel_handle_v1_set_app_id(
|
|
|
|
view->foreign_toplevel, class);
|
2019-08-20 19:30:09 +10:00
|
|
|
}
|
2018-04-01 07:49:40 +10:00
|
|
|
}
|
|
|
|
|
2018-06-26 13:15:45 +10:00
|
|
|
void view_unmap(struct sway_view *view) {
|
2018-04-06 04:46:02 +10:00
|
|
|
wl_signal_emit(&view->events.unmap, view);
|
|
|
|
|
2018-06-25 16:41:31 +10:00
|
|
|
wl_list_remove(&view->surface_new_subsurface.link);
|
|
|
|
|
2018-07-15 22:43:33 +10:00
|
|
|
if (view->urgent_timer) {
|
|
|
|
wl_event_source_remove(view->urgent_timer);
|
|
|
|
view->urgent_timer = NULL;
|
|
|
|
}
|
|
|
|
|
2019-08-20 19:30:09 +10:00
|
|
|
if (view->foreign_toplevel) {
|
|
|
|
wlr_foreign_toplevel_handle_v1_destroy(view->foreign_toplevel);
|
|
|
|
view->foreign_toplevel = NULL;
|
|
|
|
}
|
|
|
|
|
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_container *parent = view->container->parent;
|
|
|
|
struct sway_workspace *ws = view->container->workspace;
|
|
|
|
container_begin_destroy(view->container);
|
|
|
|
if (parent) {
|
|
|
|
container_reap_empty(parent);
|
2018-09-02 15:37:56 +10:00
|
|
|
} else if (ws) {
|
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
|
|
|
workspace_consider_destroy(ws);
|
|
|
|
}
|
2018-08-03 17:55:58 +10:00
|
|
|
|
2019-01-25 09:29:21 +11:00
|
|
|
if (root->fullscreen_global) {
|
|
|
|
// Container may have been a child of the root fullscreen container
|
|
|
|
arrange_root();
|
|
|
|
} else if (ws && !ws->node.destroying) {
|
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
|
|
|
arrange_workspace(ws);
|
2018-07-16 13:15:35 +10:00
|
|
|
workspace_detect_urgent(ws);
|
2018-06-26 13:15:45 +10:00
|
|
|
}
|
2018-08-03 17:55:58 +10:00
|
|
|
|
2018-09-12 03:34:58 +10:00
|
|
|
struct sway_seat *seat;
|
2018-10-18 22:20:00 +11:00
|
|
|
wl_list_for_each(seat, &server.input->seats, link) {
|
2019-01-07 23:23:28 +11:00
|
|
|
seat->cursor->image_surface = NULL;
|
2019-02-11 07:23:50 +11:00
|
|
|
if (seat->cursor->active_constraint) {
|
|
|
|
struct wlr_surface *constrain_surface =
|
|
|
|
seat->cursor->active_constraint->surface;
|
|
|
|
if (view_from_wlr_surface(constrain_surface) == view) {
|
|
|
|
sway_cursor_constrain(seat->cursor, NULL);
|
|
|
|
}
|
|
|
|
}
|
2019-01-07 23:21:02 +11:00
|
|
|
seat_consider_warp_to_focus(seat);
|
2018-09-12 03:34:58 +10:00
|
|
|
}
|
2018-09-11 10:52:42 +10:00
|
|
|
|
2018-07-14 23:14:55 +10:00
|
|
|
transaction_commit_dirty();
|
2018-06-27 17:54:57 +10:00
|
|
|
view->surface = NULL;
|
2018-04-01 07:49:40 +10:00
|
|
|
}
|
|
|
|
|
2018-04-03 00:57:45 +10:00
|
|
|
void view_update_size(struct sway_view *view, int width, int height) {
|
2019-01-28 17:00:34 +11:00
|
|
|
struct sway_container *con = view->container;
|
|
|
|
|
|
|
|
if (container_is_floating(con)) {
|
|
|
|
con->content_width = width;
|
|
|
|
con->content_height = height;
|
|
|
|
container_set_geometry_from_content(con);
|
|
|
|
} else {
|
|
|
|
con->surface_x = con->content_x + (con->content_width - width) / 2;
|
|
|
|
con->surface_y = con->content_y + (con->content_height - height) / 2;
|
|
|
|
con->surface_x = fmax(con->surface_x, con->content_x);
|
|
|
|
con->surface_y = fmax(con->surface_y, con->content_y);
|
2018-04-03 00:57:45 +10:00
|
|
|
}
|
2018-03-31 04:18:50 +11:00
|
|
|
}
|
2018-04-06 04:46:02 +10:00
|
|
|
|
2018-11-27 09:57:33 +11:00
|
|
|
static const struct sway_view_child_impl subsurface_impl;
|
|
|
|
|
2018-10-07 12:06:07 +11:00
|
|
|
static void subsurface_get_root_coords(struct sway_view_child *child,
|
|
|
|
int *root_sx, int *root_sy) {
|
|
|
|
struct wlr_surface *surface = child->surface;
|
|
|
|
*root_sx = -child->view->geometry.x;
|
|
|
|
*root_sy = -child->view->geometry.y;
|
|
|
|
|
2019-05-30 00:08:48 +10:00
|
|
|
if (child->parent && child->parent->impl &&
|
|
|
|
child->parent->impl->get_root_coords) {
|
|
|
|
int sx, sy;
|
|
|
|
child->parent->impl->get_root_coords(child->parent, &sx, &sy);
|
|
|
|
*root_sx += sx;
|
|
|
|
*root_sy += sy;
|
|
|
|
} else {
|
|
|
|
while (surface && wlr_surface_is_subsurface(surface)) {
|
|
|
|
struct wlr_subsurface *subsurface =
|
|
|
|
wlr_subsurface_from_wlr_surface(surface);
|
|
|
|
if (subsurface == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
*root_sx += subsurface->current.x;
|
|
|
|
*root_sy += subsurface->current.y;
|
|
|
|
surface = subsurface->parent;
|
2019-02-13 15:21:11 +11:00
|
|
|
}
|
2018-10-07 12:06:07 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-27 09:57:33 +11:00
|
|
|
static void subsurface_destroy(struct sway_view_child *child) {
|
|
|
|
if (!sway_assert(child->impl == &subsurface_impl,
|
|
|
|
"Expected a subsurface")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct sway_subsurface *subsurface = (struct sway_subsurface *)child;
|
|
|
|
wl_list_remove(&subsurface->destroy.link);
|
|
|
|
free(subsurface);
|
|
|
|
}
|
|
|
|
|
2018-10-07 12:06:07 +11:00
|
|
|
static const struct sway_view_child_impl subsurface_impl = {
|
|
|
|
.get_root_coords = subsurface_get_root_coords,
|
2018-11-27 09:57:33 +11:00
|
|
|
.destroy = subsurface_destroy,
|
2018-10-07 12:06:07 +11:00
|
|
|
};
|
|
|
|
|
2018-11-27 09:57:33 +11:00
|
|
|
static void subsurface_handle_destroy(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_subsurface *subsurface =
|
|
|
|
wl_container_of(listener, subsurface, destroy);
|
|
|
|
struct sway_view_child *child = &subsurface->child;
|
|
|
|
view_child_destroy(child);
|
|
|
|
}
|
|
|
|
|
2018-11-29 00:08:20 +11:00
|
|
|
static void view_child_damage(struct sway_view_child *child, bool whole);
|
|
|
|
|
2018-04-06 04:46:02 +10:00
|
|
|
static void view_subsurface_create(struct sway_view *view,
|
2018-11-27 09:57:33 +11:00
|
|
|
struct wlr_subsurface *wlr_subsurface) {
|
|
|
|
struct sway_subsurface *subsurface =
|
|
|
|
calloc(1, sizeof(struct sway_subsurface));
|
|
|
|
if (subsurface == NULL) {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_ERROR, "Allocation failed");
|
2018-04-06 04:46:02 +10:00
|
|
|
return;
|
|
|
|
}
|
2018-11-27 09:57:33 +11:00
|
|
|
view_child_init(&subsurface->child, &subsurface_impl, view,
|
|
|
|
wlr_subsurface->surface);
|
|
|
|
|
|
|
|
wl_signal_add(&wlr_subsurface->events.destroy, &subsurface->destroy);
|
|
|
|
subsurface->destroy.notify = subsurface_handle_destroy;
|
2018-11-29 00:08:20 +11:00
|
|
|
|
|
|
|
subsurface->child.mapped = true;
|
2019-05-30 00:08:48 +10:00
|
|
|
|
|
|
|
view_child_damage(&subsurface->child, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void view_child_subsurface_create(struct sway_view_child *child,
|
|
|
|
struct wlr_subsurface *wlr_subsurface) {
|
|
|
|
struct sway_subsurface *subsurface =
|
|
|
|
calloc(1, sizeof(struct sway_subsurface));
|
|
|
|
if (subsurface == NULL) {
|
|
|
|
sway_log(SWAY_ERROR, "Allocation failed");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
subsurface->child.parent = child;
|
|
|
|
wl_list_insert(&child->children, &subsurface->child.link);
|
|
|
|
view_child_init(&subsurface->child, &subsurface_impl, child->view,
|
|
|
|
wlr_subsurface->surface);
|
|
|
|
|
|
|
|
wl_signal_add(&wlr_subsurface->events.destroy, &subsurface->destroy);
|
|
|
|
subsurface->destroy.notify = subsurface_handle_destroy;
|
|
|
|
|
|
|
|
subsurface->child.mapped = true;
|
|
|
|
|
2018-11-29 00:08:20 +11:00
|
|
|
view_child_damage(&subsurface->child, true);
|
2018-04-06 04:46:02 +10:00
|
|
|
}
|
|
|
|
|
2018-10-06 14:49:33 +10:00
|
|
|
static void view_child_damage(struct sway_view_child *child, bool whole) {
|
2019-01-15 17:27:06 +11:00
|
|
|
if (!child || !child->mapped || !child->view || !child->view->container) {
|
|
|
|
return;
|
|
|
|
}
|
2018-10-06 14:49:33 +10:00
|
|
|
int sx, sy;
|
|
|
|
child->impl->get_root_coords(child, &sx, &sy);
|
|
|
|
desktop_damage_surface(child->surface,
|
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
|
|
|
child->view->container->content_x + sx,
|
|
|
|
child->view->container->content_y + sy, whole);
|
2018-04-06 04:46:02 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
static void view_child_handle_surface_commit(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_view_child *child =
|
|
|
|
wl_container_of(listener, child, surface_commit);
|
2018-10-06 14:49:33 +10:00
|
|
|
view_child_damage(child, false);
|
2018-04-06 04:46:02 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
static void view_child_handle_surface_new_subsurface(
|
|
|
|
struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_view_child *child =
|
|
|
|
wl_container_of(listener, child, surface_new_subsurface);
|
|
|
|
struct wlr_subsurface *subsurface = data;
|
2019-05-30 00:08:48 +10:00
|
|
|
view_child_subsurface_create(child, subsurface);
|
2018-04-06 04:46:02 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
static void view_child_handle_surface_destroy(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_view_child *child =
|
|
|
|
wl_container_of(listener, child, surface_destroy);
|
|
|
|
view_child_destroy(child);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void view_init_subsurfaces(struct sway_view *view,
|
|
|
|
struct wlr_surface *surface) {
|
|
|
|
struct wlr_subsurface *subsurface;
|
2018-04-22 04:12:49 +10:00
|
|
|
wl_list_for_each(subsurface, &surface->subsurfaces, parent_link) {
|
2018-04-06 04:46:02 +10:00
|
|
|
view_subsurface_create(view, subsurface);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-06 14:49:33 +10:00
|
|
|
static void view_child_handle_surface_map(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_view_child *child =
|
|
|
|
wl_container_of(listener, child, surface_map);
|
2018-11-29 00:08:20 +11:00
|
|
|
child->mapped = true;
|
2018-10-06 14:49:33 +10:00
|
|
|
view_child_damage(child, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void view_child_handle_surface_unmap(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_view_child *child =
|
|
|
|
wl_container_of(listener, child, surface_unmap);
|
|
|
|
view_child_damage(child, true);
|
2018-11-29 00:08:20 +11:00
|
|
|
child->mapped = false;
|
2018-10-06 14:49:33 +10:00
|
|
|
}
|
|
|
|
|
2019-03-09 18:23:20 +11:00
|
|
|
static void view_child_handle_view_unmap(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_view_child *child =
|
|
|
|
wl_container_of(listener, child, view_unmap);
|
|
|
|
view_child_damage(child, true);
|
|
|
|
child->mapped = false;
|
|
|
|
}
|
|
|
|
|
2018-04-06 04:46:02 +10:00
|
|
|
void view_child_init(struct sway_view_child *child,
|
|
|
|
const struct sway_view_child_impl *impl, struct sway_view *view,
|
|
|
|
struct wlr_surface *surface) {
|
|
|
|
child->impl = impl;
|
|
|
|
child->view = view;
|
|
|
|
child->surface = surface;
|
2019-05-30 00:08:48 +10:00
|
|
|
wl_list_init(&child->children);
|
2018-04-06 04:46:02 +10:00
|
|
|
|
|
|
|
wl_signal_add(&surface->events.commit, &child->surface_commit);
|
|
|
|
child->surface_commit.notify = view_child_handle_surface_commit;
|
|
|
|
wl_signal_add(&surface->events.new_subsurface,
|
|
|
|
&child->surface_new_subsurface);
|
|
|
|
child->surface_new_subsurface.notify =
|
|
|
|
view_child_handle_surface_new_subsurface;
|
|
|
|
wl_signal_add(&surface->events.destroy, &child->surface_destroy);
|
|
|
|
child->surface_destroy.notify = view_child_handle_surface_destroy;
|
2018-10-06 14:49:33 +10:00
|
|
|
|
2018-11-29 00:08:20 +11:00
|
|
|
// Not all child views have a map/unmap event
|
2018-10-06 14:49:33 +10:00
|
|
|
child->surface_map.notify = view_child_handle_surface_map;
|
2020-06-13 08:52:26 +10:00
|
|
|
wl_list_init(&child->surface_map.link);
|
2018-10-06 14:49:33 +10:00
|
|
|
child->surface_unmap.notify = view_child_handle_surface_unmap;
|
2020-06-13 08:52:26 +10:00
|
|
|
wl_list_init(&child->surface_unmap.link);
|
2018-10-06 14:49:33 +10:00
|
|
|
|
2019-03-09 18:23:20 +11:00
|
|
|
wl_signal_add(&view->events.unmap, &child->view_unmap);
|
|
|
|
child->view_unmap.notify = view_child_handle_view_unmap;
|
|
|
|
|
2020-02-18 09:12:04 +11:00
|
|
|
struct sway_workspace *workspace = child->view->container->workspace;
|
|
|
|
if (workspace) {
|
|
|
|
wlr_surface_send_enter(child->surface, workspace->output->wlr_output);
|
|
|
|
}
|
2018-04-07 00:26:32 +10:00
|
|
|
|
2018-04-06 04:46:02 +10:00
|
|
|
view_init_subsurfaces(child->view, surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_child_destroy(struct sway_view_child *child) {
|
2018-11-29 00:08:20 +11:00
|
|
|
if (child->mapped && child->view->container != NULL) {
|
2018-11-28 07:13:08 +11:00
|
|
|
view_child_damage(child, true);
|
|
|
|
}
|
|
|
|
|
2019-05-30 00:08:48 +10:00
|
|
|
if (child->parent != NULL) {
|
|
|
|
wl_list_remove(&child->link);
|
|
|
|
child->parent = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_view_child *subchild, *tmpchild;
|
|
|
|
wl_list_for_each_safe(subchild, tmpchild, &child->children, link) {
|
|
|
|
wl_list_remove(&subchild->link);
|
|
|
|
subchild->parent = NULL;
|
|
|
|
}
|
|
|
|
|
2018-04-06 04:46:02 +10:00
|
|
|
wl_list_remove(&child->surface_commit.link);
|
|
|
|
wl_list_remove(&child->surface_destroy.link);
|
2020-06-13 08:52:26 +10:00
|
|
|
wl_list_remove(&child->surface_map.link);
|
|
|
|
wl_list_remove(&child->surface_unmap.link);
|
2019-03-09 18:23:20 +11:00
|
|
|
wl_list_remove(&child->view_unmap.link);
|
2020-06-13 08:28:47 +10:00
|
|
|
wl_list_remove(&child->surface_new_subsurface.link);
|
2018-04-06 04:46:02 +10:00
|
|
|
|
|
|
|
if (child->impl && child->impl->destroy) {
|
|
|
|
child->impl->destroy(child);
|
|
|
|
} else {
|
|
|
|
free(child);
|
|
|
|
}
|
|
|
|
}
|
2018-05-05 12:36:50 +10:00
|
|
|
|
2018-06-30 15:00:24 +10:00
|
|
|
struct sway_view *view_from_wlr_surface(struct wlr_surface *wlr_surface) {
|
|
|
|
if (wlr_surface_is_xdg_surface(wlr_surface)) {
|
|
|
|
struct wlr_xdg_surface *xdg_surface =
|
|
|
|
wlr_xdg_surface_from_wlr_surface(wlr_surface);
|
|
|
|
return view_from_wlr_xdg_surface(xdg_surface);
|
|
|
|
}
|
2018-11-18 10:33:06 +11:00
|
|
|
#if HAVE_XWAYLAND
|
2018-06-30 15:00:24 +10:00
|
|
|
if (wlr_surface_is_xwayland_surface(wlr_surface)) {
|
|
|
|
struct wlr_xwayland_surface *xsurface =
|
|
|
|
wlr_xwayland_surface_from_wlr_surface(wlr_surface);
|
|
|
|
return view_from_wlr_xwayland_surface(xsurface);
|
|
|
|
}
|
2018-07-25 07:37:41 +10:00
|
|
|
#endif
|
2018-06-30 15:00:24 +10:00
|
|
|
if (wlr_surface_is_subsurface(wlr_surface)) {
|
|
|
|
struct wlr_subsurface *subsurface =
|
|
|
|
wlr_subsurface_from_wlr_surface(wlr_surface);
|
|
|
|
return view_from_wlr_surface(subsurface->parent);
|
|
|
|
}
|
|
|
|
if (wlr_surface_is_layer_surface(wlr_surface)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-07-10 07:59:57 +10:00
|
|
|
const char *role = wlr_surface->role ? wlr_surface->role->name : NULL;
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Surface of unknown type (role %s): %p",
|
2018-07-10 07:59:57 +10:00
|
|
|
role, wlr_surface);
|
2018-06-30 15:00:24 +10:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-11-24 12:42:18 +11:00
|
|
|
static char *escape_pango_markup(const char *buffer) {
|
|
|
|
size_t length = escape_markup_text(buffer, NULL);
|
|
|
|
char *escaped_title = calloc(length + 1, sizeof(char));
|
|
|
|
escape_markup_text(buffer, escaped_title);
|
|
|
|
return escaped_title;
|
|
|
|
}
|
|
|
|
|
2018-05-28 12:03:43 +10:00
|
|
|
static size_t append_prop(char *buffer, const char *value) {
|
|
|
|
if (!value) {
|
|
|
|
return 0;
|
|
|
|
}
|
2018-11-25 19:09:32 +11:00
|
|
|
// If using pango_markup in font, we need to escape all markup chars
|
|
|
|
// from values to make sure tags are not inserted by clients
|
|
|
|
if (config->pango_markup) {
|
2018-11-24 12:42:18 +11:00
|
|
|
char *escaped_value = escape_pango_markup(value);
|
|
|
|
lenient_strcat(buffer, escaped_value);
|
|
|
|
size_t len = strlen(escaped_value);
|
|
|
|
free(escaped_value);
|
|
|
|
return len;
|
|
|
|
} else {
|
|
|
|
lenient_strcat(buffer, value);
|
|
|
|
return strlen(value);
|
|
|
|
}
|
2018-05-28 12:03:43 +10:00
|
|
|
}
|
|
|
|
|
2018-05-05 18:18:54 +10:00
|
|
|
/**
|
|
|
|
* Calculate and return the length of the formatted title.
|
|
|
|
* If buffer is not NULL, also populate the buffer with the formatted title.
|
|
|
|
*/
|
|
|
|
static size_t parse_title_format(struct sway_view *view, char *buffer) {
|
2018-05-05 12:36:50 +10:00
|
|
|
if (!view->title_format || strcmp(view->title_format, "%title") == 0) {
|
2018-11-25 19:09:32 +11:00
|
|
|
return append_prop(buffer, view_get_title(view));
|
2018-05-05 12:36:50 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t len = 0;
|
|
|
|
char *format = view->title_format;
|
|
|
|
char *next = strchr(format, '%');
|
|
|
|
while (next) {
|
2018-05-25 21:07:59 +10:00
|
|
|
// Copy everything up to the %
|
|
|
|
lenient_strncat(buffer, format, next - format);
|
2018-05-05 18:18:54 +10:00
|
|
|
len += next - format;
|
2018-05-05 12:36:50 +10:00
|
|
|
format = next;
|
|
|
|
|
|
|
|
if (strncmp(next, "%title", 6) == 0) {
|
2018-05-28 12:03:43 +10:00
|
|
|
len += append_prop(buffer, view_get_title(view));
|
2018-05-05 12:36:50 +10:00
|
|
|
format += 6;
|
2018-05-27 09:50:38 +10:00
|
|
|
} else if (strncmp(next, "%app_id", 7) == 0) {
|
2018-05-28 12:03:43 +10:00
|
|
|
len += append_prop(buffer, view_get_app_id(view));
|
2018-05-27 09:50:38 +10:00
|
|
|
format += 7;
|
2018-05-05 12:36:50 +10:00
|
|
|
} else if (strncmp(next, "%class", 6) == 0) {
|
2018-05-28 12:03:43 +10:00
|
|
|
len += append_prop(buffer, view_get_class(view));
|
2018-05-05 12:36:50 +10:00
|
|
|
format += 6;
|
|
|
|
} else if (strncmp(next, "%instance", 9) == 0) {
|
2018-05-28 12:03:43 +10:00
|
|
|
len += append_prop(buffer, view_get_instance(view));
|
2018-05-05 12:36:50 +10:00
|
|
|
format += 9;
|
|
|
|
} else if (strncmp(next, "%shell", 6) == 0) {
|
2018-05-28 12:03:43 +10:00
|
|
|
len += append_prop(buffer, view_get_shell(view));
|
2018-05-05 12:36:50 +10:00
|
|
|
format += 6;
|
|
|
|
} else {
|
2018-05-25 21:07:59 +10:00
|
|
|
lenient_strcat(buffer, "%");
|
2018-05-05 12:36:50 +10:00
|
|
|
++format;
|
2018-05-05 18:18:54 +10:00
|
|
|
++len;
|
2018-05-05 12:36:50 +10:00
|
|
|
}
|
|
|
|
next = strchr(format, '%');
|
|
|
|
}
|
2018-05-25 21:07:59 +10:00
|
|
|
lenient_strcat(buffer, format);
|
2018-05-05 18:18:54 +10:00
|
|
|
len += strlen(format);
|
2018-05-05 12:36:50 +10:00
|
|
|
|
2018-05-05 18:18:54 +10:00
|
|
|
return len;
|
2018-05-05 12:36:50 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
void view_update_title(struct sway_view *view, bool force) {
|
|
|
|
const char *title = view_get_title(view);
|
|
|
|
|
|
|
|
if (!force) {
|
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 (title && view->container->title &&
|
|
|
|
strcmp(title, view->container->title) == 0) {
|
2018-05-05 12:36:50 +10:00
|
|
|
return;
|
|
|
|
}
|
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 (!title && !view->container->title) {
|
2018-05-05 12:36:50 +10:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
free(view->container->title);
|
|
|
|
free(view->container->formatted_title);
|
2018-05-05 12:36:50 +10:00
|
|
|
if (title) {
|
2018-05-05 18:18:54 +10:00
|
|
|
size_t len = parse_title_format(view, NULL);
|
2018-05-08 02:30:45 +10:00
|
|
|
char *buffer = calloc(len + 1, sizeof(char));
|
2018-05-05 18:18:54 +10:00
|
|
|
if (!sway_assert(buffer, "Unable to allocate title string")) {
|
|
|
|
return;
|
2018-05-05 12:36:50 +10:00
|
|
|
}
|
2018-05-05 18:18:54 +10:00
|
|
|
parse_title_format(view, buffer);
|
|
|
|
|
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
|
|
|
view->container->title = strdup(title);
|
|
|
|
view->container->formatted_title = buffer;
|
2018-05-05 12:36:50 +10:00
|
|
|
} else {
|
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
|
|
|
view->container->title = NULL;
|
|
|
|
view->container->formatted_title = NULL;
|
2018-05-05 12:36:50 +10:00
|
|
|
}
|
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_calculate_title_height(view->container);
|
2018-05-05 18:25:31 +10:00
|
|
|
config_update_font_height(false);
|
2018-06-03 07:32:18 +10:00
|
|
|
|
|
|
|
// Update title after the global font height is updated
|
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_update_title_textures(view->container);
|
2018-07-14 02:19:16 +10:00
|
|
|
|
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
|
|
|
ipc_event_window(view->container, "title");
|
2019-08-20 19:30:09 +10:00
|
|
|
|
2020-07-02 20:14:52 +10:00
|
|
|
if (view->foreign_toplevel && title) {
|
2019-08-20 19:30:09 +10:00
|
|
|
wlr_foreign_toplevel_handle_v1_set_title(view->foreign_toplevel, title);
|
|
|
|
}
|
2018-05-05 12:36:50 +10:00
|
|
|
}
|
2018-05-14 22:47:10 +10:00
|
|
|
|
2018-05-20 09:11:55 +10:00
|
|
|
bool view_is_visible(struct sway_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 (view->container->node.destroying) {
|
2018-05-20 09:11:55 +10:00
|
|
|
return false;
|
|
|
|
}
|
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_workspace *workspace = view->container->workspace;
|
2019-04-01 14:27:18 +11:00
|
|
|
if (!workspace && view->container->fullscreen_mode != FULLSCREEN_GLOBAL) {
|
|
|
|
bool fs_global_descendant = false;
|
|
|
|
struct sway_container *parent = view->container->parent;
|
|
|
|
while (parent) {
|
|
|
|
if (parent->fullscreen_mode == FULLSCREEN_GLOBAL) {
|
|
|
|
fs_global_descendant = true;
|
|
|
|
}
|
|
|
|
parent = parent->parent;
|
|
|
|
}
|
|
|
|
if (!fs_global_descendant) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-07-26 22:27:42 +10:00
|
|
|
}
|
2020-11-03 16:16:15 +11:00
|
|
|
|
|
|
|
if (!container_is_sticky_or_child(view->container) && workspace &&
|
|
|
|
!workspace_is_visible(workspace)) {
|
2018-09-28 17:02:35 +10:00
|
|
|
return false;
|
|
|
|
}
|
2018-05-20 09:11:55 +10:00
|
|
|
// Check view isn't in a tabbed or stacked container on an inactive tab
|
2018-10-18 22:20:00 +11:00
|
|
|
struct sway_seat *seat = input_manager_current_seat();
|
2018-09-16 22:01:54 +10:00
|
|
|
struct sway_container *con = view->container;
|
|
|
|
while (con) {
|
|
|
|
enum sway_container_layout layout = container_parent_layout(con);
|
2018-09-28 17:02:35 +10:00
|
|
|
if ((layout == L_TABBED || layout == L_STACKED)
|
|
|
|
&& !container_is_floating(con)) {
|
2018-09-16 22:01:54 +10:00
|
|
|
struct sway_node *parent = con->parent ?
|
|
|
|
&con->parent->node : &con->workspace->node;
|
|
|
|
if (seat_get_active_tiling_child(seat, parent) != &con->node) {
|
2018-05-20 09:11:55 +10:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2018-09-16 22:01:54 +10:00
|
|
|
con = con->parent;
|
2018-05-20 09:11:55 +10:00
|
|
|
}
|
|
|
|
// Check view isn't hidden by another fullscreen view
|
2019-01-25 09:29:21 +11:00
|
|
|
struct sway_container *fs = root->fullscreen_global ?
|
|
|
|
root->fullscreen_global : workspace->fullscreen;
|
|
|
|
if (fs && !container_is_fullscreen_or_child(view->container) &&
|
|
|
|
!container_is_transient_for(view->container, fs)) {
|
|
|
|
return false;
|
2018-05-20 09:11:55 +10:00
|
|
|
}
|
2018-05-24 22:30:44 +10:00
|
|
|
return true;
|
2018-05-20 09:11:55 +10:00
|
|
|
}
|
2018-07-15 22:43:33 +10:00
|
|
|
|
|
|
|
void view_set_urgent(struct sway_view *view, bool enable) {
|
2018-07-17 10:27:03 +10:00
|
|
|
if (view_is_urgent(view) == enable) {
|
|
|
|
return;
|
|
|
|
}
|
2018-07-15 22:43:33 +10:00
|
|
|
if (enable) {
|
2018-10-18 22:20:00 +11:00
|
|
|
struct sway_seat *seat = input_manager_current_seat();
|
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 (seat_get_focused_container(seat) == view->container) {
|
2018-07-15 22:43:33 +10:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &view->urgent);
|
|
|
|
} else {
|
|
|
|
view->urgent = (struct timespec){ 0 };
|
|
|
|
if (view->urgent_timer) {
|
|
|
|
wl_event_source_remove(view->urgent_timer);
|
|
|
|
view->urgent_timer = NULL;
|
|
|
|
}
|
|
|
|
}
|
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_damage_whole(view->container);
|
2018-07-15 22:43:33 +10:00
|
|
|
|
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
|
|
|
ipc_event_window(view->container, "urgent");
|
2018-07-16 08:13:58 +10:00
|
|
|
|
2019-01-28 20:06:42 +11:00
|
|
|
if (!container_is_scratchpad_hidden(view->container)) {
|
2018-09-04 22:37:03 +10:00
|
|
|
workspace_detect_urgent(view->container->workspace);
|
|
|
|
}
|
2018-07-15 22:43:33 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
bool view_is_urgent(struct sway_view *view) {
|
|
|
|
return view->urgent.tv_sec || view->urgent.tv_nsec;
|
|
|
|
}
|
Correctly track saved surfaces during multiple transactions
Fixes #2364.
Suppose a view is 600px wide, and we tell it to resize to 601px during a
resize operation. We create a transaction, save the 600px buffer and
send the configure. This buffer is saved into the associated
instruction, and is rendered while we wait for the view to commit a
601px buffer.
Before the view commits the 601px buffer, suppose we tell it to resize
to 602px. The new transaction will also save the buffer, but it's still
the 600px buffer because we haven't received a new one yet.
Then suppose the view commits its original 601px buffer. This completes
the first transaction, so we apply the 601px width to the container.
There's still the second (now only) transaction remaining, so we render
the saved buffer from that. But this is still the 600px buffer, and we
believe it's 601px. Whoops.
The problem here is we can't stack buffers like this. So this commit
removes the saved buffer from the instructions, places it in the view
instead, and re-saves the latest buffer every time the view completes a
transaction and still has further pending transactions.
As saved buffers are now specific to views rather than instructions, the
functions for saving and removing the saved buffer have been moved to
view.c.
The calls to save and restore the buffer have been relocated to more
appropriate functions too, favouring transaction_commit and
transaction_apply rather than transaction_add_container and
transaction_destroy.
2018-08-01 16:23:11 +10:00
|
|
|
|
|
|
|
void view_remove_saved_buffer(struct sway_view *view) {
|
2020-05-31 09:37:43 +10:00
|
|
|
if (!sway_assert(!wl_list_empty(&view->saved_buffers), "Expected a saved buffer")) {
|
Correctly track saved surfaces during multiple transactions
Fixes #2364.
Suppose a view is 600px wide, and we tell it to resize to 601px during a
resize operation. We create a transaction, save the 600px buffer and
send the configure. This buffer is saved into the associated
instruction, and is rendered while we wait for the view to commit a
601px buffer.
Before the view commits the 601px buffer, suppose we tell it to resize
to 602px. The new transaction will also save the buffer, but it's still
the 600px buffer because we haven't received a new one yet.
Then suppose the view commits its original 601px buffer. This completes
the first transaction, so we apply the 601px width to the container.
There's still the second (now only) transaction remaining, so we render
the saved buffer from that. But this is still the 600px buffer, and we
believe it's 601px. Whoops.
The problem here is we can't stack buffers like this. So this commit
removes the saved buffer from the instructions, places it in the view
instead, and re-saves the latest buffer every time the view completes a
transaction and still has further pending transactions.
As saved buffers are now specific to views rather than instructions, the
functions for saving and removing the saved buffer have been moved to
view.c.
The calls to save and restore the buffer have been relocated to more
appropriate functions too, favouring transaction_commit and
transaction_apply rather than transaction_add_container and
transaction_destroy.
2018-08-01 16:23:11 +10:00
|
|
|
return;
|
|
|
|
}
|
2020-05-31 09:37:43 +10:00
|
|
|
struct sway_saved_buffer *saved_buf, *tmp;
|
|
|
|
wl_list_for_each_safe(saved_buf, tmp, &view->saved_buffers, link) {
|
|
|
|
wlr_buffer_unlock(&saved_buf->buffer->base);
|
|
|
|
wl_list_remove(&saved_buf->link);
|
|
|
|
free(saved_buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void view_save_buffer_iterator(struct wlr_surface *surface,
|
|
|
|
int sx, int sy, void *data) {
|
|
|
|
struct sway_view *view = data;
|
|
|
|
|
|
|
|
if (surface && wlr_surface_has_buffer(surface)) {
|
|
|
|
wlr_buffer_lock(&surface->buffer->base);
|
|
|
|
struct sway_saved_buffer *saved_buffer = calloc(1, sizeof(struct sway_saved_buffer));
|
|
|
|
saved_buffer->buffer = surface->buffer;
|
|
|
|
saved_buffer->width = surface->current.width;
|
|
|
|
saved_buffer->height = surface->current.height;
|
|
|
|
saved_buffer->x = sx;
|
|
|
|
saved_buffer->y = sy;
|
2020-06-05 22:13:18 +10:00
|
|
|
saved_buffer->transform = surface->current.transform;
|
2020-04-28 00:41:54 +10:00
|
|
|
wlr_surface_get_buffer_source_box(surface, &saved_buffer->source_box);
|
2020-05-31 09:37:43 +10:00
|
|
|
wl_list_insert(&view->saved_buffers, &saved_buffer->link);
|
|
|
|
}
|
Correctly track saved surfaces during multiple transactions
Fixes #2364.
Suppose a view is 600px wide, and we tell it to resize to 601px during a
resize operation. We create a transaction, save the 600px buffer and
send the configure. This buffer is saved into the associated
instruction, and is rendered while we wait for the view to commit a
601px buffer.
Before the view commits the 601px buffer, suppose we tell it to resize
to 602px. The new transaction will also save the buffer, but it's still
the 600px buffer because we haven't received a new one yet.
Then suppose the view commits its original 601px buffer. This completes
the first transaction, so we apply the 601px width to the container.
There's still the second (now only) transaction remaining, so we render
the saved buffer from that. But this is still the 600px buffer, and we
believe it's 601px. Whoops.
The problem here is we can't stack buffers like this. So this commit
removes the saved buffer from the instructions, places it in the view
instead, and re-saves the latest buffer every time the view completes a
transaction and still has further pending transactions.
As saved buffers are now specific to views rather than instructions, the
functions for saving and removing the saved buffer have been moved to
view.c.
The calls to save and restore the buffer have been relocated to more
appropriate functions too, favouring transaction_commit and
transaction_apply rather than transaction_add_container and
transaction_destroy.
2018-08-01 16:23:11 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
void view_save_buffer(struct sway_view *view) {
|
2020-05-31 09:37:43 +10:00
|
|
|
if (!sway_assert(wl_list_empty(&view->saved_buffers), "Didn't expect saved buffer")) {
|
Correctly track saved surfaces during multiple transactions
Fixes #2364.
Suppose a view is 600px wide, and we tell it to resize to 601px during a
resize operation. We create a transaction, save the 600px buffer and
send the configure. This buffer is saved into the associated
instruction, and is rendered while we wait for the view to commit a
601px buffer.
Before the view commits the 601px buffer, suppose we tell it to resize
to 602px. The new transaction will also save the buffer, but it's still
the 600px buffer because we haven't received a new one yet.
Then suppose the view commits its original 601px buffer. This completes
the first transaction, so we apply the 601px width to the container.
There's still the second (now only) transaction remaining, so we render
the saved buffer from that. But this is still the 600px buffer, and we
believe it's 601px. Whoops.
The problem here is we can't stack buffers like this. So this commit
removes the saved buffer from the instructions, places it in the view
instead, and re-saves the latest buffer every time the view completes a
transaction and still has further pending transactions.
As saved buffers are now specific to views rather than instructions, the
functions for saving and removing the saved buffer have been moved to
view.c.
The calls to save and restore the buffer have been relocated to more
appropriate functions too, favouring transaction_commit and
transaction_apply rather than transaction_add_container and
transaction_destroy.
2018-08-01 16:23:11 +10:00
|
|
|
view_remove_saved_buffer(view);
|
|
|
|
}
|
2020-05-31 09:37:43 +10:00
|
|
|
view_for_each_surface(view, view_save_buffer_iterator, view);
|
Correctly track saved surfaces during multiple transactions
Fixes #2364.
Suppose a view is 600px wide, and we tell it to resize to 601px during a
resize operation. We create a transaction, save the 600px buffer and
send the configure. This buffer is saved into the associated
instruction, and is rendered while we wait for the view to commit a
601px buffer.
Before the view commits the 601px buffer, suppose we tell it to resize
to 602px. The new transaction will also save the buffer, but it's still
the 600px buffer because we haven't received a new one yet.
Then suppose the view commits its original 601px buffer. This completes
the first transaction, so we apply the 601px width to the container.
There's still the second (now only) transaction remaining, so we render
the saved buffer from that. But this is still the 600px buffer, and we
believe it's 601px. Whoops.
The problem here is we can't stack buffers like this. So this commit
removes the saved buffer from the instructions, places it in the view
instead, and re-saves the latest buffer every time the view completes a
transaction and still has further pending transactions.
As saved buffers are now specific to views rather than instructions, the
functions for saving and removing the saved buffer have been moved to
view.c.
The calls to save and restore the buffer have been relocated to more
appropriate functions too, favouring transaction_commit and
transaction_apply rather than transaction_add_container and
transaction_destroy.
2018-08-01 16:23:11 +10:00
|
|
|
}
|
2018-10-07 21:40:05 +11:00
|
|
|
|
|
|
|
bool view_is_transient_for(struct sway_view *child,
|
|
|
|
struct sway_view *ancestor) {
|
|
|
|
return child->impl->is_transient_for &&
|
|
|
|
child->impl->is_transient_for(child, ancestor);
|
|
|
|
}
|