diff options
author | Dave Andreoli <dave@gurumeditation.it> | 2015-08-16 12:10:46 +0200 |
---|---|---|
committer | Dave Andreoli <dave@gurumeditation.it> | 2015-08-16 12:10:46 +0200 |
commit | 191ce5c22c8e651309f7e84adbba9d51c54c56c4 (patch) | |
tree | 468feaa7b0f9a8b36af6aa91cbfc5d5475ecbc3c /CODING | |
parent | 40ac305d0dd586d29230cc71aedf501fbfb0d376 (diff) |
Improve a bit Genlist documentation
This can be improved lots more, but I'm out of time :(
Diffstat (limited to 'CODING')
-rw-r--r-- | CODING | 39 |
1 files changed, 39 insertions, 0 deletions
@@ -23,6 +23,45 @@ Style | |||
23 | ...also because I found it more readable and I like it more :P -davemds- | 23 | ...also because I found it more readable and I like it more :P -davemds- |
24 | 24 | ||
25 | 25 | ||
26 | Documentation cheatsheet | ||
27 | ======================== | ||
28 | |||
29 | * Links: | ||
30 | |||
31 | :class:`List` (for classes) | ||
32 | :func:`elm_list_go` (for functions) | ||
33 | :attr:`homogeneous` (for properties) | ||
34 | :ref:`Elm_List_Mode` (for enums) | ||
35 | |||
36 | :func:`efl.evas.Object.delete` (for items not in current scope) | ||
37 | :func:`~efl.evas.Object.delete` (will show it short, just "delete") | ||
38 | |||
39 | * Formatting: | ||
40 | |||
41 | ``ELM_LIST_SCROLL`` (for enum values, bools and None) | ||
42 | |||
43 | |||
44 | * Versions: | ||
45 | |||
46 | .. versionadded:: 1.15 | ||
47 | |||
48 | .. versionchanged:: 1.15 | ||
49 | Description of the change. | ||
50 | |||
51 | .. deprecated:: 1.15 | ||
52 | Use the blah, blah way instead. | ||
53 | |||
54 | * Notes: | ||
55 | |||
56 | .. seealso:: :py:attr:`mode` | ||
57 | |||
58 | .. note:: Some text to be noted, blah, blah, blah, | ||
59 | some more information for this note, etc. | ||
60 | |||
61 | .. warning:: Same as note, but the box will be red | ||
62 | some more information for this warning, etc. | ||
63 | |||
64 | |||
26 | Design patterns | 65 | Design patterns |
27 | =============== | 66 | =============== |
28 | 67 | ||