[ACR] Add indicator style enum value for supporting the UX concept
authorcheun.hong <cheun.hong@samsung.com>
Fri, 21 Jun 2013 02:44:21 +0000 (11:44 +0900)
committercheun.hong <cheun.hong@samsung.com>
Fri, 21 Jun 2013 02:44:21 +0000 (11:44 +0900)
Change-Id: I1ad429cd823dc7d213c96182b252c86f61b9e326
Signed-off-by: cheun.hong <cheun.hong@samsung.com>
inc/FUiCtrlForm.h

index 6285a88..7cf7e37 100644 (file)
@@ -58,6 +58,7 @@ enum FormStyle
        FORM_STYLE_NORMAL = 0x00000000,     /**< The basic form style */
        FORM_STYLE_TITLE = 0x00000001,      /**<@if OSPDEPREC @deprecated This enum value is deprecated because the use of the Title control is no longer recommended.@endif */
        FORM_STYLE_INDICATOR = 0x00000002,  /**< The form with the indicator area */
+       FORM_STYLE_PORTRAIT_INDICATOR = FORM_STYLE_INDICATOR,  /**< The form with the indicator area. @b Since: @b 2.2 */
        FORM_STYLE_SOFTKEY_0 = 0x00000010,  /**<@if OSPDEPREC @deprecated This enum value is deprecated because the use of the Softkey control is no longer recommended.@endif */
        FORM_STYLE_SOFTKEY_1 = 0x00000020,  /**<@if OSPDEPREC @deprecated This enum value is deprecated because the use of the Softkey control is no longer recommended.@endif */
        FORM_STYLE_OPTIONKEY = 0x00000040,  /**<@if OSPDEPREC @deprecated This enum value is deprecated because the use of the Optionkey control is no longer recommended.@endif */
@@ -65,7 +66,9 @@ enum FormStyle
        FORM_STYLE_ICON_TAB = 0x00000200,   /**<@if OSPDEPREC @deprecated This enum value is deprecated because the use of the Tab control is no longer recommended. @endif */
        FORM_STYLE_HEADER = 0x00001000,     /**< The form with a header */
        FORM_STYLE_FOOTER = 0x00002000,      /**< The form with a footer */
-       FORM_STYLE_INDICATOR_AUTO_HIDE = 0x00010000   /**< The form with a indicator which is hidden. @b Since: @b 2.1 */
+       FORM_STYLE_INDICATOR_AUTO_HIDE = 0x00010000,   /**< The form with a indicator which is hidden. @b Since: @b 2.1 */
+       FORM_STYLE_PORTRAIT_INDICATOR_AUTO_HIDE = FORM_STYLE_INDICATOR_AUTO_HIDE,   /**< The form with a indicator which is hidden. @b Since: @b 2.2 */
+       FORM_STYLE_LANDSCAPE_INDICATOR_AUTO_HIDE = 0x00020000   /**< The form with a indicator which is hidden. @b Since: @b 2.2 */
 };