#include "main.h" static Evas_Object *o_text = NULL; static void _setup(void) { Evas_Object *o; Evas_Textblock_Style *st; o = eo_add(EVAS_TEXTBLOCK_CLASS, G_evas); eo_do(o, evas_obj_position_set(10, 40), evas_obj_size_set(win_w - 20, win_h - 50), evas_obj_visibility_set(EINA_TRUE)); st = evas_textblock_style_new(); evas_textblock_style_set (st, "DEFAULT='font=Vera font_size=8 align=left color=#000 wrap=word'" "center='+ font=Vera font_size=10 align=center'" "/center='- \n \n'" "p='+ font=Vera font_size=10 align=left'" "/p='- \n \n'" ); eo_do(o, evas_obj_textblock_style_set(st), evas_obj_textblock_clear(), evas_obj_textblock_text_markup_set ("
" "Enlightenment used to be a window manager project, but " "since has changed a lot to become a miniature desktop and mobile " "device environment all of its own. It is now made up of many " "components (libraries and applications) that have specific uses. " "It is very large, and so requires more testing and demonstration." "
" "
" "Expedite is a full test suite for Evas, which is one of the " "core components of the Enlightenment Foundation Libraries. Evas " "handles the realtime display canvas used by EFL applications to " "render to many targets, including framebuffer, X11, OpenGL, memory, " "DirectFB and other targets to boot. It handles high level graphic " "layout descriptions that applications set up, dealing with the hard " "work of doing the drawing for them." "
" )); evas_textblock_style_free(st); o_text = o; ui_fps(0.0); } static void _cleanup(void) { eo_del(o_text); o_text = NULL; } static void _loop(double t EINA_UNUSED, int f EINA_UNUSED) { } static void _key(char *key) { if ((!strcmp(key, "Escape")) || (!strcmp(key, "q")) || (!strcmp(key, "Q"))) { _cleanup(); ui_menu(); } } void about_start(void) { ui_func_set(_key, _loop); _setup(); }