From: Junseok Kim Date: Thu, 16 Jan 2025 02:11:25 +0000 (+0900) Subject: wtz-screen: move surface assign request from wtz_shell to wtz_screen X-Git-Tag: accepted/tizen/unified/20250313.070945~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b184679cbce5d09fcf4feeaa67bb56efe553efb;p=platform%2Fcore%2Fuifw%2Fwayland-extension.git wtz-screen: move surface assign request from wtz_shell to wtz_screen Change-Id: I8a9d8aafbdd2df5a3f04c35c5ff03a9d91c9cc7b --- diff --git a/configure.ac b/configure.ac index 8538dec..b966856 100644 --- a/configure.ac +++ b/configure.ac @@ -98,6 +98,8 @@ AC_CONFIG_FILES([ src/template-client.pc src/tizen-remote-surface-server.pc src/tizen-remote-surface-client.pc + src/wtz-screen-server.pc + src/wtz-screen-client.pc src/wayland-protocols.pc ]) AC_OUTPUT diff --git a/protocol/tizen/wtz-screen.xml b/protocol/tizen/wtz-screen.xml index ac04982..dd0a9f4 100644 --- a/protocol/tizen/wtz-screen.xml +++ b/protocol/tizen/wtz-screen.xml @@ -95,6 +95,13 @@ + + + Request to assign wtz_surface to the current screen. + + + + diff --git a/protocol/tizen/wtz-shell.xml b/protocol/tizen/wtz-shell.xml index 377179e..1d36687 100644 --- a/protocol/tizen/wtz-shell.xml +++ b/protocol/tizen/wtz-shell.xml @@ -87,14 +87,6 @@ summary="the tizen screen object"/> - - - This assign the surface on a given screen. - - - - diff --git a/src/wtz-screen-client.pc.in b/src/wtz-screen-client.pc.in new file mode 100644 index 0000000..0c3c56c --- /dev/null +++ b/src/wtz-screen-client.pc.in @@ -0,0 +1,13 @@ +prefix=@prefix@ +exec_prefix=${prefix} +datarootdir=@datarootdir@ +pkgdatadir=@datadir@/@PACKAGE@ +libdir=@libdir@ +includedir=@includedir@ + +Name: wtz-screen-client +Description: wtz-screen protocol for TIZEN +Version: @WAYLAND_EXTENSION_VERSION@ +Requires: wayland-client wtz-shell-client +Cflags: -I${includedir}/wayland-extension +Libs: -L${libdir} -lwtz-shell-client -lwtz-screen-client diff --git a/src/wtz-screen-server.pc.in b/src/wtz-screen-server.pc.in new file mode 100644 index 0000000..a7e8fa7 --- /dev/null +++ b/src/wtz-screen-server.pc.in @@ -0,0 +1,13 @@ +prefix=@prefix@ +exec_prefix=${prefix} +datarootdir=@datarootdir@ +pkgdatadir=@datadir@/@PACKAGE@ +libdir=@libdir@ +includedir=@includedir@ + +Name: wtz-screen-server +Description: wtz-screen protocol for TIZEN +Version: @WAYLAND_EXTENSION_VERSION@ +Requires: wayland-server wtz-shell-server +Cflags: -I${includedir}/wayland-extension +Libs: -L${libdir} -lwtz-shell-server -lwtz-screen-server