Formatting. Should now be possible to use enlightenment_remote to set the theme.

SVN revision: 19771
This commit is contained in:
Christopher Michael 2006-01-14 11:18:01 +00:00
parent bce18fada7
commit 1f8c5be81b
2 changed files with 14 additions and 13 deletions

View File

@ -31,8 +31,8 @@ EAPI E_Module_Api e_modapi =
"TClock" "TClock"
}; };
EAPI void EAPI void *
*e_modapi_init(E_Module *module) e_modapi_init(E_Module *module)
{ {
TClock *tclock; TClock *tclock;
tclock = _tclock_new(); tclock = _tclock_new();
@ -76,7 +76,8 @@ e_modapi_save(E_Module *module)
EAPI int EAPI int
e_modapi_about(E_Module *module) e_modapi_about(E_Module *module)
{ {
e_module_dialog_show("Simple Digital Clock", "Displays a digital clock on the desktop"); e_module_dialog_show(_("Simple Digital Clock"),
_("Displays a digital clock on the desktop"));
return 1; return 1;
} }
@ -107,8 +108,8 @@ e_modapi_config(E_Module *module)
/****************************************************************** /******************************************************************
* private functions * private functions
****************************************************************/ ****************************************************************/
static TClock static TClock *
*_tclock_new() _tclock_new()
{ {
TClock *tclock; TClock *tclock;
Evas_List *managers, *l, *l2, *cl; Evas_List *managers, *l, *l2, *cl;
@ -204,7 +205,6 @@ static TClock
mi = e_menu_item_new(tclock->config_menu); mi = e_menu_item_new(tclock->config_menu);
e_menu_item_label_set(mi, con->name); e_menu_item_label_set(mi, con->name);
e_menu_item_submenu_set(mi, face->menu); e_menu_item_submenu_set(mi, face->menu);
} }
} }
} }
@ -238,13 +238,14 @@ _tclock_config_menu_new(TClock *tclock)
tclock->config_menu = e_menu_new(); tclock->config_menu = e_menu_new();
} }
static TClock_Face static TClock_Face *
*_tclock_face_new(E_Container *con) _tclock_face_new(E_Container *con)
{ {
TClock_Face *face; TClock_Face *face;
Evas_Object *o; Evas_Object *o;
Evas_Coord x, y, w, h; Evas_Coord x, y, w, h;
char buff[4096];
face = E_NEW(TClock_Face, 1); face = E_NEW(TClock_Face, 1);
if (!face) return NULL; if (!face) return NULL;
@ -255,7 +256,9 @@ static TClock_Face
o = edje_object_add(con->bg_evas); o = edje_object_add(con->bg_evas);
face->tclock_object = o; face->tclock_object = o;
edje_object_file_set(o, PACKAGE_DATA_DIR"/tclock.edj", "tclock/main"); snprintf(buff, sizeof(buff), PACKAGE_DATA_DIR"/tclock.edj");
if (!e_theme_edje_object_set(o, "base/theme/modules/tclock", "modules/tclock/main"))
edje_object_file_set(o, strdup(buff), "modules/tclock/main");
evas_object_show(o); evas_object_show(o);
o = evas_object_rectangle_add(con->bg_evas); o = evas_object_rectangle_add(con->bg_evas);
@ -333,8 +336,6 @@ _tclock_cb_check(void *data)
current_time=time(NULL); current_time=time(NULL);
local_time = localtime(&current_time); local_time = localtime(&current_time);
//strftime (buf,TIME_BUF, "%a %d,%b %H:%M", local_time);
tclock = data; tclock = data;
for (l = tclock->faces; l; l = l->next) for (l = tclock->faces; l; l = l->next)
{ {

View File

@ -4,7 +4,7 @@ images {
} }
collections { collections {
group { group {
name, "tclock/main"; name, "modules/tclock/main";
min, 32 32; min, 32 32;
max, 1024 768; max, 1024 768;