terminology/src/bin/utils.c

65 lines
1.7 KiB
C

#include "private.h"
#include "utils.h"
#include <Edje.h>
Eina_Bool
theme_apply(Evas_Object *edje, const Config *config, const char *group)
{
const char *errmsg;
EINA_SAFETY_ON_NULL_RETURN_VAL(edje, EINA_FALSE);
EINA_SAFETY_ON_NULL_RETURN_VAL(config, EINA_FALSE);
EINA_SAFETY_ON_NULL_RETURN_VAL(group, EINA_FALSE);
if (edje_object_file_set(edje, config_theme_path_get(config), group))
return EINA_TRUE;
errmsg = edje_load_error_str(edje_object_load_error_get(edje));
INF("Cannot find theme: file=%s group=%s error='%s', trying default...",
config_theme_path_get(config), group, errmsg);
if (edje_object_file_set(edje, config_theme_path_default_get(config), group))
return EINA_TRUE;
errmsg = edje_load_error_str(edje_object_load_error_get(edje));
ERR("Could not load any theme for group=%s: %s", group, errmsg);
return EINA_FALSE;
}
void
theme_reload(Evas_Object *edje)
{
const char *file;
const char *group;
edje_object_file_get(edje, &file, &group);
INF("file=%s, group=%s", file, group);
edje_object_file_set(edje, file, group);
}
static void
theme_reload_cb(void *data __UNUSED__, Evas_Object *obj, const char *emission __UNUSED__, const char *source __UNUSED__)
{
theme_reload(obj);
}
void
theme_auto_reload_enable(Evas_Object *edje)
{
edje_object_signal_callback_add
(edje, "edje,change,file", "edje", theme_reload_cb, NULL);
}
Eina_Bool
link_is_url(const char *str)
{
if ((!strncasecmp(str, "http://", 7))||
(!strncasecmp(str, "https://", 8)) ||
(!strncasecmp(str, "ftp://", 6)) ||
(!strncasecmp(str, "www.", 4)) ||
(!strncasecmp(str, "ftp.", 4)))
return EINA_TRUE;
return EINA_FALSE;
}