efl_ui_pager: provide a pack( implementation

this is needed in order to make efl_ui_pager complete.

Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Differential Revision: https://phab.enlightenment.org/D8739
This commit is contained in:
Marcel Hollerbach 2019-04-26 15:51:09 +02:00
parent 14a65b4f67
commit 1b6ac14b3f
2 changed files with 6 additions and 1 deletions

View File

@ -906,6 +906,10 @@ _efl_ui_pager_efl_pack_linear_pack_unpack_at(Eo *obj,
return subobj;
}
EOLIAN static Eina_Bool
_efl_ui_pager_efl_pack_pack(Eo *obj, Efl_Ui_Pager_Data *pd EINA_UNUSED, Efl_Gfx_Entity *subobj)
{
return efl_pack_begin(obj, subobj);
}
#include "efl_ui_pager.eo.c"

View File

@ -95,6 +95,7 @@ class @beta Efl.Ui.Pager extends Efl.Ui.Layout_Base implements Efl.Pack_Linear
Efl.Pack.pack_clear; //TODO
Efl.Pack.unpack_all; //TODO
Efl.Pack.unpack; //TODO
Efl.Pack.pack;
Efl.Pack_Linear.pack_begin;
Efl.Pack_Linear.pack_end;
Efl.Pack_Linear.pack_before;