stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=1ed2b0fbde07d6ae58ff9219eba26350f4471d80

commit 1ed2b0fbde07d6ae58ff9219eba26350f4471d80
Author: Stefan Schmidt <[email protected]>
Date:   Tue Oct 25 15:09:59 2016 +0200

    docs: document all missing enums
    
    With this commit we reach 100% enum doc coverage. The fields in the enums 
are
    still at 91%, but there is progress on that front as well.
---
 src/lib/ecore_audio/ecore_audio.eo            | 1 +
 src/lib/elementary/elm_gengrid.eo             | 5 +++--
 src/lib/elementary/elm_sys_notify.eo          | 1 +
 src/lib/elementary/elm_widget.eo              | 7 ++++---
 src/lib/evas/canvas/efl_canvas_text_cursor.eo | 1 +
 5 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/src/lib/ecore_audio/ecore_audio.eo 
b/src/lib/ecore_audio/ecore_audio.eo
index 3c37cc3..234ef7d 100644
--- a/src/lib/ecore_audio/ecore_audio.eo
+++ b/src/lib/ecore_audio/ecore_audio.eo
@@ -2,6 +2,7 @@ type @extern Ecore.Audio.Vio: __undefined_type; /* FIXME: Had 
function pointer m
 type @extern efl_key_data_free_func: __undefined_type; /* FIXME: Function 
pointers not allowed. */
 
 enum Ecore.Audio.Format {
+    [[Ecore audio format type]]
     auto, [[Automatically detect the format (for inputs)]]
     raw, [[RAW samples (float)]]
     wav, [[WAV format]]
diff --git a/src/lib/elementary/elm_gengrid.eo 
b/src/lib/elementary/elm_gengrid.eo
index fc7231e..0553f32 100644
--- a/src/lib/elementary/elm_gengrid.eo
+++ b/src/lib/elementary/elm_gengrid.eo
@@ -3,8 +3,9 @@ import ecore_types;
 
 enum Elm.Gengrid.Reorder_Type
 {
-   normal, [[ normal reorder type ]]
-   swap    [[ swap reorder type ]]
+   [[Gengrid reorder modes]]
+   normal, [[Normal reorder type]]
+   swap    [[Swap reorder type]]
 }
 
 class Elm.Gengrid (Elm.Layout, Elm.Interface_Scrollable,
diff --git a/src/lib/elementary/elm_sys_notify.eo 
b/src/lib/elementary/elm_sys_notify.eo
index db04299..5282db5 100644
--- a/src/lib/elementary/elm_sys_notify.eo
+++ b/src/lib/elementary/elm_sys_notify.eo
@@ -1,5 +1,6 @@
 enum Elm.Sys_Notify.Server
 {
+   [[System notification server types]]
    none = 0, [[No notificationserver (disables notifications)]]
    dbus = 1 << 0 [[Use DBus as a notification server]]
 }
diff --git a/src/lib/elementary/elm_widget.eo b/src/lib/elementary/elm_widget.eo
index 6c8a131..10f0d5f 100644
--- a/src/lib/elementary/elm_widget.eo
+++ b/src/lib/elementary/elm_widget.eo
@@ -19,9 +19,10 @@ enum Elm.Activate
 
 enum Elm.Theme.Apply
 {
-   failed = 0,
-   default = 1,
-   success = 3
+   [[Return codes when a Elementary theme is applied]]
+   failed = 0, [[Failed to apply theme]]
+   default = 1, [[Default return value]]
+   success = 3 [[Success to apply theme]]
 }
 
 struct Elm.Tooltip;
diff --git a/src/lib/evas/canvas/efl_canvas_text_cursor.eo 
b/src/lib/evas/canvas/efl_canvas_text_cursor.eo
index 4a7b97b..6317bf6 100644
--- a/src/lib/evas/canvas/efl_canvas_text_cursor.eo
+++ b/src/lib/evas/canvas/efl_canvas_text_cursor.eo
@@ -1,5 +1,6 @@
 enum Efl.Canvas.Text.Cursor.Type
 {
+   [[Text cursor types]]
    before,
    under
 }

-- 


Reply via email to