make page 000 display firstpage theme element for wizard.

SVN revision: 70575
This commit is contained in:
Carsten Haitzler 2012-05-01 11:33:19 +00:00
parent a580213636
commit 8cf82ce92f
1 changed files with 6 additions and 0 deletions

View File

@ -26,8 +26,14 @@ _next_page(void *data __UNUSED__)
EAPI int
wizard_page_show(E_Wizard_Page *pg __UNUSED__)
{
Evas_Object *o;
e_wizard_title_set(_("Enlightenment"));
e_wizard_button_next_enable_set(0);
o = edje_object_add(pg->evas);
e_theme_edje_object_set(o, "base/theme/wizard", "e/wizard/firstpage");
e_wizard_page_show(o);
ecore_timer_add(2.0, _next_page, NULL);
return 1;
}