[Doc] fix colorselector_mode description 64/82564/4
authorSungtaek Hong <sth253.hong@samsung.com>
Thu, 4 Aug 2016 07:07:12 +0000 (16:07 +0900)
committerSungtaek Hong <sth253.hong@samsung.com>
Fri, 5 Aug 2016 01:56:26 +0000 (18:56 -0700)
Change-Id: I8383c9fe2d7d424566bf09d460fcd8d39c2b69ba
Signed-off-by: Sungtaek Hong <sth253.hong@samsung.com>
src/lib/elm_colorselector.eo
src/lib/elm_colorselector_common.h

index 970513b05725b4eb7110ae11551ea75a2bb672a3..d1dec9f98eb1612596695d86f7c60c806940fb6c 100644 (file)
@@ -62,6 +62,7 @@ class Elm.Colorselector (Elm.Layout, Elm_Interface_Atspi_Widget_Action,
             [[Set Colorselector's mode.
 
               Colorselector supports three modes palette only, selector only and both.
+              Only palette mode is supported in Tizen 3.0.
             ]]
          }
          get {
index 2a0ac2e3f2c1bce46764af07b00090340f063b23..bbe1bcbe3712a1b0f81300a8f2656c40abbc9732 100644 (file)
@@ -25,13 +25,13 @@ struct _Elm_Custom_Palette
                          as deprecated. */
 typedef enum
 {
-   ELM_COLORSELECTOR_PALETTE = 0, /**< only color palette is displayed */
-   ELM_COLORSELECTOR_COMPONENTS, /**< only color selector is displayed */
-   ELM_COLORSELECTOR_BOTH, /**< Both Palette and selector is displayed, default */
-   ELM_COLORSELECTOR_PICKER, /**< only color picker is displayed */
+   ELM_COLORSELECTOR_PALETTE = 0, /**< Only color palette is displayed, default */
+   ELM_COLORSELECTOR_COMPONENTS, /**< Only color selector is displayed */
+   ELM_COLORSELECTOR_BOTH, /**< Both Palette and selector is displayed */
+   ELM_COLORSELECTOR_PICKER, /**< Only color picker is displayed */
    ELM_COLORSELECTOR_PLANE, /**< @deprecated This mode is not supported. If you use this, nothing will be shown */
    ELM_COLORSELECTOR_PALETTE_PLANE, /**< @deprecated This mode is not supported. If you use this, it will be shown same with ELM_COLORSELECTOR_PALETTE mode */
-   ELM_COLORSELECTOR_ALL /**< all possible color selector is displayed */
+   ELM_COLORSELECTOR_ALL /**< @deprecated This mode is not supported. If you use this, it will be shown same with ELM_COLORSELECTOR_PALETTE mode */
 } Elm_Colorselector_Mode;
 /* END */