q66 pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=56120b79f23e98a583731adb4e9380efee86cd56

commit 56120b79f23e98a583731adb4e9380efee86cd56
Author: Daniel Kolesa <d.kol...@osg.samsung.com>
Date:   Tue Jun 16 15:28:24 2015 +0100

    efl_text_properties: convert docs
---
 src/lib/efl/interfaces/efl_text_properties.eo | 65 +++++++++++++--------------
 1 file changed, 32 insertions(+), 33 deletions(-)

diff --git a/src/lib/efl/interfaces/efl_text_properties.eo 
b/src/lib/efl/interfaces/efl_text_properties.eo
index f8f37d2..947113e 100644
--- a/src/lib/efl/interfaces/efl_text_properties.eo
+++ b/src/lib/efl/interfaces/efl_text_properties.eo
@@ -5,56 +5,55 @@ interface Efl.Text_Properties {
    methods {
       @property font {
          set {
-            /*@
-            Set the font family or filename, and size on a given text object.
-
-            This function allows the font name and size of a text object to be
-            set. The @p font string has to follow fontconfig's convention on
-            naming fonts, as it's the underlying library used to query system
-            fonts by Evas (see the @c fc-list command's output, on your system,
-            to get an idea). Alternatively, one can use a full path to a font 
file.
-
-            @see evas_object_text_font_get()
-            @see evas_object_text_font_source_set() */
+            [[Set the font family or filename, and size on a given text object.
+
+              This function allows the font name and size of a text object to
+              be set. The font string has to follow fontconfig's convention on
+              naming fonts, as it's the underlying library used to query system
+              fonts by Evas (see the fc-list command's output, on your system,
+              to get an idea). Alternatively, one can use a full path to a font
+              file.
+
+              See also @evas_object_text_font_get,
+              @evas_object_text_font_source_set.
+            ]]
          }
          get {
-            /*@
-            Retrieve the font family and size in use on a given text object.
+            [[Retrieve the font family and size in use on a given text object.
 
-            This function allows the font name and size of a text object to be
-            queried. Be aware that the font name string is still owned by Evas
-            and should @b not have free() called on it by the caller of the
-            function.
+              This function allows the font name and size of a text object to
+              be queried. Be aware that the font name string is still owned by
+              Evas and should not have free() called on it by the caller of the
+              function.
 
-            @see evas_object_text_font_set() */
+              See also @evas_object_text_font_set.
+            ]]
          }
          values {
-            font: const(char) *; /*@ The font family name or filename. */
-            size: Efl_Font_Size; /*@ The font size, in points. */
+            font: const(char) *; [[The font family name or filename.]]
+            size: Efl_Font_Size; [[The font size, in points.]]
          }
       }
       @property font_source {
          set {
-            /*@
-            Set the font (source) file to be used on a given text object.
+            [[Set the font (source) file to be used on a given text object.
 
-            This function allows the font file to be explicitly set for a given
-            text object, overriding system lookup, which will first occur in
-            the given file's contents.
+              This function allows the font file to be explicitly set for a
+              given text object, overriding system lookup, which will first
+              occur in the given file's contents.
 
-            @see evas_object_text_font_get() */
+              See also @evas_object_text_font_get.
+            ]]
          }
          get {
-            /*@
-            Get the font file's path which is being used on a given text
-            object.
-
-            @return The font file's path.
+            [[Get the font file's path which is being used on a given text
+              object.
 
-            @see evas_object_text_font_get() for more details */
+              See @evas_object_text_font_get for more details.
+            ]]
          }
          values {
-            font_source: const(char)*; /*@ The font file's path. */
+            font_source: const(char)*; [[The font file's path.]]
          }
       }
    }

-- 


Reply via email to