appcore_ui_base: change version of tizen_policy from 1 to 7. 86/150886/2
authorJunSeok, Kim <juns.kim@samsung.com>
Tue, 19 Sep 2017 04:22:49 +0000 (13:22 +0900)
committerSemun Lee <semun.lee@samsung.com>
Tue, 10 Oct 2017 04:31:50 +0000 (04:31 +0000)
changing version of tizen_policy from 1 to 7 because of tizen_extensions
version up.
And implements dumy callback function for higher version.

Change-Id: I2a7536f282574a4cdd41fc33041880fb8c774466

src/ui_base/appcore_ui_base.c

index 51e3204..90d85a0 100644 (file)
@@ -89,13 +89,119 @@ static struct wl_display *dsp;
 static struct wl_registry *reg;
 static struct tizen_policy *tz_policy;
 
+static void _wl_cb_conformant(void *data,
+               struct tizen_policy *tizen_policy,
+               struct wl_surface *surface_resource,
+               uint32_t is_conformant)
+{
+       ; // nothing to do.
+}
+
+static void _wl_cb_conformant_area(void *data,
+               struct tizen_policy *tizen_policy,
+               struct wl_surface *surface_resource,
+               uint32_t conformant_part,
+               uint32_t state,
+               int32_t x, int32_t y, int32_t w, int32_t h)
+{
+       ; // nothing to do.
+}
+
+static void _wl_cb_notification_done(void *data,
+               struct tizen_policy *tizen_policy,
+               struct wl_surface *surface,
+               int32_t level,
+               uint32_t state)
+{
+       ; // nothing to do.
+}
+
+static void _wl_cb_transient_for_done(void *data,
+               struct tizen_policy *tizen_policy,
+               uint32_t child_id)
+{
+       ; // nothing to do.
+}
+
+static void _wl_cb_scr_mode_done(void *data,
+               struct tizen_policy *tizen_policy,
+               struct wl_surface *surface,
+               uint32_t mode,
+               uint32_t state)
+{
+       ; // nothing to do.
+}
+
+static void _wl_cb_iconify_state_changed(void *data,
+               struct tizen_policy *tizen_policy,
+               struct wl_surface *surface_resource,
+               uint32_t iconified,
+               uint32_t force)
+{
+       ; // nothing to do.
+}
+
+static void _wl_cb_supported_aux_hints(void *data,
+               struct tizen_policy *tizen_policy,
+               struct wl_surface *surface_resource,
+               struct wl_array *hints,
+               uint32_t num_hints)
+{
+       ; // nothing to do.
+}
+
+static void _wl_cb_allowed_aux_hint(void *data,
+               struct tizen_policy *tizen_policy,
+               struct wl_surface *surface_resource,
+               int id)
+{
+       ; // nothing to do.
+}
+
+static void _wl_cb_aux_message(void *data,
+               struct tizen_policy *tizen_policy,
+               struct wl_surface *surface_resource,
+               const char *key,
+               const char *val,
+               struct wl_array *options)
+{
+       ; // nothing to do.
+}
+
+static void _wl_cb_conformant_region(void *data,
+               struct tizen_policy *tizen_policy,
+               struct wl_surface *surface,
+               uint32_t conformant_part,
+               uint32_t state,
+               int32_t x, int32_t y, int32_t w, int32_t h,
+               uint32_t serial)
+{
+       ; // nothing to do.
+}
+
+static const struct tizen_policy_listener _tizen_policy_listener = {
+       _wl_cb_conformant,
+       _wl_cb_conformant_area,
+       _wl_cb_notification_done,
+       _wl_cb_transient_for_done,
+       _wl_cb_scr_mode_done,
+       _wl_cb_iconify_state_changed,
+       _wl_cb_supported_aux_hints,
+       _wl_cb_allowed_aux_hint,
+       _wl_cb_aux_message,
+       _wl_cb_conformant_region,
+};
+
 static void __wl_listener_cb(void *data, struct wl_registry *reg,
                uint32_t id, const char *interface, uint32_t ver)
 {
        if (interface && !strcmp(interface, "tizen_policy")) {
                if (!tz_policy)
                        tz_policy = wl_registry_bind(reg, id,
-                                       &tizen_policy_interface, 1);
+                                       &tizen_policy_interface, 7);
+               if (tz_policy) {
+                       tizen_policy_add_listener(tz_policy, &_tizen_policy_listener, dsp);
+               }
        }
 }