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_button.png \
ico_check.png \
ico_fileselector.png \
ico_hoversel.png \
ico_notepad.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("button")
ICON("check")
ICON("fileselector")
ICON("hoversel")
ICON("notepad")
ICON("radio")

View File

@ -31,6 +31,7 @@ elm_anchorview.c \
elm_bubble.c \
elm_button.c \
elm_check.c \
elm_fileselector.c \
elm_hoversel.c \
elm_notepad.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(button)
DEFINE_TYPE(check)
DEFINE_TYPE(fileselector)
DEFINE_TYPE(hoversel)
DEFINE_TYPE(notepad)
DEFINE_TYPE(radio)

View File

@ -1041,6 +1041,7 @@ extern "C" {
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 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_path_set(Evas_Object *obj, const char *path);
EAPI const char *elm_fileselector_path_get(const Evas_Object *obj);

View File

@ -466,7 +466,7 @@ elm_fileselector_folder_only_set(Evas_Object *obj, Eina_Bool only)
}
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;
Widget_Data *wd = elm_widget_data_get(obj);
@ -520,7 +520,7 @@ elm_fileselector_buttons_ok_cancel_set(Evas_Object *obj, Eina_Bool only)
}
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;
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;
}
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
elm_fileselector_path_set(Evas_Object *obj, const char *path)
{