summaryrefslogtreecommitdiff
path: root/mate-panel/wayland-backend.c
blob: 93e1ea9ddbf54c465ab7055c57378b73a1eb9758 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 * wayland-backend.c: Support for running on Wayland compositors
 *
 * Copyright (C) 2019 William Wold
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301, USA.
 *
 * Authors:
 *	William Wold <wm@wmww.sh>
 */

#include <config.h>

#include <gtk-layer-shell.h>

#include "wayland-backend.h"

void
wayland_panel_toplevel_init (PanelToplevel* toplevel)
{
	GtkWindow* window;

	window = GTK_WINDOW (toplevel);
	gtk_layer_init_for_window (window);
	gtk_layer_set_layer (window, GTK_LAYER_SHELL_LAYER_TOP);
	gtk_layer_set_namespace (window, "panel");
	gtk_layer_auto_exclusive_zone_enable (window);
	wayland_panel_toplevel_update_placement (toplevel);
}

void
wayland_panel_toplevel_update_placement (PanelToplevel* toplevel)
{
	GtkWindow* window;
	gboolean expand;
	PanelOrientation orientation;
	gboolean anchor[GTK_LAYER_SHELL_EDGE_ENTRY_NUMBER];

	window = GTK_WINDOW (toplevel);
	expand = panel_toplevel_get_expand (toplevel);
	orientation = panel_toplevel_get_orientation (toplevel);
	for (int i = 0; i < GTK_LAYER_SHELL_EDGE_ENTRY_NUMBER; i++)
		anchor[i] = expand;

	switch (orientation) {
	case PANEL_ORIENTATION_LEFT:
		anchor[GTK_LAYER_SHELL_EDGE_LEFT] = TRUE;
		anchor[GTK_LAYER_SHELL_EDGE_RIGHT] = FALSE;
		break;
	case PANEL_ORIENTATION_RIGHT:
		anchor[GTK_LAYER_SHELL_EDGE_RIGHT] = TRUE;
		anchor[GTK_LAYER_SHELL_EDGE_LEFT] = FALSE;
		break;
	case PANEL_ORIENTATION_TOP:
		anchor[GTK_LAYER_SHELL_EDGE_TOP] = TRUE;
		anchor[GTK_LAYER_SHELL_EDGE_BOTTOM] = FALSE;
		break;
	case PANEL_ORIENTATION_BOTTOM:
		anchor[GTK_LAYER_SHELL_EDGE_BOTTOM] = TRUE;
		anchor[GTK_LAYER_SHELL_EDGE_TOP] = FALSE;
		break;
	default:
		g_warning ("Invalid panel orientation %d", orientation);
	}

	for (int i = 0; i < GTK_LAYER_SHELL_EDGE_ENTRY_NUMBER; i++)
		gtk_layer_set_anchor (window, i, anchor[i]);
}