[E-devel] new page APIs for gengrid (just like scroller)

2011-08-30 Thread Benjamin Drucker
Earlier this month, there was a svn commit (http://trac.enlightenment.org/e/changeset/62496) which added a few page-related APIs to the elm scroller.  These should probably also be added to gengrid, genlist and maybe even grid and list.  Right now, though, I need them for gengrid.  So I propose thi

Re: [E-devel] new page APIs for gengrid (just like scroller)

2011-09-01 Thread Benjamin Drucker
>Hello, >This looks ok to me. > >1. Can you attach the diff file to this mail instead of pasting diff >into the email contents? >2. Can you add any sample code either elementary test or src/examples? > >Thanks. >Daniel Juyung Seo (SeoZ) Patch is attached, with a) example usage as part of elemental

Re: [E-devel] new page APIs for gengrid (just like scroller)

2011-09-08 Thread Benjamin Drucker
I am submitting a new version of this patch that conforms to the whitespace rules for e17, as per a suggestion from Daniel. PS: In this patch is also a small cosmetic change which publishes an extant gengrid "longpress" event that never got documented. On Thu, Sep 1, 2011 at 6:34 PM

[E-devel] [PATCH] Document the existing gengrid "longpressed" signal

2011-09-09 Thread Benjamin Drucker
gengrid already emits "longpressed" signals, but it is not currently documented nor demonstrated in the examples. See the attached patch, please. Index: elementary/src/lib/elm_gengrid.c === --- elementary/src/lib/elm_gengrid.c (revisi

[E-devel] [PATCH] new page APIs for gengrid (just like scroller) [take three]

2011-09-09 Thread Benjamin Drucker
Slowly but surely This version of the gengrid page APIs patch has the following changes: 1. fixed spacing issues 2. add const where needed 3. submitted a gengrid longpressed change in a separate patch I really want to try to squeak this in the upcoming release if at all possible. If I have an

[E-devel] bug with edje map rotation?

2011-09-28 Thread Benjamin Drucker
I have am using map rotation of images in my edje script. My image, which is a png with alpha, when rotated on the z-axis, looks like one or two pixel colums from the right are wrapped to the left and a couple of rows at the bottom are wrapped up to the top. Very odd. Check out my attached .edj f

[E-devel] [PATCH] Propogate Gengrid signals to the internal edje view

2011-10-03 Thread Benjamin Drucker
Right now, signals coming from the gengrid's internal edje object are propagated up to the gengrid object. This patch enables the other direction as well: you can use the functions elm_object_signal_callback_add(grid, ...) elm_object_signal_callback_del(grid, ...) to signal the gengrid's inte

[E-devel] [PATCH] Bug fix for gengrid item size

2011-10-06 Thread Benjamin Drucker
This patch fixes a type-o bug in a recent gengrid commit that causes incorrect horizontal item positioning on horizontal gengrids. The problem is only visible when items are not square. I have observed that it fixes a problem I was having. Please review, thanks. Ben gengrid-item-size.patch Des