2017-07-06 15:02 GMT+09:00 Davide Andreoli <[email protected]>:

> 2017-07-06 3:40 GMT+02:00 Carsten Haitzler <[email protected]>:
>
> > On Thu, 6 Jul 2017 00:10:12 +0200 Davide Andreoli <
> [email protected]>
> > said:
> >
> > > 2017-07-05 9:04 GMT+02:00 Amitesh Singh <[email protected]>:
> > >
> > > > ami pushed a commit to branch master.
> > > >
> > > > http://git.enlightenment.org/core/efl.git/commit/?id=
> > > > a4e37b61f9a402d07aacb7855a3487515ab1c10b
> > > >
> > > > commit a4e37b61f9a402d07aacb7855a3487515ab1c10b
> > > > Author: Amitesh Singh <[email protected]>
> > > > Date:   Wed Jul 5 16:01:23 2017 +0900
> > > >
> > > >     elm test: image - use table to align image swallowed in layout
> > > >
> > > >     refer T4635
> > > >
> > >
> > > I'm really disappointed by this commit!
> > > I make a test to show you a break we have had in 1.19 and you
> > > changed the test...
> > >
> > > Guys, this constant behavior breaks are really pissing me off.
> > > It is become impossible to maintain an efl application
> >
> > wait. what's the original issue?
> >
>
> T4635 explain the issue in details
>

This is going to get fixed shortly. Sorry for the mess, my fault for not
catching the behaviour change when it happened.


