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

183 lines
4.9 KiB
Plaintext
Raw Normal View History

enum Elm.Fileselector.Mode
{
[[Defines how a file selector widget is to layout its contents
(file system entries).
]]
legacy: elm_fileselector;
list = 0, [[Layout as a list.]]
grid, [[Layout as a grid.]]
last [[Sentinel (helper) value, not used.]]
}
enum Elm.Fileselector.Sort
{
by_filename_asc = 0,
by_filename_desc,
by_type_asc,
by_type_desc,
by_size_asc,
by_size_desc,
by_modified_asc,
by_modified_desc,
last [[Sentinel (helper) value, not used.]]
}
interface Elm_Interface_Fileselector ()
{
legacy_prefix: null;
eo_prefix: elm_interface_fileselector;
2015-05-07 09:32:53 -07:00
methods {
@property folder_only {
set {
/*@ Enable/disable folder-only view for a given file selector widget */
}
get {
/*@ Get whether folder-only view is set for a given file selector */
}
values {
only: bool;
}
}
2015-05-07 09:32:53 -07:00
@property selected {
set {
/*@ Set, programmatically, the currently selected file/directory in the given file selector widget */
return: bool;
}
get {
/*@ Get the currently selected item's (full) path, in the given file the given file selector widget */
}
values {
path: const(char)*;
}
}
2015-05-07 09:32:53 -07:00
@property thumbnail_size {
set {
/*@ Set the size for the thumbnail of the file selector widget's view. */
}
get {
/*@ Get the size for the thumbnail of a given file selector widget */
}
values {
w: Evas.Coord;
h: Evas.Coord;
}
}
2015-05-07 09:32:53 -07:00
@property hidden_visible {
set {
/*@ Enable or disable visibility of hidden files/directories in the file selector widget. */
}
get {
/*@ Get if hiden files/directories in the file selector are visible or not. */
}
values {
multi: bool;
}
}
2015-05-07 09:32:53 -07:00
@property sort_method {
set {
/*@ Set the sort method of the file selector widget. */
}
get {
/*@ Get the sort method of the file selector widget. */
}
values {
sort: Elm.Fileselector.Sort;
}
}
2015-05-07 09:32:53 -07:00
@property multi_select {
set {
/*@ Enable or disable multi-selection in the fileselector */
}
get {
/*@ Gets if multi-selection in fileselector is enabled or disabled. */
}
values {
multi: bool;
}
}
2015-05-07 09:32:53 -07:00
@property expandable {
set {
/*@ Enable/disable a tree view in the given file selector widget, <b>if it's in */
}
get {
/*@ Get whether tree view is enabled for the given file selector */
}
values {
expand: bool;
}
}
2015-05-07 09:32:53 -07:00
@property path {
set {
/*@ Set, programmatically, the directory that a given file selector widget will display contents from */
}
get {
/*@ Get the parent directory's path that a given file selector selector widget will display contents from */
}
values {
path: const(char)*;
}
}
2015-05-07 09:32:53 -07:00
@property mode {
set {
/*@ Set the mode in which a given file selector widget will display (layout) file system entries in its view */
}
get {
/*@ Get the mode in which a given file selector widget is displaying */
}
values {
mode: Elm.Fileselector.Mode;
}
}
2015-05-07 09:32:53 -07:00
@property is_save {
set {
/*@ Enable/disable the file name entry box where the user can type in a name for a file, in a given file selector widget */
}
get {
/*@ Get whether the given file selector is in "saving dialog" mode */
}
values {
is_save: bool;
}
}
2015-05-07 09:32:53 -07:00
@property selected_paths {
get {
/*@ Get a list of selected paths in the fileselector. */
}
values {
ret: const(list<const(char)*>)*;
}
}
2015-05-07 09:32:53 -07:00
@property current_name {
set {
/*@ Set, */
}
get {
/*@ Get */
}
values {
name: const(char)*;
}
}
custom_filter_append {
/*@ Append custom filter into filter list */
params {
@in func: Elm_Fileselector_Filter_Func; /*@ function */
@in data: void *;
@in filter_name: const(char)*;
}
return: bool;
}
filters_clear {
/*@ Clear all filters registered */
}
mime_types_filter_append {
/*@ Append mime type based filter into filter list */
params {
@in mime_types: const(char)*;
@in filter_name: const(char)*;
}
return: bool;
}
}
}