q66 pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=eef6192110430ffe002f260c4f694bbe2aca270c

commit eef6192110430ffe002f260c4f694bbe2aca270c
Author: Daniel Kolesa <d.kol...@osg.samsung.com>
Date:   Wed Aug 5 11:38:55 2015 +0100

    naviframe_item: convert docs
---
 src/lib/elm_naviframe_item.eo | 103 ++++++++++++++----------------------------
 1 file changed, 35 insertions(+), 68 deletions(-)

diff --git a/src/lib/elm_naviframe_item.eo b/src/lib/elm_naviframe_item.eo
index 56dd692..f3d70b8 100644
--- a/src/lib/elm_naviframe_item.eo
+++ b/src/lib/elm_naviframe_item.eo
@@ -4,96 +4,63 @@ class Elm.Naviframe_Item(Elm.Widget_Item)
    methods {
         @property style {
              get {
-                 /*@
-                  Get an item style
-
-                  @see also elm_naviframe_item_style_set()
-
-                  @ingroup Naviframe
-                  */
+                 [[Get an item style.]]
              }
              set {
-                 /*@
-                  Set an item style
-
-                  The following styles are available for this item:
-                  @li @c "default"
-
-                  @see also elm_naviframe_item_style_get()
-
-                  @ingroup Naviframe
-                 */
+                 [[Set an item style.]]
              }
              values {
-                 style: const (char) * @nullable; /*@ The current item style 
name. @c NULL would be default */
+                 style: const (char) * @nullable; [[The current item style 
name. $null would be default]]
              }
         }
       pop_to {
-            /*@
-             Pop the top item and delete the items between the top and the 
above
-             one on the given item.
-
-             The items between the top and the given item will be deleted 
first,
-             and then the top item will be popped at last.
+            [[Pop the top item and delete the items between the top and the
+              above one on the given item.
 
-             @ingroup Naviframe
-            */
+              The items between the top and the given item will be deleted
+              first, and then the top item will be popped at last.
+            ]]
         }
       title_enabled_get @const {
-            /*@
-             Get a value whether title area is enabled or not.
-
-             @see also elm_naviframe_item_title_enabled_set()
-
-             @ingroup Naviframe
-            */
-            return: bool; /*@ If @c EINA_TRUE, title area will be enabled, 
disabled otherwise */
+            [[Get a value whether title area is enabled or not.]]
+            return: bool; [[If $true, title area will be enabled, disabled 
otherwise]]
         }
       title_enabled_set {
-            /*@
-             Enable/Disable the title area with transition effect
-
-             When the title area is disabled, then the controls would be 
hidden so as
-             to expand the content area to full-size.
+            [[Enable/Disable the title area with transition effect
 
-             @see also elm_naviframe_item_title_enabled_get()
-             @see also elm_naviframe_item_title_visible_set()
-
-             @ingroup Naviframe
-            */
+              When the title area is disabled, then the controls would be
+              hidden so as to expand the content area to full-size.
+            ]]
             params {
-                @in enable: bool; /*@ If @c EINA_TRUE, title area will be 
enabled, disabled otherwise */
-                @in transition: bool; /*@ If @c EINA_TRUE, transition effect 
of the title will be visible, invisible otherwise */
-             }
+                @in enable: bool; [[If $true, title area will be enabled, 
disabled otherwise]]
+                @in transition: bool; [[If $true, transition effect of the 
title will be visible, invisible otherwise]]
+            }
         }
       promote {
-            /*@
-             Promote an item already in the naviframe stack to the top of the 
stack
+            [[Promote an item already in the naviframe stack to the top of
+              the stack.
 
-             This will take the indicated item and promote it to the top of 
the stack
-             as if it had been pushed there. The item must already be inside 
the
-             naviframe stack to work.
-             */
+              This will take the indicated item and promote it to the top of
+              the stack as if it had been pushed there. The item must already
+              be inside the naviframe stack to work.
+            ]]
         }
 
       pop_cb_set {
-            /*@
-             Set a function to be called when @c it of the naviframe is going 
to be
-             popped.
+            [[Set a function to be called when an item of the naviframe is
+              going to be popped.
 
-             @param func the callback function.
+              Warning: Don't set "clicked" callback to the prev button
+              additionally if the function does an exact same logic with
+              this $func. When hardware back key is pressed then both
+              callbacks will be called.
 
-             @warning Don't set "clicked" callback to the prev button 
additionally if the
-             function does an exact same logic with this @c func. When 
hardware back key
-             is pressed then both callbacks will be called.
-
-             @since 1.8
-             @ingroup Naviframe
-             */
-             params {
-                  @in func: Elm_Naviframe_Item_Pop_Cb @nullable; /*@ The 
callback function */
-                  @in data: void * @optional; /*@ Data to be passed to func 
call */
-             }
+              @since 1.8
+            ]]
+            params {
+                  @in func: Elm_Naviframe_Item_Pop_Cb @nullable; [[The 
callback function.]]
+                  @in data: void * @optional; [[Data to be passed to func 
call.]]
+            }
         }
    }
    implements {

-- 


Reply via email to