xdg-shell: Add show_window_menu request

This commit is contained in:
Jasper St. Pierre
2014-03-13 11:04:53 -04:00
committed by Kristian Høgsberg
parent de8bd50d35
commit 81ff075bf4
3 changed files with 39 additions and 49 deletions
+12
View File
@@ -3416,6 +3416,17 @@ xdg_surface_set_app_id(struct wl_client *client,
shsurf->class = strdup(app_id);
}
static void
xdg_surface_show_window_menu(struct wl_client *client,
struct wl_resource *surface_resource,
struct wl_resource *seat_resource,
uint32_t serial,
int32_t x,
int32_t y)
{
/* TODO */
}
static void
xdg_surface_set_title(struct wl_client *client,
struct wl_resource *resource, const char *title)
@@ -3528,6 +3539,7 @@ static const struct xdg_surface_interface xdg_surface_implementation = {
xdg_surface_set_margin,
xdg_surface_set_title,
xdg_surface_set_app_id,
xdg_surface_show_window_menu,
xdg_surface_move,
xdg_surface_resize,
xdg_surface_ack_configure,