aboutsummaryrefslogtreecommitdiff
path: root/sway/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop')
-rw-r--r--sway/desktop/output.c6
-rw-r--r--sway/desktop/xdg_shell_v6.c22
2 files changed, 24 insertions, 4 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index 033a4c44..99c74d89 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -27,8 +27,8 @@ static void output_frame_view(swayc_t *view, void *data) {
}
// TODO
// - Deal with wlr_output_layout
- int width = sway_view->swayc->width;
- int height = sway_view->swayc->height;
+ int width = sway_view->width;
+ int height = sway_view->height;
int render_width = width * wlr_output->scale;
int render_height = height * wlr_output->scale;
double ox = view->x, oy = view->y;
@@ -122,6 +122,8 @@ void output_add_notify(struct wl_listener *listener, void *data) {
output->resolution.notify = output_resolution_notify;
wl_signal_add(&wlr_output->events.resolution, &output->resolution);
+
+ arrange_windows(output->swayc, -1, -1);
}
void output_remove_notify(struct wl_listener *listener, void *data) {
diff --git a/sway/desktop/xdg_shell_v6.c b/sway/desktop/xdg_shell_v6.c
index 8f1885c1..94682fcd 100644
--- a/sway/desktop/xdg_shell_v6.c
+++ b/sway/desktop/xdg_shell_v6.c
@@ -29,9 +29,24 @@ static const char *get_prop(struct sway_view *view, enum sway_view_prop prop) {
}
static void set_dimensions(struct sway_view *view, int width, int height) {
- if (assert_xdg(view)) {
- wlr_xdg_toplevel_v6_set_size(view->wlr_xdg_surface_v6, width, height);
+ if (!assert_xdg(view)) {
+ return;
}
+ view->sway_xdg_surface_v6->pending_width = width;
+ view->sway_xdg_surface_v6->pending_height = height;
+ wlr_xdg_toplevel_v6_set_size(view->wlr_xdg_surface_v6, width, height);
+}
+
+static void handle_commit(struct wl_listener *listener, void *data) {
+ struct sway_xdg_surface_v6 *sway_surface =
+ wl_container_of(listener, sway_surface, commit);
+ struct sway_view *view = sway_surface->view;
+ sway_log(L_DEBUG, "xdg surface commit %dx%d",
+ sway_surface->pending_width, sway_surface->pending_height);
+ // NOTE: We intentionally discard the view's desired width here
+ // TODO: Don't do that for floating views
+ view->width = sway_surface->pending_width;
+ view->height = sway_surface->pending_height;
}
void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data) {
@@ -72,6 +87,9 @@ void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data) {
// - Look up pid and open on appropriate workspace
// - Set new view to maximized so it behaves nicely
// - Criteria
+
+ sway_surface->commit.notify = handle_commit;
+ wl_signal_add(&xdg_surface->events.commit, &sway_surface->commit);
// TODO: actual focus semantics
swayc_t *parent = root_container.children->items[0];