Elm_fileselector as edje external.

SVN revision: 47634
This commit is contained in:
Gustavo Lima Chaves 2010-03-31 20:19:55 +00:00
parent 39507a1c57
commit a1228094fd
8 changed files with 199 additions and 9 deletions

View File

@ -14,6 +14,7 @@ ico_anchorview.png \
ico_bubble.png \ ico_bubble.png \
ico_button.png \ ico_button.png \
ico_check.png \ ico_check.png \
ico_fileselector.png \
ico_hoversel.png \ ico_hoversel.png \
ico_notepad.png \ ico_notepad.png \
ico_radio.png \ ico_radio.png \

Binary file not shown.

After

Width:  |  Height:  |  Size: 265 B

View File

@ -15,6 +15,7 @@ ICON("anchorview")
ICON("bubble") ICON("bubble")
ICON("button") ICON("button")
ICON("check") ICON("check")
ICON("fileselector")
ICON("hoversel") ICON("hoversel")
ICON("notepad") ICON("notepad")
ICON("radio") ICON("radio")

View File

@ -31,6 +31,7 @@ elm_anchorview.c \
elm_bubble.c \ elm_bubble.c \
elm_button.c \ elm_button.c \
elm_check.c \ elm_check.c \
elm_fileselector.c \
elm_hoversel.c \ elm_hoversel.c \
elm_notepad.c \ elm_notepad.c \
elm_radio.c \ elm_radio.c \

View File

@ -0,0 +1,176 @@
#include <assert.h>
#include "private.h"
typedef struct _Elm_Params_Fileselector
{
Eina_Bool is_save:1;
Eina_Bool is_save_set:1;
Eina_Bool folder_only:1;
Eina_Bool folder_only_set:1;
Eina_Bool show_buttons:1;
Eina_Bool show_buttons_set:1;
Eina_Bool expandable:1;
Eina_Bool expandable_set:1;
} Elm_Params_Fileselector;
static void
external_fileselector_state_set(void *data __UNUSED__, Evas_Object *obj, const void *from_params, const void *to_params, float pos __UNUSED__)
{
const Elm_Params_Fileselector *p;
if (to_params) p = to_params;
else if (from_params) p = from_params;
else return;
if (p->is_save_set && p->is_save)
elm_fileselector_is_save_set(obj, p->is_save);
if (p->folder_only_set && p->folder_only)
elm_fileselector_folder_only_set(obj, p->folder_only);
if (p->show_buttons_set && p->show_buttons)
elm_fileselector_buttons_ok_cancel_set(obj, p->show_buttons);
if (p->expandable_set && p->expandable)
elm_fileselector_expandable_set(obj, p->expandable);
}
static Eina_Bool
external_fileselector_param_set(void *data __UNUSED__, Evas_Object *obj, const Edje_External_Param *param)
{
if (!strcmp(param->name, "save"))
{
if (param->type == EDJE_EXTERNAL_PARAM_TYPE_BOOL)
{
elm_fileselector_is_save_set(obj, param->i);
return EINA_TRUE;
}
}
else if (!strcmp(param->name, "folder only"))
{
if (param->type == EDJE_EXTERNAL_PARAM_TYPE_BOOL)
{
elm_fileselector_folder_only_set(obj, param->i);
return EINA_TRUE;
}
}
else if (!strcmp(param->name, "show buttons"))
{
if (param->type == EDJE_EXTERNAL_PARAM_TYPE_BOOL)
{
elm_fileselector_buttons_ok_cancel_set(obj, param->i);
return EINA_TRUE;
}
}
else if (!strcmp(param->name, "expandable"))
{
if (param->type == EDJE_EXTERNAL_PARAM_TYPE_BOOL)
{
elm_fileselector_expandable_set(obj, param->i);
return EINA_TRUE;
}
}
ERR("unknown parameter '%s' of type '%s'",
param->name, edje_external_param_type_str(param->type));
return EINA_FALSE;
}
static Eina_Bool
external_fileselector_param_get(void *data __UNUSED__, const Evas_Object *obj, Edje_External_Param *param)
{
if (!strcmp(param->name, "save"))
{
if (param->type == EDJE_EXTERNAL_PARAM_TYPE_BOOL)
{
param->i = elm_fileselector_is_save_get(obj);
return EINA_TRUE;
}
}
else if (!strcmp(param->name, "folder only"))
{
if (param->type == EDJE_EXTERNAL_PARAM_TYPE_BOOL)
{
param->i = elm_fileselector_folder_only_get(obj);
return EINA_TRUE;
}
}
else if (!strcmp(param->name, "show buttons"))
{
if (param->type == EDJE_EXTERNAL_PARAM_TYPE_BOOL)
{
param->i = elm_fileselector_buttons_ok_cancel_get(obj);
return EINA_TRUE;
}
}
else if (!strcmp(param->name, "expandable"))
{
if (param->type == EDJE_EXTERNAL_PARAM_TYPE_BOOL)
{
param->i = elm_fileselector_expandable_get(obj);
return EINA_TRUE;
}
}
ERR("unknown parameter '%s' of type '%s'",
param->name, edje_external_param_type_str(param->type));
return EINA_FALSE;
}
static void *
external_fileselector_params_parse(void *data __UNUSED__, Evas_Object *obj __UNUSED__, const Eina_List *params)
{
Elm_Params_Fileselector *mem;
Edje_External_Param *param;
const Eina_List *l;
mem = calloc(1, sizeof(Elm_Params_Fileselector));
if (!mem)
return NULL;
EINA_LIST_FOREACH(params, l, param)
{
if (!strcmp(param->name, "save"))
{
mem->is_save = !!param->i;
mem->is_save_set = EINA_TRUE;
}
else if (!strcmp(param->name, "folder only"))
{
mem->folder_only = !!param->i;
mem->folder_only_set = EINA_TRUE;
}
else if (!strcmp(param->name, "show buttons"))
{
mem->show_buttons = !!param->i;
mem->show_buttons_set = EINA_TRUE;
}
else if (!strcmp(param->name, "expandable"))
{
mem->expandable = !!param->i;
mem->expandable_set = EINA_TRUE;
}
}
return mem;
}
static void
external_fileselector_params_free(void *params)
{
Elm_Params_Fileselector *mem = params;
free(mem);
}
static Edje_External_Param_Info external_fileselector_params[] =
{
EDJE_EXTERNAL_PARAM_INFO_BOOL("save"),
EDJE_EXTERNAL_PARAM_INFO_BOOL("folder only"),
EDJE_EXTERNAL_PARAM_INFO_BOOL("show buttons"),
EDJE_EXTERNAL_PARAM_INFO_BOOL("expandable"),
EDJE_EXTERNAL_PARAM_INFO_SENTINEL
};
DEFINE_EXTERNAL_ICON_ADD(fileselector, "fileselector")
DEFINE_EXTERNAL_TYPE_SIMPLE(fileselector, "File Selector")

