From: Changwoo Kim Date: Mon, 15 Oct 2018 01:35:49 +0000 (+0900) Subject: Remove duplicated function declaration in watch control header X-Git-Tag: submit/tizen/20181128.070347~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F46%2F193846%2F2;p=platform%2Fcore%2Fappfw%2Fwidget-viewer.git Remove duplicated function declaration in watch control header Change-Id: I2cdbb8755af406370241fd9b54afba704a1cec03 Signed-off-by: Changwoo Kim --- diff --git a/watch-control/include/watch_control.h b/watch-control/include/watch_control.h index 03fc2f6..2b6a9b6 100644 --- a/watch-control/include/watch_control.h +++ b/watch-control/include/watch_control.h @@ -48,49 +48,6 @@ extern int watch_manager_add_dead_signal_listener(watch_dead_signal_cb cb, void extern int watch_manager_remove_dead_signal_listener(watch_dead_signal_cb cb); /** - * @brief Gets the opr of the Evas Object - * @since_tizen 3.0 - * @param[out] opr The OPR(On Pixel Ratio) - * @return @c 0 on success, otherwise a negative error value - */ -extern int watch_manager_get_opr(float *opr); - -/** - * @brief Cancels watch's click event. - * @details If you call this function after feeding the mouse down event, the watch will get ON_HOLD events. - * @since_tizen 4.0 - * @param[in] watch A watch object - * @return @c 0 on success, otherwise a negative error value - */ -extern int watch_manager_cancel_click_event(Evas_Object *watch); - -/** - * @brief Changes the policy for sending visibilities - * @details If you turn off, the framework will not send visibility events automatically. - * @since_tizen 4.0 - * @remarks By default, it is enabled - * @param[in] enable Whether it should be enabled or not - * @return @c 0 on success, otherwise a negative error value - */ -extern int watch_manager_change_auto_visibility(bool enable); - -/** - * @brief Sends a paused event to the display server. - * @details It sends a paused event to the display server so that it can pass on the watch application. - * @since_tizen 4.0 - * @return @c 0 on success, otherwise a negative error value - */ -extern int watch_manager_pause(void); - -/** - * @brief Sends a resumed event to the display server. - * @details It sends a resumed event to the display server so that it can pass on the watch application. - * @since_tizen 4.0 - * @return @c 0 on success, otherwise a negative error value - */ -extern int watch_manager_resume(void); - -/** * @brief Sends request to bind watch's window with the window. * @details Watch's window will be shown with the viewer window automatically. * @since_tizen 4.0 @@ -117,16 +74,6 @@ extern int watch_manager_window_bind(Evas_Object *win); extern int watch_manager_window_unbind(void); /** - * @brief Gets watch's setup appid. - * @since_tizen 3.0 - * @remarks setup_appid should be freed. - * @param[in] app_id A watch app id - * @param[out] setup_appid A watch app id - * @return @c 0 on success, otherwise a negative error value - */ -extern int watch_manager_get_setup_appid(const char *app_id, char **setup_appid); - -/** * @brief Notify watch application that viewer application is paused. * @remarks Watch application can not resume until it gets viewer resumed event. * @since_tizen 3.0 @@ -196,23 +143,6 @@ extern int watch_manager_pause(void); */ extern int watch_manager_resume(void); -/** - * @brief Binds watch's window with the window. - * @details Watch's window will be shown with the viewer window automatically. - * @since_tizen 4.0 - * @param[in] win Window for the viewer app - * @return @c 0 on success, otherwise a negative error value - */ -extern int watch_manager_window_bind(Evas_Object *win); - -/** - * @brief Unbinds watch's window - * @details Watch's window will be updated as an image object. - * @since_tizen 4.0 - * @return @c 0 on success, otherwise a negative error value - */ -extern int watch_manager_window_unbind(void); - #ifdef __cplusplus } #endif