efl/legacy/elementary/src/lib/elm_fileselector.eo

74 lines
2.3 KiB
Plaintext
Raw Normal View History

class Elm.Fileselector (Elm.Layout, Elm_Interface_Fileselector,
Elm_Interface_Atspi_Widget_Action)
2014-03-30 00:15:55 -07:00
{
eo_prefix: elm_obj_fileselector;
2015-05-07 09:32:53 -07:00
methods {
@property buttons_ok_cancel {
2014-03-30 00:15:55 -07:00
set {
/*@
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.
@see elm_fileselector_buttons_ok_cancel_get()
@ingroup Fileselector */
}
get {
/*@
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 */
}
values {
visible: bool; /*@ @c EINA_TRUE to show buttons, @c EINA_FALSE to hide. */
2014-03-30 00:15:55 -07:00
}
}
}
implements {
class.constructor;
class.destructor;
Eo.Base.constructor;
Evas.Object_Smart.add;
Evas.Object_Smart.del;
Elm.Widget.focus_next;
Elm.Widget.focus_direction_manager_is;
Elm.Widget.focus_direction;
Elm.Widget.event;
Elm.Widget.theme_apply;
Elm.Widget.focus_next_manager_is;
Elm.Layout.sizing_eval;
Elm.Layout.text_set;
Elm_Interface_Fileselector.selected_paths.get;
Elm_Interface_Fileselector.custom_filter_append;
Elm_Interface_Fileselector.expandable;
Elm_Interface_Fileselector.thumbnail_size;
Elm_Interface_Fileselector.selected;
Elm_Interface_Fileselector.mime_types_filter_append;
Elm_Interface_Fileselector.hidden_visible;
Elm_Interface_Fileselector.filters_clear;
Elm_Interface_Fileselector.is_save;
Elm_Interface_Fileselector.path;
Elm_Interface_Fileselector.sort_method;
Elm_Interface_Fileselector.multi_select;
Elm_Interface_Fileselector.folder_only;
Elm_Interface_Fileselector.mode;
Elm_Interface_Fileselector.current_name;
Elm_Interface_Atspi_Widget_Action.elm_actions.get;
2014-03-30 00:15:55 -07:00
}
events {
focused;
unfocused;
}
}