docs: gen{list,grid}: add docs for field type enums
authorStefan Schmidt <stefan@osg.samsung.com>
Wed, 26 Oct 2016 22:02:01 +0000 (00:02 +0200)
committerStefan Schmidt <stefan@osg.samsung.com>
Wed, 26 Oct 2016 22:03:02 +0000 (00:03 +0200)
src/lib/elementary/elm_gengrid_item.eo
src/lib/elementary/elm_genlist_item.eo

index c740ccc..a2c2e94 100644 (file)
@@ -16,10 +16,10 @@ enum Elm.Gengrid.Item.Field_Type
    [[Defines the type of the item part Used while updating item's parts.
      It can be used at updating multi fields.]]
    legacy: elm_gengrid_item_field;
-   all = 0,
-   text = (1 << 0),
-   content = (1 << 1),
-   state = (1 << 2)
+   all = 0, [[Type all]]
+   text = (1 << 0), [[Type text]]
+   content = (1 << 1), [[Type content]]
+   state = (1 << 2) [[Type state]]
 }
 
 
index cdbdb2b..a593c00 100644 (file)
@@ -9,7 +9,7 @@ enum Elm.Genlist.Item.Type
    none = 0, [[Simple item.]]
    tree = (1 << 0), [[This may be expanded and have child items.]]
    group = (1 << 1), [[An index item of a group of items. this item can have child items.]]
-   max = (1 << 2)
+   max = (1 << 2) [[Sentinel value to indicate last enum field during iteration]]
 }
 
 enum Elm.Genlist.Item.Field_Type
@@ -19,10 +19,10 @@ enum Elm.Genlist.Item.Field_Type
      It can be used at updating multi fields.
    ]]
    legacy: elm_genlist_item_field;
-   all = 0,
-   text = (1 << 0),
-   content = (1 << 1),
-   state = (1 << 2)
+   all = 0, [[Type all]]
+   text = (1 << 0), [[Type text]]
+   content = (1 << 1), [[Type content]]
+   state = (1 << 2) [[Type state]]
 }
 
 enum Elm.Genlist.Item.Scrollto_Type