summaryrefslogtreecommitdiffstats
path: root/sway/desktop/xdg_shell_v6.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/xdg_shell_v6.c')
-rw-r--r--sway/desktop/xdg_shell_v6.c61
1 files changed, 1 insertions, 60 deletions
diff --git a/sway/desktop/xdg_shell_v6.c b/sway/desktop/xdg_shell_v6.c
index e29b46d7..04f3f42c 100644
--- a/sway/desktop/xdg_shell_v6.c
+++ b/sway/desktop/xdg_shell_v6.c
@@ -1,49 +1,10 @@
1#include <stdlib.h> 1#include <stdlib.h>
2#include <wayland-server.h> 2#include <wayland-server.h>
3#include <wlr/types/wlr_xdg_shell_v6.h> 3#include <wlr/types/wlr_xdg_shell_v6.h>
4#include "sway/commands.h"
5#include "sway/container.h"
6#include "sway/focus.h"
7#include "sway/ipc-server.h"
8#include "sway/server.h" 4#include "sway/server.h"
9#include "sway/view.h" 5#include "sway/view.h"
10#include "log.h" 6#include "log.h"
11 7
12// TODO: move elsewhere
13static void temp_ws_cleanup() {
14 swayc_t *op, *ws;
15 int i = 0, j;
16 if (!root_container.children)
17 return;
18 while (i < root_container.children->length) {
19 op = root_container.children->items[i++];
20 if (!op->children)
21 continue;
22 j = 0;
23 while (j < op->children->length) {
24 ws = op->children->items[j++];
25 if (ws->children->length == 0 && ws->floating->length == 0 && ws != op->focused) {
26 if (destroy_workspace(ws)) {
27 j--;
28 }
29 }
30 }
31 }
32}
33
34// TODO: move elsewhere
35static swayc_t *move_focus_to_tiling(swayc_t *focused) {
36 if (focused->is_floating) {
37 if (focused->parent->children->length == 0) {
38 return focused->parent;
39 }
40 // TODO find a better way of doing this
41 // Or to focused container
42 return get_focused_container(focused->parent->children->items[0]);
43 }
44 return focused;
45}
46
47static const char *get_prop(struct sway_view *view, enum sway_view_prop prop) { 8static const char *get_prop(struct sway_view *view, enum sway_view_prop prop) {
48 if (!sway_assert(view->type == SWAY_XDG_SHELL_V6_VIEW, 9 if (!sway_assert(view->type == SWAY_XDG_SHELL_V6_VIEW,
49 "xdg get_prop for non-xdg view!")) { 10 "xdg get_prop for non-xdg view!")) {
@@ -88,30 +49,10 @@ void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data) {
88 sway_surface->view = sway_view; 49 sway_surface->view = sway_view;
89 50
90 // TODO: 51 // TODO:
91 // - Consolodate common logic between shells 52 // - Add to tree
92 // - Wire up listeners 53 // - Wire up listeners
93 // - Handle popups 54 // - Handle popups
94 // - Look up pid and open on appropriate workspace 55 // - Look up pid and open on appropriate workspace
95 // - Set new view to maximized so it behaves nicely 56 // - Set new view to maximized so it behaves nicely
96 // - Criteria 57 // - Criteria
97
98 suspend_workspace_cleanup = true;
99 //swayc_t *current_ws = swayc_active_workspace();
100 swayc_t *prev_focus = get_focused_container(&root_container);
101 swayc_t *focused = move_focus_to_tiling(prev_focus);
102
103 // TODO: fix new_view
104 swayc_t *view = new_view(focused, sway_view);
105 ipc_event_window(view, "new");
106 set_focused_container(view);
107
108 swayc_t *output = swayc_parent_by_type(view, C_OUTPUT);
109 arrange_windows(output, -1, -1);
110
111 swayc_t *workspace = swayc_parent_by_type(focused, C_WORKSPACE);
112 if (workspace && workspace->fullscreen) {
113 set_focused_container(workspace->fullscreen);
114 }
115 suspend_workspace_cleanup = false;
116 temp_ws_cleanup();
117} 58}