Implement KDE's server-side decoration protocol

This commit is contained in:
Drew DeVault 2017-04-28 20:32:05 -04:00
parent 1376de4f46
commit a5c07dde6a
5 changed files with 198 additions and 6 deletions

View file

@ -345,6 +345,8 @@ static bool handle_view_created(wlc_handle handle) {
swayc_t *current_ws = swayc_active_workspace();
bool return_to_workspace = false;
struct wl_client *client = wlc_view_get_wl_client(handle);
struct wl_resource *resource = wlc_surface_get_wl_resource(
wlc_view_get_surface(handle));
pid_t pid;
struct panel_config *panel_config = NULL;
struct background_config *background_config = NULL;
@ -483,6 +485,14 @@ static bool handle_view_created(wlc_handle handle) {
if (workspace && workspace->fullscreen) {
set_focused_container(workspace->fullscreen);
}
for (int i = 0; i < decoration_state.csd_resources->length; ++i) {
struct wl_resource *res = decoration_state.csd_resources->items[i];
if (res == resource) {
list_del(decoration_state.csd_resources, i);
server_decoration_enable_csd(handle);
break;
}
}
} else {
swayc_t *output = swayc_parent_by_type(focused, C_OUTPUT);
wlc_handle *h = malloc(sizeof(wlc_handle));