|
From: Enlightenment C. <no...@cv...> - 2008-01-23 09:05:28
|
Enlightenment CVS committal
Author : raster
Project : e17
Module : apps/e
Dir : e17/apps/e/src/modules/battery
Modified Files:
e_mod_main.c
Log Message:
thumbscroll. the ability to scroll any widget (anything scrolled by the
scrollfram smart/widget) using your "finger" anywhere in the view. not useful
for desktops. useful for small screen devices - openmoko/n800 etc. are
perfect targets. just click and drag with your finger, release. drag fast and
releas and you get momentum and it continues for a bit while it slows down.
configurable via a new config module.
===================================================================
RCS file: /cvs/e/e17/apps/e/src/modules/battery/e_mod_main.c,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -3 -r1.102 -r1.103
--- e_mod_main.c 11 Jan 2008 07:33:55 -0000 1.102
+++ e_mod_main.c 23 Jan 2008 09:04:55 -0000 1.103
@@ -312,8 +312,8 @@
e_dialog_button_add(dia, _("OK"), NULL, NULL, NULL);
e_win_centered_set(dia->win, 1);
e_dialog_show(dia);
+ edje_object_signal_emit(inst->o_battery, "e,action,pulse,start", "e");
}
- edje_object_signal_emit(inst->o_battery, "e,action,pulse,start", "e");
}
edje_object_part_text_set(inst->o_battery, "e.text.reading", ret->reading);
edje_object_part_text_set(inst->o_battery, "e.text.time", ret->time);
|