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 committed by Mike Blumenkrantz
parent ed2b2aa790
commit c62703a0d9
2 changed files with 6 additions and 1 deletions

View File

@ -872,6 +872,10 @@ _efl_ui_pager_efl_pack_linear_pack_unpack_at(Eo *obj EINA_UNUSED,
return NULL;
}
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;