summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2016-10-27 00:02:01 +0200
committerStefan Schmidt <stefan@osg.samsung.com>2016-10-27 00:03:02 +0200
commita01d3c26ce307fa6b647a30931bac50ab18699c3 (patch)
treeadeb09f1fec4491f9907da9ff1f41fab0b0133c5
parent92cfac3262ea912bb125e6dcb22cee00463b1794 (diff)
downloadefl-a01d3c26ce307fa6b647a30931bac50ab18699c3.tar.gz
docs: gen{list,grid}: add docs for field type enums
-rw-r--r--src/lib/elementary/elm_gengrid_item.eo8
-rw-r--r--src/lib/elementary/elm_genlist_item.eo10
2 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/elementary/elm_gengrid_item.eo b/src/lib/elementary/elm_gengrid_item.eo
index c740ccc820..a2c2e94293 100644
--- a/src/lib/elementary/elm_gengrid_item.eo
+++ b/src/lib/elementary/elm_gengrid_item.eo
@@ -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]]
}
diff --git a/src/lib/elementary/elm_genlist_item.eo b/src/lib/elementary/elm_genlist_item.eo
index cdbdb2ba61..a593c00f2a 100644
--- a/src/lib/elementary/elm_genlist_item.eo
+++ b/src/lib/elementary/elm_genlist_item.eo
@@ -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