missing eapi's

SVN revision: 46575
This commit is contained in:
Carsten Haitzler 2010-02-27 10:06:22 +00:00
parent d2a7162547
commit e15c3cc2ed
2 changed files with 22 additions and 22 deletions

View File

@ -20,7 +20,7 @@ static int next_ok = 1;
static int next_can = 0;
static int next_prev = 0;
int
EAPI int
e_wizard_init(void)
{
Eina_List *l;
@ -52,7 +52,7 @@ e_wizard_init(void)
return 1;
}
int
EAPI int
e_wizard_shutdown(void)
{
if (pop)
@ -72,7 +72,7 @@ e_wizard_shutdown(void)
return 1;
}
void
EAPI void
e_wizard_go(void)
{
if (!curpage)
@ -94,7 +94,7 @@ e_wizard_go(void)
}
}
void
EAPI void
e_wizard_apply(void)
{
Eina_List *l;
@ -108,7 +108,7 @@ e_wizard_apply(void)
}
}
void
EAPI void
e_wizard_next(void)
{
Eina_List *l;
@ -148,7 +148,7 @@ e_wizard_next(void)
}
}
void
EAPI void
e_wizard_page_show(Evas_Object *obj)
{
Evas_Coord minw, minh;
@ -166,7 +166,7 @@ e_wizard_page_show(Evas_Object *obj)
}
}
E_Wizard_Page *
EAPI E_Wizard_Page *
e_wizard_page_add(void *handle,
int (*init) (E_Wizard_Page *pg),
int (*shutdown) (E_Wizard_Page *pg),
@ -194,7 +194,7 @@ e_wizard_page_add(void *handle,
return pg;
}
void
EAPI void
e_wizard_page_del(E_Wizard_Page *pg)
{
if (pg->handle) dlclose(pg->handle);
@ -202,20 +202,20 @@ e_wizard_page_del(E_Wizard_Page *pg)
free(pg);
}
void
EAPI void
e_wizard_button_next_enable_set(int enable)
{
next_ok = enable;
_e_wizard_next_eval();
}
void
EAPI void
e_wizard_title_set(const char *title)
{
edje_object_part_text_set(o_bg, "e.text.title", title);
}
void
EAPI void
e_wizard_labels_update(void)
{
edje_object_part_text_set(o_bg, "e.text.label", _("Next"));

View File

@ -21,13 +21,13 @@ struct _E_Wizard_Page
void *data;
};
int e_wizard_init(void);
int e_wizard_shutdown(void);
void e_wizard_go(void);
void e_wizard_apply(void);
void e_wizard_next(void);
void e_wizard_page_show(Evas_Object *obj);
E_Wizard_Page *
EAPI int e_wizard_init(void);
EAPI int e_wizard_shutdown(void);
EAPI void e_wizard_go(void);
EAPI void e_wizard_apply(void);
EAPI void e_wizard_next(void);
EAPI void e_wizard_page_show(Evas_Object *obj);
EAPI E_Wizard_Page *
e_wizard_page_add(void *handle,
int (*init) (E_Wizard_Page *pg),
int (*shutdown) (E_Wizard_Page *pg),
@ -35,10 +35,10 @@ E_Wizard_Page *
int (*hide) (E_Wizard_Page *pg),
int (*apply) (E_Wizard_Page *pg)
);
void e_wizard_page_del(E_Wizard_Page *pg);
void e_wizard_button_next_enable_set(int enable);
void e_wizard_title_set(const char *title);
void e_wizard_labels_update(void);
EAPI void e_wizard_page_del(E_Wizard_Page *pg);
EAPI void e_wizard_button_next_enable_set(int enable);
EAPI void e_wizard_title_set(const char *title);
EAPI void e_wizard_labels_update(void);
#endif
#endif