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 <vivek.ellur@samsung.com>

Reviewers: cedric, q66

Reviewed By: q66

Differential Revision: https://phab.enlightenment.org/D2882
This commit is contained in:
Vivek Ellur 2015-07-29 14:44:00 +01:00 committed by Daniel Kolesa
parent e7bf07bd5d
commit bb39178875
1 changed files with 42 additions and 59 deletions

View File

@ -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.
[[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 */
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.
[[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
@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.
[[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.
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.
@see elm_fileselector_entry_window_size_get()
@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
[[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.
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.
@note It will only take any effect if the file selector
entry widget is @b not under "inwin mode".
Note: It will only take any effect if the file selector
entry widget is not under "inwin mode".
@see elm_fileselector_entry_window_title_get()
@ingroup File_Selector_Entry */
See also @.window_title.get.
]]
}
get {
/*@
Get the title set for a given file selector entry widget's
window
[[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
@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.]]
}
}
}