aboutsummaryrefslogtreecommitdiff
path: root/sway/extensions.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-11-18 22:14:57 -0500
committerDrew DeVault <sir@cmpwn.com>2015-11-18 22:14:57 -0500
commit65b8a5c3ce023584cdc5dd84394ea1101c9f23e9 (patch)
tree81d7520a1766cdb27be960f25c85d7ead22337c7 /sway/extensions.c
parent82db2a57a9ab171e77a0765df5dd0b2d92cb4f70 (diff)
Add background handling
This does not work as expected. I think the problem is on the wlc side. Please review, @Cloudef. To reproduce the issues: 1. Run sway 2. Open terminal in sway 3. Run swaybg swaybg will create a surface and ask to have it set as the background, but wlc_handle_from_wl_surface_resource will return 0. If the swaybg surface is a shell surface, then it works - but wlc complains about the pointer type and segfaults as soon as the pre-render hook tries to draw the background.
Diffstat (limited to 'sway/extensions.c')
-rw-r--r--sway/extensions.c19
1 files changed, 16 insertions, 3 deletions
diff --git a/sway/extensions.c b/sway/extensions.c
index a37ceaa8..5ef8a0ff 100644
--- a/sway/extensions.c
+++ b/sway/extensions.c
@@ -2,14 +2,26 @@
#include <wlc/wlc-wayland.h>
#include "wayland-desktop-shell-server-protocol.h"
#include "log.h"
+#include "extensions.h"
+
+struct desktop_shell_state desktop_shell;
static void set_background(struct wl_client *client, struct wl_resource *resource,
- struct wl_resource *output, struct wl_resource *surface) {
- sway_log(L_DEBUG, "Surface requesting background for output");
+ struct wl_resource *_output, struct wl_resource *_surface) {
+ wlc_handle output = wlc_handle_from_wl_output_resource(_output);
+ wlc_handle surface = wlc_handle_from_wl_surface_resource(_surface);
+ sway_log(L_DEBUG, "Setting surface %d as background for output %d", (int)surface, (int)output);
+ if (!output || !surface) {
+ return;
+ }
+ struct background_config *config = malloc(sizeof(struct background_config));
+ config->output = output;
+ config->surface = surface;
+ list_add(desktop_shell.backgrounds, config);
}
static struct desktop_shell_interface desktop_shell_implementation = {
- .set_background = set_background,
+ .set_background = set_background
};
static void desktop_shell_bind(struct wl_client *client, void *data,
@@ -29,4 +41,5 @@ static void desktop_shell_bind(struct wl_client *client, void *data,
void register_extensions(void) {
wl_global_create(wlc_get_wl_display(), &desktop_shell_interface, 1, NULL, desktop_shell_bind);
+ desktop_shell.backgrounds = create_list();
}