#include <Elementary.h>
#include <locale.h>
 
static void
         void        *event_info)
{
   const char *selected = event_info;
   
 
   printf("We're done! Selected file is: %s\n",
          selected ? selected : "*none!*");
 
}
 
static void
             void        *event_info)
{
   const char *selected = event_info;
   
 
   printf("There's been a selection: %s\n", selected);
}
 
static void
_is_save_clicked(void        *data,
{
   Evas_Object *fs = data;
 
   printf("%s text entry with selected item's name\n",
          old_val ? "Disabling" : "Enabling");
 
}
 
static void
_folder_only_clicked(void        *data,
{
   Evas_Object *fs = data;
 
   printf("%s folder-only mode\n",
          old_val ? "Disabling" : "Enabling");
 
}
 
static void
_expandable_clicked(void        *data,
{
   Evas_Object *fs = data;
 
   printf("%s tree-view mode\n",
          old_val ? "Disabling" : "Enabling");
 
}
 
static void
_sel_get_clicked(void        *data,
{
   Evas_Object *fs = data;
}
 
static void
_path_get_clicked(void        *data,
{
   Evas_Object *fs = data;
   printf("Current selection's directory path is: %s\n",
}
 
EAPI_MAIN int
{
   Evas_Object *win, *fs, *vbox, *buttons_bx, *bt, *sep, *bx;
 
   
   setlocale(LC_ALL, "");
 
 
 
 
 
   
   
   
   
 
 
   
   
 
   
   elm_separator_horizontal_set(sep, 
EINA_TRUE);
 
 
 
   elm_object_text_set(bt, "editable selection");
 
   elm_object_text_set(bt, "folders only");
 
   elm_object_text_set(bt, "expandable");
 
 
   elm_object_text_set(bt, "Print selection");
 
   elm_object_text_set(bt, "Print path");
 
 
   
   elm_fileselector_buttons_ok_cancel_set(fs, 
EINA_FALSE);
 
 
 
 
 
   return 0;
}
#define EVAS_HINT_EXPAND
Use with evas_object_size_hint_weight_set(), evas_object_size_hint_weight_get(), evas_object_size_hin...
Definition Evas_Common.h:297
 
#define EVAS_HINT_FILL
Use with evas_object_size_hint_align_set(), evas_object_size_hint_align_get(), evas_object_size_hint_...
Definition Evas_Common.h:298
 
#define EINA_TRUE
boolean value TRUE (numerical value 1)
Definition eina_types.h:539
 
#define EINA_FALSE
boolean value FALSE (numerical value 0)
Definition eina_types.h:533
 
unsigned char Eina_Bool
Type to mimic a boolean.
Definition eina_types.h:527
 
#define EINA_UNUSED
Used to indicate that a function parameter is purposely unused.
Definition eina_types.h:339
 
void elm_box_horizontal_set(Elm_Box *obj, Eina_Bool horizontal)
Set the horizontal orientation.
Definition elm_box_eo.legacy.c:27
 
Evas_Object * elm_box_add(Evas_Object *parent)
Add a new box to the parent.
Definition elm_box.c:363
 
void elm_box_pack_end(Elm_Box *obj, Efl_Canvas_Object *subobj)
Add an object at the end of the pack list.
Definition elm_box_eo.legacy.c:57
 
Evas_Object * elm_check_add(Evas_Object *parent)
Add a new Check object.
Definition efl_ui_check.c:516
 
void elm_check_state_set(Evas_Object *obj, Eina_Bool state)
Set the on/off state of the check object.
Definition efl_ui_check.c:372
 
Eina_Bool elm_fileselector_expandable_get(const Evas_Object *obj)
Get whether tree view is enabled for the given file selector widget.
Definition elc_fileselector.c:2140
 
Eina_Bool elm_fileselector_folder_only_get(const Evas_Object *obj)
Get whether folder-only view is set for a given file selector widget.
Definition elc_fileselector.c:2065
 
void elm_fileselector_path_set(Evas_Object *obj, const char *_path)
Set, programmatically, the directory that a given file selector widget will display contents from.
Definition elc_fileselector.c:2153
 
Evas_Object * elm_fileselector_add(Evas_Object *parent)
Add a new file selector widget to the given parent Elementary (container) object.
Definition elc_fileselector.c:1918
 
void elm_fileselector_is_save_set(Evas_Object *obj, Eina_Bool is_save)
Enable/disable the file name entry box where the user can type in a name for a file,...
Definition elc_fileselector.c:2013
 
const char * elm_fileselector_path_get(const Evas_Object *obj)
Get the parent directory's path that a given file selector widget is displaying.
Definition elc_fileselector.c:2191
 
void elm_fileselector_mode_set(Evas_Object *obj, Elm_Fileselector_Mode mode)
Set the mode in which a given file selector widget will display (layout) file system entries in its v...
Definition elc_fileselector.c:2222
 
Eina_Bool elm_fileselector_is_save_get(const Evas_Object *obj)
Get whether the given file selector is in "saving dialog" mode.
Definition elc_fileselector.c:2032
 
const char * elm_fileselector_selected_get(const Evas_Object *obj)
Get the currently selected item's (full) path, in the given file selector widget.
Definition elc_fileselector.c:2351
 
void elm_fileselector_expandable_set(Evas_Object *obj, Eina_Bool expand)
Enable/disable a tree view in the given file selector widget, if it's in ELM_FILESELECTOR_LIST mode
Definition elc_fileselector.c:2121
 
void elm_fileselector_folder_only_set(Evas_Object *obj, Eina_Bool only)
Enable/disable folder-only view for a given file selector widget.
Definition elc_fileselector.c:2045
 
@ ELM_FILESELECTOR_GRID
Layout as a grid.
Definition elm_interface_fileselector_eo.h:22
 
#define ELM_MAIN()
macro to be used after the elm_main() function
Definition elm_general.h:556
 
Eina_Bool elm_policy_set(unsigned int policy, int value)
Set a new policy's value (for a given policy group/identifier).
Definition elm_main.c:1380
 
void elm_exit(void)
Ask to exit Elementary's main loop.
Definition elm_main.c:1373
 
void elm_run(void)
Run Elementary's main loop.
Definition elm_main.c:1357
 
@ ELM_POLICY_QUIT_LAST_WINDOW_CLOSED
quit when the application's last window is closed
Definition elm_general.h:248
 
@ ELM_POLICY_QUIT
under which circumstances the application should quit automatically.
Definition elm_general.h:227
 
Evas_Object * elm_separator_add(Evas_Object *parent)
Add a separator object to parent.
Definition elm_separator.c:49
 
Eina_Bool elm_need_ethumb(void)
Request that your elementary application needs ethumb.
Definition elm_thumb.c:518
 
Evas_Object * elm_win_util_standard_add(const char *name, const char *title)
Adds a window object with standard setup.
Definition efl_ui_win.c:9587
 
void elm_win_resize_object_add(Eo *obj, Evas_Object *subobj)
Add subobj as a resize object of window obj.
Definition efl_ui_win.c:9002
 
void elm_win_autodel_set(Eo *obj, Eina_Bool autodel)
Set the window's autodel state.
Definition efl_ui_win.c:6199
 
EVAS_API void evas_object_show(Evas_Object *eo_obj)
Makes the given Evas object visible.
Definition evas_object_main.c:1814
 
EVAS_API void evas_object_size_hint_weight_set(Evas_Object *obj, double x, double y)
Sets the hints for an object's weight.
Definition evas_object_main.c:2638
 
EVAS_API void evas_object_size_hint_align_set(Evas_Object *obj, double x, double y)
Sets the hints for an object's alignment.
Definition evas_object_main.c:2650
 
EVAS_API void evas_object_resize(Evas_Object *obj, Evas_Coord w, Evas_Coord h)
Changes the size of the given Evas object.
Definition evas_object_main.c:1236
 
EVAS_API void evas_object_smart_callback_add(Evas_Object *eo_obj, const char *event, Evas_Smart_Cb func, const void *data)
Add (register) a callback function to the smart event specified by event on the smart object obj.
Definition evas_object_smart.c:1040