Add since_tizen marking on enum, type.
+s after verb.
Change-Id: I8e6baeef11b7347f7b8b8b54162a22156cae970c
*/
/**
- * @brief ui_application's event callback function signature.
+ * @brief The ui_application event callback function signature.
+ * @since_tizen 3.0
*
* @param[in] user_data The user data to be passed to the given @a event_callback functions
- * @param[in] event_info Event Infomation data. (It can casts to app_control_h in app_control())
+ * @param[in] event_info Event Information data. (It can casts to app_control_h in app_control())
*
* @return This is reserved
*
/**
* @brief Enumeration for ui_application event type.
+ * @since_tizen 3.0
*/
typedef enum {
- UI_APPLICATION_EVENT_CREATE = 0, ///<App create
- UI_APPLICATION_EVENT_TERMINATE, ///<App terminate
- UI_APPLICATION_EVENT_PAUSE , ///<App pause
- UI_APPLICATION_EVENT_RESUME, ///<App resume
- UI_APPLICATION_EVENT_CONTROL, ///<App control
+ UI_APPLICATION_EVENT_CREATE = 0, /**< App create */
+ UI_APPLICATION_EVENT_TERMINATE, /**< App terminate */
+ UI_APPLICATION_EVENT_PAUSE , /**< App pause */
+ UI_APPLICATION_EVENT_RESUME, /**< App resume */
+ UI_APPLICATION_EVENT_CONTROL, /**< App control */
- UI_APPLICATION_EVENT_CREATE_PRE, ///<App create pre
- UI_APPLICATION_EVENT_TERMINATE_PRE, ///<App terminate pre
- UI_APPLICATION_EVENT_PAUSE_PRE, ///<App pause pre
- UI_APPLICATION_EVENT_RESUME_PRE, ///<App resume pre
- UI_APPLICATION_EVENT_CONTROL_PRE, ///<App control pre
+ UI_APPLICATION_EVENT_CREATE_PRE, /**< App create pre */
+ UI_APPLICATION_EVENT_TERMINATE_PRE, /**< App terminate pre */
+ UI_APPLICATION_EVENT_PAUSE_PRE, /**< App pause pre */
+ UI_APPLICATION_EVENT_RESUME_PRE, /**< App resume pre */
+ UI_APPLICATION_EVENT_CONTROL_PRE, /**< App control pre */
UI_APPLICATION_EVENT_LAST
} ui_application_event_type_e;
/**
* @brief Struct for ui_application event.
+ * @since_tizen 3.0
*/
typedef struct
{
} ui_application_event_s;
/**
- * @brief Initialize ui_application.
+ * @brief Initializes ui_application.
* @details This function initializes ui_application and ui_viewmgr.
* @since_tizen 3.0
* @remarks Before exit application, call ui_application_term().
EAPI bool ui_application_init(const char *pkg, const char *locale_dir);
/**
- * @brief Run ui_application. This triggers application main loop.
+ * @brief Runs ui_application. This triggers application main loop.
* @remarks This is wrapping ui_app_main() function.
* @since_tizen 3.0
*
EAPI bool ui_application_run(int argc, char **argv, ui_application_event_s *events, void *user_data);
/**
- * @brief This is ui_application destructor.
+ * @brief Deinitializes ui_application.
* @since_tizen 3.0
*
* @return @c true if it succeeds, @c false otherwise
*/
/**
- * @brief Replace or set a content of an ui_menu.
+ * @brief Replaces or set a content of an ui_menu.
* @since_tizen 3.0
*
* @param[in] menu An ui_menu object
EAPI bool ui_menu_set_content(ui_menu *menu, Elm_Ctxpopup *ctxpopup);
/**
- * @brief Return an ui_menu content.
+ * @brief Returns an ui_menu content.
* @since_tizen 3.0
*
* @param[in] menu An ui_menu instance
EAPI Elm_Ctxpopup *ui_menu_get_content(ui_menu *menu);
/**
- * @brief Unset an ui_menu content.
+ * @brief Unsets an ui_menu content.
* @since_tizen 3.0
*
* @param[in] menu An ui_menu instance
EAPI Elm_Ctxpopup *ui_menu_unset_content(ui_menu *menu);
/**
- * @brief Activate an ui_menu.
+ * @brief Activates an ui_menu.
* @details It makes ui_menu state as show.
* @since_tizen 3.0
*
EAPI bool ui_menu_activate(ui_menu *menu);
/**
- * @brief Deactivate an ui_menu.
+ * @brief Deactivates an ui_menu.
* @details It makes ui_menu state as hide.
* @since_tizen 3.0
*
EAPI bool ui_menu_deactivate(ui_menu *menu);
/**
- * @brief Return the active status of ui_menu.
+ * @brief Returns the active status of ui_menu.
* @since_tizen 3.0
*
* @param[in] menu An ui_menu instance
EAPI bool ui_menu_get_activated(ui_menu *menu);
/**
- * @brief Get a base object of an ui_menu.
+ * @brief Gets a base object of an ui_menu.
* @details Normally, A base object can be used for a parent of ui_menu content.
* @since_tizen 3.0
*
EAPI Eo *ui_menu_get_base(ui_menu *menu);
/**
- * @brief Get a current ui_menu's degree.
+ * @brief Gets a current ui_menu's degree.
* @since_tizen 3.0
*
* @param[in] menu An ui_menu instance
EAPI int ui_menu_get_degree(ui_menu *menu);
/**
- * @brief Return a view which is matched with this ui_menu.
+ * @brief Returns a view which is matched with this ui_menu.
* @since_tizen 3.0
*
* @param[in] menu An ui_menu instance
*/
/**
- * @brief A constructor for an ui_popup.
+ * @brief Creates an ui_popup.
* @since_tizen 3.0
* @remarks The instance of ui_popup is subordinated to the given @a ui_view. If the given @a ui_view is hidden or deactivated, this ui_popup will be also do
* same followed to its ui_view behaviors. The instance of ui_popup will be destroyed automatically when the ui_view is destroyed.
EAPI ui_popup *ui_popup_create(ui_view *view);
/**
- * @brief A destructor for an ui_popup.
+ * @brief Destroys an ui_popup.
* @details destroy an @a given ui_popup instance.
* @since_tizen 3.0
*
EAPI void ui_popup_destroy(ui_popup *popup);
/**
- * @brief Replace or set a content of an ui_popup.
+ * @brief Replaces or set a content of an ui_popup.
* @since_tizen 3.0
*
* @param[in] popup An ui_popup instance
EAPI bool ui_popup_set_content(ui_popup *popup, Elm_Popup *content);
/**
- * @brief Return a content object of ui_popup.
+ * @brief Returns a content object of ui_popup.
* @since_tizen 3.0
*
* @param[in] popup An ui_popup instance
EAPI Elm_Popup *ui_popup_get_content(ui_popup *popup);
/**
- * @brief Unset an ui_popup content.
+ * @brief Unsets an ui_popup content.
* @since_tizen 3.0
*
* @param[in] popup An ui_popup instance
EAPI Elm_Popup *ui_popup_unset_content(ui_popup *popup);
/**
- * @brief Activate an ui_popup.
+ * @brief Activates an ui_popup.
* @details It makes ui_popup state as show.
* @since_tizen 3.0
*
EAPI bool ui_popup_activate(ui_popup *popup);
/**
- * @brief Deactivate an ui_popup.
+ * @brief Deactivates an ui_popup.
* @details It makes ui_popup state as hide.
* @since_tizen 3.0
*
EAPI bool ui_popup_deactivate(ui_popup *popup);
/**
- * @brief Return the active status of ui_popup.
+ * @brief Returns the active status of ui_popup.
* @since_tizen 3.0
*
* @param[in] popup An ui_popup instance
EAPI bool ui_popup_get_activated(ui_popup *popup);
/**
- * @brief Get a base object of an ui_popup.
+ * @brief Gets a base object of an ui_popup.
* @details Normally, A base object can be used for a parent of ui_popup content.
* @since_tizen 3.0
*
EAPI Eo *ui_popup_get_base(ui_popup *popup);
/**
- * @brief Get current ui_popup's degree.
+ * @brief Gets current ui_popup's degree.
* @since_tizen 3.0
*
* @param[in] popup An ui_popup instance
EAPI int ui_popup_get_degree(ui_popup *popup);
/**
- * @brief Return a view which is matched with the ui_popup.
+ * @brief Returns a view which is matched with the ui_popup.
* @since_tizen 3.0
*
* @param[in] popup An ui_popup instance
*/
/**
- * @brief A constructor for an ui_standard_view.
+ * @brief Creates an ui_standard_view.
* @since_tizen 3.0
* @remarks if you don't set a view name, you could not look up the view with its name. @see ui_viewmgr_get_view_by_name().
*
EAPI ui_standard_view *ui_standard_view_create(const char *name);
/**
- * @brief Set a title text.
+ * @brief Sets a title text.
* @since_tizen 3.0
*
* @param[in] view An ui_standard_view instance
EAPI bool ui_standard_view_set_title(ui_standard_view *view, const char *text);
/**
- * @brief Set a subtitle text.
+ * @brief Sets a subtitle text.
* @since_tizen 3.0
*
* @param[in] view An ui_standard_view instance
EAPI bool ui_standard_view_set_sub_title(ui_standard_view *view, const char *text);
/**
- * @brief Set a title badge text.
+ * @brief Sets a title badge text.
* @since_tizen 3.0
*
* @param[in] view An ui_standard_view instance
EAPI bool ui_standard_view_set_title_badge(ui_standard_view *view, const char *badge_text);
/**
- * @brief Set a title_right_btn.
+ * @brief Sets a title_right_btn.
* @since_tizen 3.0
*
* @param[in] view An ui_standard_view instance
EAPI bool ui_standard_view_set_title_right_btn(ui_standard_view *view, Elm_Button *title_right_btn);
/**
- * @brief Return a title right button of the view.
+ * @brief Returns a title right button of the view.
* @since_tizen 3.0
*
* @param[in] view An ui_standard_view instance
EAPI Elm_Button *ui_standard_view_get_title_right_btn(ui_standard_view *view);
/**
- * @brief Unset a title right button of title area.
+ * @brief Unsets a title right button of title area.
* @since_tizen 3.0
*
* @param[in] view An ui_standard_view instance
EAPI Elm_Button *ui_standard_view_unset_title_right_btn(ui_standard_view *view);
/**
- * @brief Set a title_left_btn.
+ * @brief Sets a title_left_btn.
* @since_tizen 3.0
*
* @param[in] view An ui_standard_view instance
EAPI bool ui_standard_view_set_title_left_btn(ui_standard_view *view, Elm_Button *title_left_btn);
/**
- * @brief Return a title left button of the view.
+ * @brief Returns a title left button of the view.
* @since_tizen 3.0
*
* @param[in] view An ui_standard_view instance
EAPI Elm_Button *ui_standard_view_get_title_left_btn(ui_standard_view *view);
/**
- * @brief Unset a title right button of title area.
+ * @brief Unsets a title right button of title area.
* @since_tizen 3.0
*
* @param[in] view An ui_standard_view instance
EAPI Elm_Button *ui_standard_view_unset_title_left_btn(ui_standard_view *view);
/**
- * @brief Set a toolbar below title.
+ * @brief Sets a toolbar below title.
* @since_tizen 3.0
*
* @param[in] view An ui_standard_view instance
EAPI bool ui_standard_view_set_toolbar(ui_standard_view *view, Elm_Toolbar *toolbar);
/**
- * @brief Return a toolbar of the view.
+ * @brief Returns a toolbar of the view.
* @since_tizen 3.0
*
* @param[in] view An ui_standard_view instance
EAPI Elm_Toolbar *ui_standard_view_get_toolbar(ui_standard_view *view);
/**
- * @brief Unset a toolbar.
+ * @brief Unsets a toolbar.
* @since_tizen 3.0
*
* @param[in] view An ui_standard_view instance
EAPI Elm_Toolbar *ui_standard_view_unset_toolbar(ui_standard_view *view);
/**
- * @brief Control the title visible state.
+ * @brief Controls the title visible state.
* @since_tizen 3.0
*
* @param[in] view An ui_standard_view instance
*/
/**
- * @brief ui_view's event callback function signature.
+ * @brief The ui_view event callback function signature.
+ * @since_tizen 3.0
*
* @param[in] view An ui_view instance
* @param[in] degree Current view's degree
/**
* @brief Enumeration for ui_view event type.
+ * @since_tizen 3.0
*/
typedef enum
{
} ui_view_event_type_e;
/**
- * @brief A constructor for an ui_view.
+ * @brief Creates an ui_view.
* @since_tizen 3.0
* @remarks if you don't set a view name, you could not look up the view with it's name. @see ui_viewmgr_get_view_by_name().
*
EAPI ui_view *ui_view_create(const char *name);
/**
- * @brief Replace or set a content of ui_view.
+ * @brief Replaces or set a content of ui_view.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
EAPI bool ui_view_set_content(ui_view *view, Eo *content);
/**
- * @brief Return a content of this view.
+ * @brief Returns a content of this view.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
EAPI Eo *ui_view_get_content(ui_view *view);
/**
- * @brief Unset a ui_view content.
+ * @brief Unsets a ui_view content.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
EAPI Eo *ui_view_unset_content(ui_view *view);
/**
- * @brief Set callback functions for handling view events.
+ * @brief Sets callback functions for handling view events.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
- * @param[in] event_type ui_view event tupe
+ * @param[in] event_type ui_view event type
* @param[in] event_cb The set of callback functions to handle view events
* @param[in] user_data The user data to be passed to the given @a event_callback functions
*
EAPI bool ui_view_set_event_cb(ui_view *view, ui_view_event_type_e event_type, ui_view_event_cb event_cb, void *user_data);
/**
- * @brief Get a base object of ui_view.
+ * @brief Gets a base object of ui_view.
* @since_tizen 3.0
* @remarks Normally, this base object can be used for a parent of a view content.
*
EAPI Eo* ui_view_get_base(ui_view *view);
/**
- * @brief Set the indicator mode of a ui_view.
+ * @brief Sets the indicator mode of a ui_view.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
EAPI void ui_view_set_indicator(ui_view *view, ui_view_indicator indicator);
/**
- * @brief Return the indicator mode of this view.
+ * @brief Returns the indicator mode of this view.
* @since_tizen 3.0
*
* @param view An ui_view instance
EAPI ui_view_indicator ui_view_get_indicator(ui_view *view);
/**
- * @breif Set the array of view's available rotations.
+ * @breif Sets the array of view's available rotations.
* @since_tizen 3.0
* @remarks Set an array of rotation values.
* For instance, {0, 90, 180, 270}. These rotation values depends on the system support.
EAPI bool ui_view_set_available_rotations(ui_view *view, const int *rotations, unsigned int count);
/**
- * @brief Get the array of view's available rotations.
+ * @brief Gets the array of view's available rotations.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
EAPI const int *ui_view_get_available_rotations(ui_view *view, unsigned int *count);
/**
- * @brief Set content removable.
+ * @brief Sets content removable.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
EAPI void ui_view_set_removable_content(ui_view *view, bool remove);
/**
- * @brief Return a state of removable content.
+ * @brief Returns a state of removable content.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
EAPI bool ui_view_get_removable_content(ui_view *view);
/**
- * @brief Get the current view's degree.
+ * @brief Gets the current view's degree.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
EAPI int ui_view_get_degree(ui_view *view);
/**
- * @brief Get current view's orientation mode.
+ * @brief Gets current view's orientation mode.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
EAPI ui_view_orientation_mode ui_view_get_orientation_mode(ui_view *view);
/**
- * @brief Set transition style of a view.
+ * @brief Sets transition style of a view.
* @since_tizen 3.0
*
* @remarks @a style is reserved for supporting various kinds of view transition effects.
EAPI bool ui_view_set_transition_style(ui_view *view, const char *style);
/**
- * @brief Return a style name of this view.
+ * @brief Returns a style name of this view.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
EAPI const char *ui_view_get_transition_style(ui_view *view);
/**
- * @brief Get a ui_menu instance.
+ * @brief Gets a ui_menu instance.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
EAPI ui_menu *ui_view_get_menu(ui_view *view);
/**
- * @brief Return a name of this view.
+ * @brief Returns a name of this view.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
EAPI const char *ui_view_get_name(ui_view *view);
/**
- * @brief Return a state of this view.
+ * @brief Returns a state of this view.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
EAPI ui_view_state ui_view_get_state(ui_view *view);
/**
- * @brief A destructor for an ui_view.
+ * @brief Destroys an ui_view.
* @since_tizen 3.0
*
* @param[in] view An ui_view instance
*/
/**
- * @brief Push a new view into ui_viewmgr. This function is used for when application switches a current view to a new one.
+ * @brief Pushs a new view into ui_viewmgr. This function is used for when application switches a current view to a new one.
* @details Normally, the current view will be hidden by a new view. In default, when user calls this API, view will be switched to @a view instantly,
* only when ui_viewmgr state is activated. Otherwise, the @a view will be shown later when ui_viewmgr is activated. ui_viewmgr_view_push() is designed
* for providing view transition effect. If you want push view instantly without any transition, you could use ui_viewmgr_view_push_insert_before() or
EAPI ui_view *ui_viewmgr_push_view(ui_view *view);
/**
- * @brief Insert a view in the ui_viewmgr view list. Specifically, insert a given @a view right before of the given view, @before.
+ * @brief Inserts a view in the ui_viewmgr view list. Specifically, insert a given @a view right before of the given view, @before.
* @since_tizen 3.0
*
* @param[in] view An ui_view to insert in the ui_viewmgr view list
EAPI bool ui_viewmgr_push_view_insert_before(ui_view *view, ui_view *before);
/**
- * @brief Insert a view in the ui_viewmgr view list. Specifically, insert a given @a view right after of the given view, @after.
+ * @brief Inserts a view in the ui_viewmgr view list. Specifically, insert a given @a view right after of the given view, @after.
* @since_tizen 3.0
*
* @param[in] view An ui_view to insert in the ui_viewmgr view list
EAPI bool ui_viewmgr_push_view_insert_after(ui_view *view, ui_view *after);
/**
- * @brief Pop the top(last) view from the ui_viewmgr view list.
+ * @brief Pops the top(last) view from the ui_viewmgr view list.
* This function is used when application switches the current view back to the previous view.
* The top view will be removed from the view stack and then it will be deleted by the given ui_viewmgr.
* @since_tizen 3.0
EAPI bool ui_viewmgr_pop_view(void);
/**
- * @brief Activate this view manager.
+ * @brief Activates this view manager.
* @since_tizen 3.0
* @remarks ui_viewmgr window and views will be shown once this function is called. Usually this should be called after applications set their all views
* on initialization time.
EAPI bool ui_viewmgr_activate(void);
/**
- * @brief Deactivate this view manager.
+ * @brief Deactivates this view manager.
*
* @remarks ui_viewmgr window and views will be hidden once this function is called. this behavior is up ui system, but usually it hides(unmap)
* current window in order that application go background.
EAPI bool ui_viewmgr_deactivate(void);
/**
- * @brief Get a window object of ui_viewmgr.
+ * @brief Gets a window object of ui_viewmgr.
* @since_tizen 3.0
*
* @return The window object of ui_viewmgr
EAPI Elm_Win *ui_viewmgr_get_window(void);
/**
- * @brief Return a last(top) view.
+ * @brief Returns a last(top) view.
* @since_tizen 3.0
*
* @return The view which is last view of the ui_viewmgr view list
EAPI ui_view *ui_viewmgr_get_last_view(void);
/**
- * @brief Return a view which is matched with the index @a idx.
+ * @brief Returns a view which is matched with the index @a idx.
* @since_tizen 3.0
* @remarks You could use the index as the page numbers of the views.
* the index number of views are variable since the view list is variable.
EAPI ui_view *ui_viewmgr_get_view_by_idx(int idx);
/**
- * @brief Return a view which is matched with the @a name.
+ * @brief Returns a view which is matched with the @a name.
* @since_tizen 3.0
* @remarks Every view have their names as their own identifiers.
*
EAPI ui_view *ui_viewmgr_get_view_by_name(const char *name);
/**
- * @brief Get a base object of a ui_viewmgr.
+ * @brief Gets a base object of a ui_viewmgr.
* @since_tizen 3.0
* @remarks Normally, a base object can be used for adding additional objects.
*
EAPI Eo *ui_viewmgr_get_base(void);
/**
- * @brief Return a view index(page) number of the given view.
+ * @brief Returns a view index(page) number of the given view.
* You could use this function to query the given @a view list order.
* @since_tizen 3.0
* @remarks The index number of views are variable since the view list is variable
EAPI int ui_viewmgr_get_view_index(const ui_view *view);
/**
- * @brief Return the number of views which of ui_viewmgr.
+ * @brief Returns the number of views which of ui_viewmgr.
* @since_tizen 3.0
*
* @return the count of views
EAPI int ui_viewmgr_get_view_count(void);
/**
- * @brief Return whether soft back key is required or not.
+ * @brief Returns whether soft back key is required or not.
* @since_tizen 3.0
*
* @return @c true if soft key is required, @c false otherwise
/**
* @brief Possible values for indicator state.
+ * @since_tizen 3.0
*/
enum UiViewIndicator
{
- UI_VIEW_INDICATOR_UNKNOWN = 0, ///< Unknown state (Exceptional case)
- UI_VIEW_INDICATOR_DEFAULT, ///< Opaque indicator
- UI_VIEW_INDICATOR_OPTIMAL, ///< Transparent indicator
- UI_VIEW_INDICATOR_OVERLAP, ///< Overlap indicator
- UI_VIEW_INDICATOR_HIDE, ///< Indicator hide
- UI_VIEW_INDICATOR_SHOW, ///< Indicator show
+ UI_VIEW_INDICATOR_UNKNOWN = 0, /**< Unknown state (Exceptional case) */
+ UI_VIEW_INDICATOR_DEFAULT, /**< Opaque indicator */
+ UI_VIEW_INDICATOR_OPTIMAL, /**< Transparent indicator */
+ UI_VIEW_INDICATOR_OVERLAP, /**< Overlap indicator */
+ UI_VIEW_INDICATOR_HIDE, /**< Indicator hide */
+ UI_VIEW_INDICATOR_SHOW, /**< Indicator show */
UI_VIEW_INDICATOR_LAST
};
typedef enum UiViewIndicator ui_view_indicator;
/**
* @brief Possible values for view state.
+ * @since_tizen 3.0
*/
enum UiViewState
{
- UI_VIEW_STATE_UNKNOWN = 0, ///< Unknown state (Exceptional case)
- UI_VIEW_STATE_LOAD, ///< Load state
- UI_VIEW_STATE_UNLOAD, ///< Unload state
- UI_VIEW_STATE_ACTIVATE, ///< Activate state
- UI_VIEW_STATE_DEACTIVATE, ///< Deactivate state
- UI_VIEW_STATE_PAUSE, ///< Pause state
+ UI_VIEW_STATE_UNKNOWN = 0, /**< Unknown state (Exceptional case) */
+ UI_VIEW_STATE_LOAD, /**< Load state */
+ UI_VIEW_STATE_UNLOAD, /**< Unload state */
+ UI_VIEW_STATE_ACTIVATE, /**< Activate state */
+ UI_VIEW_STATE_DEACTIVATE, /**< Deactivate state */
+ UI_VIEW_STATE_PAUSE, /**< Pause state */
UI_VIEW_STATE_LAST
};
typedef enum UiViewState ui_view_state;
/**
* @breif Possible values for view orientation mode.
+ * @since_tizen 3.0
*/
enum UiViewOrientationMode
{
- UI_VIEW_ORIENTATION_MODE_UNKOWN = 0, ///< Unknown state (Exceptional case)
- UI_VIEW_ORIENTATION_MODE_PORTRAIT, ///< Portrait state
- UI_VIEW_ORIENTATION_MODE_LANDSCAPE, ///< Landscape state
+ UI_VIEW_ORIENTATION_MODE_UNKOWN = 0, /**< Unknown state (Exceptional case) */
+ UI_VIEW_ORIENTATION_MODE_PORTRAIT, /**< Portrait state */
+ UI_VIEW_ORIENTATION_MODE_LANDSCAPE, /**< Landscape state */
UI_VIEW_ORIENTATION_MODE_LAST,
};
typedef enum UiViewOrientationMode ui_view_orientation_mode;