q66 pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=a95a7297eabc839a51bce1c027cc63f45b3ab629
commit a95a7297eabc839a51bce1c027cc63f45b3ab629 Author: Vivek Ellur <[email protected]> Date: Wed Jul 29 14:44:00 2015 +0100 elm_fileselector: Converted eo docs of fileselector_entry to new format Summary: Converted docs of elm_fileselector_entry.eo to the new format Signed-off-by: Vivek Ellur <[email protected]> Reviewers: cedric, q66 Reviewed By: q66 Differential Revision: https://phab.enlightenment.org/D2882 --- src/lib/elm_fileselector_entry.eo | 103 ++++++++++++++++---------------------- 1 file changed, 43 insertions(+), 60 deletions(-) diff --git a/src/lib/elm_fileselector_entry.eo b/src/lib/elm_fileselector_entry.eo index 065cd84..00c51c2 100644 --- a/src/lib/elm_fileselector_entry.eo +++ b/src/lib/elm_fileselector_entry.eo @@ -5,95 +5,78 @@ class Elm.Fileselector_Entry (Elm.Layout, Elm_Interface_Fileselector, methods { @property inwin_mode { set { - /*@ - Set whether a given file selector entry widget's internal file - selector will raise an Elementary "inner window", instead of a - dedicated Elementary window. By default, it depends on the current - profile. - - @see elm_win_inwin_add() for more information on inner windows - @see elm_fileselector_entry_inwin_mode_get() - - @ingroup File_Selector_Entry */ + [[Set whether a given file selector entry widget's internal file + selector will raise an Elementary "inner window", instead of a + dedicated Elementary window. By default, it depends on the current + profile. + + See also \@ref elm_win_inwin_add for more information on inner windows, + @.inwin_mode.get. + ]] } get { - /*@ - Get whether a given file selector entry widget's internal file - selector will raise an Elementary "inner window", instead of a - dedicated Elementary window. - - @return @c EINA_TRUE if will use an inner window, @c EINA_FALSE - if it will use a dedicated window + [[Get whether a given file selector entry widget's internal file + selector will raise an Elementary "inner window", instead of a + dedicated Elementary window. - @see elm_fileselector_entry_inwin_mode_set() for more details - - @ingroup File_Selector_Entry */ + See also @.inwin_mode.set for more details. + ]] } values { - value: bool; /*@ @c EINA_TRUE to make it use an inner window, @c - EINA_FALSE to make it use a dedicated window */ + value: bool; [[$true to make it use an inner window, $false + to make it use a dedicated window.]] } } @property window_size { set { - /*@ - Set the size of a given file selector entry widget's window, - holding the file selector itself. - - @note it will only take any effect if the file selector entry - widget is @b not under "inwin mode". The default size for the - window (when applicable) is 400x400 pixels. + [[Set the size of a given file selector entry widget's window, + holding the file selector itself. - @see elm_fileselector_entry_window_size_get() + Note: it will only take any effect if the file selector entry + widget is not under "inwin mode". The default size for the + window (when applicable) is 400x400 pixels. - @ingroup File_Selector_Entry */ + See also @.window_size.get. + ]] } get { - /*@ - Get the size of a given file selector entry widget's window, - holding the file selector itself. + [[Get the size of a given file selector entry widget's window, + holding the file selector itself. - @note Use @c NULL pointers on the size values you're not - interested in: they'll be ignored by the function. + Note: Use $null pointers on the size values you're not + interested in: they'll be ignored by the function. - @see elm_fileselector_entry_window_size_set(), for more details - - @ingroup File_Selector_Entry */ + See also @.window_size.set, for more details. + ]] } values { - width: Evas.Coord; /*@ The window's width */ - height: Evas.Coord; /*@ The window's height */ + width: Evas.Coord; [[The window's width.]] + height: Evas.Coord; [[The window's height.]] } } @property window_title { set { - /*@ - Set the title for a given file selector entry widget's window - - This will change the window's title, when the file selector pops - out after a click on the entry's button. Those windows have the - default (unlocalized) value of @c "Select a file" as titles. + [[Set the title for a given file selector entry widget's window - @note It will only take any effect if the file selector - entry widget is @b not under "inwin mode". + This will change the window's title, when the file selector pops + out after a click on the entry's button. Those windows have the + default (unlocalized) value of $"Select a file" as titles. - @see elm_fileselector_entry_window_title_get() + Note: It will only take any effect if the file selector + entry widget is not under "inwin mode". - @ingroup File_Selector_Entry */ + See also @.window_title.get. + ]] } get { - /*@ - Get the title set for a given file selector entry widget's - window - - @return Title of the file selector entry's window - - @see elm_fileselector_entry_window_title_get() for more details + [[Get the title set for a given file selector entry widget's + window. - @ingroup File_Selector_Entry */ + See also @.window_title.set for more details. + ]] } values { - title: const(char)*; /*@ The title string */ + title: const(char)*; [[The title string.]] } } } --