View File

@ -3,6 +3,7 @@ DEFINE_TYPE(anchorview)
DEFINE_TYPE(bubble) DEFINE_TYPE(bubble)
DEFINE_TYPE(button) DEFINE_TYPE(button)
DEFINE_TYPE(check) DEFINE_TYPE(check)
DEFINE_TYPE(fileselector)
DEFINE_TYPE(hoversel) DEFINE_TYPE(hoversel)
DEFINE_TYPE(notepad) DEFINE_TYPE(notepad)
DEFINE_TYPE(radio) DEFINE_TYPE(radio)

View File

@ -1041,6 +1041,7 @@ extern "C" {
EAPI Eina_Bool elm_fileselector_folder_only_get(const Evas_Object *obj); EAPI Eina_Bool elm_fileselector_folder_only_get(const Evas_Object *obj);
EAPI void elm_fileselector_buttons_ok_cancel_set(Evas_Object *obj, Eina_Bool buttons); EAPI void elm_fileselector_buttons_ok_cancel_set(Evas_Object *obj, Eina_Bool buttons);
EAPI Eina_Bool elm_fileselector_buttons_ok_cancel_get(const Evas_Object *obj); EAPI Eina_Bool elm_fileselector_buttons_ok_cancel_get(const Evas_Object *obj);
EAPI Eina_Bool elm_fileselector_expandable_get(const Evas_Object *obj);
EAPI void elm_fileselector_expandable_set(Evas_Object *obj, Eina_Bool expand); EAPI void elm_fileselector_expandable_set(Evas_Object *obj, Eina_Bool expand);
EAPI void elm_fileselector_path_set(Evas_Object *obj, const char *path); EAPI void elm_fileselector_path_set(Evas_Object *obj, const char *path);
EAPI const char *elm_fileselector_path_get(const Evas_Object *obj); EAPI const char *elm_fileselector_path_get(const Evas_Object *obj);

View File

@ -22,7 +22,7 @@ struct _Widget_Data
Eina_Bool only_folder; Eina_Bool only_folder;
Eina_Bool expand; Eina_Bool expand;
struct struct
{ {
Evas_Object *bx; Evas_Object *bx;
Evas_Object *ok; Evas_Object *ok;
@ -163,7 +163,7 @@ _sel(void *data, Evas_Object *obj __UNUSED__, void *event_info)
if (wd->entry2) if (wd->entry2)
elm_entry_entry_set(wd->entry2, ecore_file_file_get(path)); elm_entry_entry_set(wd->entry2, ecore_file_file_get(path));
} }
evas_object_smart_callback_call(fs, "selected", (void*)path); evas_object_smart_callback_call(fs, "selected", (void*)path);
} }
@ -412,7 +412,7 @@ elm_fileselector_add(Evas_Object *parent)
evas_object_show(wd->scr2); evas_object_show(wd->scr2);
elm_fileselector_buttons_ok_cancel_set(obj, 1); elm_fileselector_buttons_ok_cancel_set(obj, 1);
// Is this the right way to show sub-objs ?? or use the show/hide cbs ?? // Is this the right way to show sub-objs ?? or use the show/hide cbs ??
//~ evas_object_event_callback_add(obj, EVAS_CALLBACK_SHOW, _show, obj); //~ evas_object_event_callback_add(obj, EVAS_CALLBACK_SHOW, _show, obj);
//~ evas_object_event_callback_add(obj, EVAS_CALLBACK_CHANGED_SIZE_HINTS, //~ evas_object_event_callback_add(obj, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
@ -466,7 +466,7 @@ elm_fileselector_folder_only_set(Evas_Object *obj, Eina_Bool only)
} }
EAPI Eina_Bool EAPI Eina_Bool
elm_fileselector_only_folder_get(const Evas_Object *obj) elm_fileselector_folder_only_get(const Evas_Object *obj)
{ {
ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE; ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
Widget_Data *wd = elm_widget_data_get(obj); Widget_Data *wd = elm_widget_data_get(obj);
@ -500,7 +500,7 @@ elm_fileselector_buttons_ok_cancel_set(Evas_Object *obj, Eina_Bool only)
elm_box_pack_end(box, bt); elm_box_pack_end(box, bt);
evas_object_smart_callback_add(bt, "clicked", _canc, obj); evas_object_smart_callback_add(bt, "clicked", _canc, obj);
evas_object_show(bt); evas_object_show(bt);
// ok btn // ok btn
bt = elm_button_add(obj); bt = elm_button_add(obj);
wd->buttons.ok = bt; wd->buttons.ok = bt;
@ -520,7 +520,7 @@ elm_fileselector_buttons_ok_cancel_set(Evas_Object *obj, Eina_Bool only)
} }
EAPI Eina_Bool EAPI Eina_Bool
elm_fileselector_ok_cancel_get(const Evas_Object *obj) elm_fileselector_buttons_ok_cancel_get(const Evas_Object *obj)
{ {
ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE; ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
Widget_Data *wd = elm_widget_data_get(obj); Widget_Data *wd = elm_widget_data_get(obj);
@ -537,6 +537,15 @@ elm_fileselector_expandable_set(Evas_Object *obj, Eina_Bool expand)
wd->expand = expand; wd->expand = expand;
} }
EAPI Eina_Bool
elm_fileselector_expandable_get(const Evas_Object *obj)
{
ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return EINA_FALSE;
return wd->expand;
}
EAPI void EAPI void
elm_fileselector_path_set(Evas_Object *obj, const char *path) elm_fileselector_path_set(Evas_Object *obj, const char *path)
{ {
@ -563,16 +572,16 @@ elm_fileselector_selected_get(const Evas_Object *obj)
{ {
const char *name; const char *name;
char buf[PATH_MAX]; char buf[PATH_MAX];
name = elm_entry_entry_get(wd->entry2); name = elm_entry_entry_get(wd->entry2);
//TODO remove <br> //TODO remove <br>
snprintf(buf, sizeof(buf), "%s/%s", wd->path, name); snprintf(buf, sizeof(buf), "%s/%s", wd->path, name);
eina_stringshare_replace(&wd->selection, buf); eina_stringshare_replace(&wd->selection, buf);
return wd->selection; return wd->selection;
} }
it = elm_genlist_selected_item_get(wd->list); it = elm_genlist_selected_item_get(wd->list);
if (it) return elm_genlist_item_data_get(it); if (it) return elm_genlist_item_data_get(it);
return wd->path; return wd->path;
} }