ecore-wayland: Update xdg shell protocol file

Summary: This was a file that should have been updated with
the bump to xdg_shell version 5 however it was not pushed with that
update.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-06-25 15:11:31 -04:00
parent 30363956f1
commit 5793a62fc8
1 changed files with 10 additions and 10 deletions

View File

@ -50,7 +50,8 @@ static const struct wl_interface *types[] = {
NULL, NULL,
NULL, NULL,
NULL, NULL,
&xdg_surface_interface, NULL,
&wl_surface_interface,
&wl_seat_interface, &wl_seat_interface,
NULL, NULL,
NULL, NULL,
@ -64,10 +65,9 @@ static const struct wl_interface *types[] = {
}; };
static const struct wl_message xdg_shell_requests[] = { static const struct wl_message xdg_shell_requests[] = {
{ "destroy", "", types + 0 },
{ "use_unstable_version", "i", types + 0 }, { "use_unstable_version", "i", types + 0 },
{ "get_xdg_surface", "no", types + 4 }, { "get_xdg_surface", "no", types + 4 },
{ "get_xdg_popup", "nooouii", types + 6 }, { "get_xdg_popup", "nooouiiu", types + 6 },
{ "pong", "u", types + 0 }, { "pong", "u", types + 0 },
}; };
@ -77,23 +77,23 @@ static const struct wl_message xdg_shell_events[] = {
WL_EXPORT const struct wl_interface xdg_shell_interface = { WL_EXPORT const struct wl_interface xdg_shell_interface = {
"xdg_shell", 1, "xdg_shell", 1,
5, xdg_shell_requests, 4, xdg_shell_requests,
1, xdg_shell_events, 1, xdg_shell_events,
}; };
static const struct wl_message xdg_surface_requests[] = { static const struct wl_message xdg_surface_requests[] = {
{ "destroy", "", types + 0 }, { "destroy", "", types + 0 },
{ "set_parent", "?o", types + 13 }, { "set_parent", "?o", types + 14 },
{ "set_title", "s", types + 0 }, { "set_title", "s", types + 0 },
{ "set_app_id", "s", types + 0 }, { "set_app_id", "s", types + 0 },
{ "show_window_menu", "ouii", types + 14 }, { "show_window_menu", "ouii", types + 15 },
{ "move", "ou", types + 18 }, { "move", "ou", types + 19 },
{ "resize", "ouu", types + 20 }, { "resize", "ouu", types + 21 },
{ "ack_configure", "u", types + 0 }, { "ack_configure", "u", types + 0 },
{ "set_window_geometry", "iiii", types + 0 }, { "set_window_geometry", "iiii", types + 0 },
{ "set_maximized", "", types + 0 }, { "set_maximized", "", types + 0 },
{ "unset_maximized", "", types + 0 }, { "unset_maximized", "", types + 0 },
{ "set_fullscreen", "?o", types + 23 }, { "set_fullscreen", "?o", types + 24 },
{ "unset_fullscreen", "", types + 0 }, { "unset_fullscreen", "", types + 0 },
{ "set_minimized", "", types + 0 }, { "set_minimized", "", types + 0 },
}; };
@ -114,7 +114,7 @@ static const struct wl_message xdg_popup_requests[] = {
}; };
static const struct wl_message xdg_popup_events[] = { static const struct wl_message xdg_popup_events[] = {
{ "popup_done", "", types + 0 }, { "popup_done", "u", types + 0 },
}; };
WL_EXPORT const struct wl_interface xdg_popup_interface = { WL_EXPORT const struct wl_interface xdg_popup_interface = {