>
>
> >
> > > > ---
> > > >  src/bin/elementary/test_image.c | 53 ++++++++++++++++++++++++++++++
> > > > +++++++----
> > > >  1 file changed, 48 insertions(+), 5 deletions(-)
> > > >
> > > > diff --git a/src/bin/elementary/test_image.c
> > b/src/bin/elementary/test_
> > > > image.c
> > > > index fd59a63c56..ffd32f094d 100644
> > > > --- a/src/bin/elementary/test_image.c
> > > > +++ b/src/bin/elementary/test_image.c
> > > > @@ -81,28 +81,68 @@ test_image(void *data EINA_UNUSED, Evas_Object
> *obj
> > > > EINA_UNUSED, void *event_in
> > > >     evas_object_show(win);
> > > >  }
> > > >
> > > > +typedef struct _min_size_obj
> > > > +{
> > > > +   Evas_Object *tb, *rect;
> > > > +} min_size_obj;
> > > >
> > > >  static void
> > > >  im_align_cb(void *data, Evas_Object *obj EINA_UNUSED, void
> *event_info
> > > > EINA_UNUSED)
> > > >  {
> > > >     double h,v;
> > > >     Evas_Object *win = data;
> > > > -   Evas_Object *im = evas_object_data_get(win, "im");
> > > >     Evas_Object *h_sl = evas_object_data_get(win, "h_sl");
> > > >     Evas_Object *v_sl = evas_object_data_get(win, "v_sl");
> > > > +   min_size_obj *mso = evas_object_data_get(win, "mso");
> > > >
> > > >     h = elm_slider_value_get(h_sl);
> > > >     v = elm_slider_value_get(v_sl);
> > > > -   evas_object_size_hint_align_set(im, h, v);
> > > > -   evas_object_size_hint_align_get(im, &h, &v);
> > > > +
> > > > +   elm_table_align_set(mso->tb, h, v);
> > > >     printf("align %.3f %.3f\n", h, v);
> > > >  }
> > > >
> > > > +static min_size_obj *
> > > > +_min_size_obj_set(Evas_Object *obj, Evas_Object *pack_obj, int w,
> int
> > h)
> > > > +{
> > > > +   Evas_Object *tb, *rect;
> > > > +   min_size_obj *mso = malloc(sizeof(min_size_obj));
> > > > +
> > > > +   tb = elm_table_add(obj);
> > > > +
> > > > +   rect = evas_object_rectangle_add(evas_object_evas_get(tb));
> > > > +   evas_object_size_hint_min_set(rect, w, h);
> > > > +   evas_object_size_hint_max_set(rect, w, h);
> > > > +   evas_object_color_set(rect, 0, 0, 0, 0);
> > > > +   evas_object_size_hint_align_set(rect, EVAS_HINT_FILL,
> > > > +                                   EVAS_HINT_FILL);
> > > > +   evas_object_size_hint_weight_set(rect, EVAS_HINT_EXPAND,
> > > > +                                    EVAS_HINT_EXPAND);
> > > > +   elm_table_pack(tb, rect, 0, 0, 1, 1);
> > > > +   elm_table_pack(tb, pack_obj, 0, 0, 1, 1);
> > > > +   evas_object_show(rect);
> > > > +   evas_object_show(tb);
> > > > +
> > > > +   mso->rect = rect;
> > > > +   mso->tb = tb;
> > > > +
> > > > +   return mso;
> > > > +}
> > > > +
> > > > +static void
> > > > +_cleanup_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj
> > > > EINA_UNUSED, void *event_info EINA_UNUSED)
> > > > +{
> > > > +   min_size_obj *mso = data;
> > > > +
> > > > +   free(mso);
> > > > +}
> > > > +
> > > >  void
> > > >  test_image_swallow_align(void *data EINA_UNUSED, Evas_Object *obj
> > > > EINA_UNUSED, void *event_info EINA_UNUSED)
> > > >  {
> > > >     Evas_Object *win, *box, *im, *ly, *sl;
> > > >     char buf[PATH_MAX];
> > > > +   min_size_obj *mso;
> > > >
> > > >     win = elm_win_util_standard_add("image align", "Test Align
> Inside
> > > > Layout");
> > > >     elm_win_autodel_set(win, EINA_TRUE);
> > > > @@ -125,9 +165,11 @@ test_image_swallow_align(void *data EINA_UNUSED,
> > > > Evas_Object *obj  EINA_UNUSED,
> > > >     elm_image_file_set(im, buf, NULL);
> > > >     evas_object_size_hint_weight_set(im, EVAS_HINT_EXPAND,
> > > > EVAS_HINT_EXPAND);
> > > >     evas_object_size_hint_align_set(im, EVAS_HINT_FILL,
> > EVAS_HINT_FILL);
> > > > -   elm_layout_content_set(ly, "swallow", im);
> > > >     evas_object_show(im);
> > > > -   evas_object_data_set(win, "im", im);
> > > > +
> > > > +   mso = _min_size_obj_set(win, im, 50, 50);
> > > > +   elm_layout_content_set(ly, "swallow", mso->tb);
> > > > +   evas_object_data_set(win, "mso", mso);
> > > >
> > > >     sl = elm_slider_add(win);
> > > >     elm_slider_value_set(sl, 0.5);
> > > > @@ -151,6 +193,7 @@ test_image_swallow_align(void *data EINA_UNUSED,
> > > > Evas_Object *obj  EINA_UNUSED,
> > > >
> > > >     evas_object_resize(win, 300, 600);
> > > >     evas_object_show(win);
> > > > +   evas_object_event_callback_add(win, EVAS_CALLBACK_FREE,
> > _cleanup_cb,
> > > > mso);
> > > >  }
> > > >
> > > >  static void
> > > >
> > > > --
> > > >
> > > >
> > > >
> > > ------------------------------------------------------------
> > ------------------
> > > Check out the vibrant tech community on one of the world's most
> > > engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> > > _______________________________________________
> > > enlightenment-devel mailing list
> > > [email protected]
> > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > >
> >
> >
> > --
> > ------------- Codito, ergo sum - "I code, therefore I am" --------------
> > The Rasterman (Carsten Haitzler)    [email protected]
> >
> >
> ------------------------------------------------------------
> ------------------
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> _______________________________________________
> enlightenment-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
>


-- 
Jean-Philippe André
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to