panel, pan: convert docs
authorDaniel Kolesa <d.kolesa@osg.samsung.com>
Fri, 31 Jul 2015 14:17:40 +0000 (15:17 +0100)
committerDaniel Kolesa <d.kolesa@osg.samsung.com>
Fri, 31 Jul 2015 14:17:40 +0000 (15:17 +0100)
src/lib/elm_pan.eo
src/lib/elm_panel.eo

index 8b260db..84368d5 100644 (file)
@@ -5,10 +5,8 @@ class Elm_Pan (Evas.Smart_Clipped)
    methods {
       @property gravity {
          set {
-            /*@ No description supplied by the EAPI. */
          }
          get {
-            /*@ No description supplied by the EAPI. */
          }
          values {
             x: double;
@@ -17,10 +15,8 @@ class Elm_Pan (Evas.Smart_Clipped)
       }
       @property pos {
          set {
-            /*@ No description supplied by the EAPI. */
          }
          get {
-            /*@ No description supplied by the EAPI. */
          }
          values {
             x: Evas.Coord;
@@ -29,7 +25,6 @@ class Elm_Pan (Evas.Smart_Clipped)
       }
       @property content_size {
          get {
-            /*@ No description supplied by the EAPI. */
          }
          values {
             w: Evas.Coord;
@@ -38,7 +33,6 @@ class Elm_Pan (Evas.Smart_Clipped)
       }
       @property pos_min {
          get {
-            /*@ No description supplied by the EAPI. */
          }
          values {
             x: Evas.Coord;
@@ -47,7 +41,6 @@ class Elm_Pan (Evas.Smart_Clipped)
       }
       @property pos_max {
          get {
-            /*@ No description supplied by the EAPI. */
          }
          values {
             x: Evas.Coord;
index 4d5d807..667834c 100644 (file)
@@ -15,84 +15,53 @@ class Elm.Panel (Elm.Layout, Elm_Interface_Scrollable,
    methods {
       @property orient {
          set {
-            /*@
-            @brief Sets the orientation of the panel
+            [[Set the orientation of the panel
 
-            Sets from where the panel will (dis)appear.
-
-            @ingroup Panel */
+              Set from where the panel will (dis)appear.
+            ]]
          }
          get {
-            /*@
-            @brief Get the orientation of the panel.
-
-            @return The Elm_Panel_Orient, or #ELM_PANEL_ORIENT_LEFT on failure.
-
-            @ingroup Panel */
+            [[Get the orientation of the panel.]]
          }
          values {
-            orient: Elm.Panel.Orient(Elm.Panel.Orient.left); /*@ The panel orientation. Can be one of the following:
-            @li #ELM_PANEL_ORIENT_TOP
-            @li #ELM_PANEL_ORIENT_LEFT
-            @li #ELM_PANEL_ORIENT_RIGHT */
+            orient: Elm.Panel.Orient(Elm.Panel.Orient.left); [[The panel orientation.]]
          }
       }
       @property hidden {
          set {
-            /*@
-            @brief Set the state of the panel.
-
-            @ingroup Panel */
+            [[Set the state of the panel.]]
          }
          get {
-            /*@
-            @brief Get the state of the panel.
-
-            @return EINA_TRUE if it is hidden state
-
-            @ingroup Panel */
+            [[Get the state of the panel.]]
          }
          values {
-            hidden: bool; /*@ If true, the panel will run the animation to disappear. */
+            hidden: bool; [[If true, the panel will run the animation to disappear.]]
          }
       }
       @property scrollable {
          set {
-            /*@
-            @brief Set the scrollability of the panel.
-
-            @ingroup Panel */
+            [[Set the scrollability of the panel.]]
          }
          get {
-            /*@
-            @brief Get the state of the scrollability.
-
-            @return EINA_TRUE if it is scrollable
+            [[Get the state of the scrollability.
 
-            @ingroup Panel
-            @since 1.12 */
+              @since 1.12
+            ]]
          }
          values {
-            scrollable: bool;
+            scrollable: bool; [[The scrollable state.]]
          }
       }
       @property scrollable_content_size {
          set {
-            /*@
-            @brief Set the size of the scrollable panel.
-
-            @ingroup Panel */
+            [[Set the size of the scrollable panel.]]
          }
          values {
             ratio: double;
          }
       }
       toggle {
-         /*@
-         @brief Toggle the hidden state of the panel from code
-
-         @ingroup Panel */
-
+         [[Toggle the hidden state of the panel from code]]
       }
    }
    implements {