Revert "e: add e_popup_alpha_set()/get()"

This reverts commit a79f3900a3a18c6c179bd110a43b80f89878284d.

SVN revision: 60886
This commit is contained in:
Boris Faure 2011-06-30 21:05:41 +00:00
parent 204b26fa69
commit 3228b3e414
2 changed files with 0 additions and 14 deletions

View File

@ -74,18 +74,6 @@ e_popup_new(E_Zone *zone, int x, int y, int w, int h)
return pop;
}
EAPI void
e_popup_alpha_set(E_Popup *pop, Eina_Bool alpha)
{
ecore_evas_alpha_set(pop->ecore_evas, alpha);
}
EAPI Eina_Bool
e_popup_alpha_get(E_Popup *pop)
{
return ecore_evas_alpha_get(pop->ecore_evas);
}
EAPI void
e_popup_name_set(E_Popup *pop, const char *name)
{

View File

@ -34,8 +34,6 @@ EINTERN int e_popup_shutdown(void);
EAPI E_Popup *e_popup_new(E_Zone *zone, int x, int y, int w, int h);
EAPI void e_popup_name_set(E_Popup *pop, const char *name);
EAPI void e_popup_alpha_set(E_Popup *pop, Eina_Bool alpha);
EAPI Eina_Bool e_popup_alpha_get(E_Popup *pop);
EAPI void e_popup_show(E_Popup *pop);
EAPI void e_popup_hide(E_Popup *pop);
EAPI void e_popup_move(E_Popup *pop, int x, int y);