From 05113d2d32b1bed5d9faa48096c170760de05328 Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Thu, 2 Jul 2015 14:31:07 +0100 Subject: [PATCH] fileselector: convert docs --- legacy/elementary/src/lib/elm_fileselector.eo | 31 +++++++------------ 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/legacy/elementary/src/lib/elm_fileselector.eo b/legacy/elementary/src/lib/elm_fileselector.eo index 616a9cd733..d1dd2e0989 100644 --- a/legacy/elementary/src/lib/elm_fileselector.eo +++ b/legacy/elementary/src/lib/elm_fileselector.eo @@ -5,32 +5,25 @@ class Elm.Fileselector (Elm.Layout, Elm_Interface_Fileselector, methods { @property buttons_ok_cancel { set { - /*@ - Enable/disable the "ok" and "cancel" buttons on a given file - selector widget + [[Enable/disable the "ok" and "cancel" buttons on a given file + selector widget - @note A file selector without those buttons will never emit the - @c "done" smart event, and is only usable if one is just hooking - to the other two events. + Note: A file selector without those buttons will never emit the + "done" smart event, and is only usable if one is just hooking + to the other two events. - @see elm_fileselector_buttons_ok_cancel_get() - - @ingroup Fileselector */ + See also @elm_fileselector_buttons_ok_cancel_get. + ]] } get { - /*@ - Get whether the "ok" and "cancel" buttons on a given file - selector widget are being shown. + [[Get whether the "ok" and "cancel" buttons on a given file + selector widget are being shown. - @return @c EINA_TRUE if they are being shown, @c EINA_FALSE - otherwise (and on errors) - - @see elm_fileselector_buttons_ok_cancel_set() for more details - - @ingroup Fileselector */ + See also @elm_fileselector_buttons_ok_cancel_set for more details. + ]] } values { - visible: bool; /*@ @c EINA_TRUE to show buttons, @c EINA_FALSE to hide. */ + visible: bool; [[true to show buttons, false to hide.]] } } }