/**
+ * @deprecated Deprecated since 10.0.
* @brief Called when the frame component instance is created.
* @details The returned Evas_Object MUST NOT be released using evas_object_del(). The platform frees the window when the frame component instance is destroyed.
* @since_tizen 5.5
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called when the frame component instance is started.
* @since_tizen 5.5
* @remarks The @a context should not be released. The @a context can be used only in the callback.
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called when the frame component becomes visible.
* @since_tizen 5.5
* @remarks The @a context should not be released. The @a context can be used only in the callback.
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called when the frame component becomes invisible.
* @since_tizen 5.5
* @remarks The @a context should not be released. The @a context can be used only in the callback.
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called before the frame component instance is stopped.
* @since_tizen 5.5
* @remarks The @a context should not be released. The @a context can be used only in the callback.
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called before the frame component instance is destroyed.
* @since_tizen 5.5
* @remarks The @a context should not be released. The @a context can be used only in the callback.
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called after the content information of the frame component instance is restored.
* @since_tizen 5.5
* @remarks The @a content should not be released. The @a content can be used only in the callback.
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called before the content information of the frame component instance is saved.
* @since_tizen 5.5
* @remarks The @a content should not be released. The @a content can be used only in the callback.
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called when another application sends a launch request to the component.
* @details Before calling frame_component_start_cb(), this callback function is called.
* @since_tizen 5.5
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called when the device orientation is changed.
* @since_tizen 5.5
* @remarks The @a context should not be released. The @a context can be used only in the callback.
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called when the system language is changed.
* @since_tizen 5.5
* @remarks The @a context should not be released. The @a context can be used only in the callback.
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called when the system region format is changed.
* @since_tizen 5.5
* @remarks The @a context should not be released. The @a context can be used only in the callback.
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called when the battery status is changed.
* @since_tizen 5.5
* @remarks The @a context should not be released. The @a context can be used only in the callback.
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called when the memory status is changed.
* @since_tizen 5.5
* @remarks The @a context should not be released. The @a context can be used only in the callback.
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called when the suspended state of the frame component is changed.
* @since_tizen 5.5
* @remarks The @a context should not be released. The @a context can be used only in the callback.
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief Called when the time zone of the frame component is changed.
* @details An application can obtain a changed time zone (e.g., "+9:00") and a time zone id (e.g., "Asia/Seoul").
* @since_tizen 8.0
void *user_data);
/**
+ * @deprecated Deprecated since 10.0.
* @brief The structure type containing the set of callback functions for lifecycle of a frame component instance.
* @since_tizen 5.5
*/
} frame_component_lifecycle_callback_s;
/**
+ * @deprecated Deprecated since 10.0.
* @brief Gets the display status.
* @since_tizen 5.5
*
* @retval #COMPONENT_ERROR_INVALID_CONTEXT The display is in an unknown state.
*/
int frame_component_get_display_status(component_h context,
- component_display_status_e *display_status);
+ component_display_status_e *display_status) TIZEN_DEPRECATED_API;
/**
+ * @deprecated Deprecated since 10.0.
* @brief Gets an Evas object for the frame component.
* @since_tizen 5.5
* @remarks The @c window MUST NOT be released using evas_object_del().
* @retval #COMPONENT_ERROR_INVALID_PARAMETER Invalid parameter
*/
int frame_component_get_window(component_h context,
- Evas_Object **window);
+ Evas_Object **window) TIZEN_DEPRECATED_API;
/**