Re: [E-devel] Elementary GenList example problem

2010-05-19 Thread Atton Jonathan
This is a shortcut, it avoid to use a struct to store the int. Sometimes for an example it is better to have less code, this way you only see the interesting part. But of course this is not a good example for newbies. 2010/5/19 Brett Nash n...@nash.id.au On Tue, 18 May 2010 22:01:57 +0200

[E-devel] udev testers still needed!

2010-05-19 Thread Michael Blumenkrantz
udev support is gradually making its way into e17 as a (superior) alternative to hal, and I need more testers to tell me when stuff breaks! So far I've written in support for illume2 and the battery module. If you use these and you have udev, you should be firing up eeze and building e with

Re: [E-devel] udev testers still needed!

2010-05-19 Thread Tom Haste
t...@hackb0x:~/e/trunk/eeze$ eeze_udev_test For my first trick, I will find all of your keyboards and return their syspaths. Found keyboard: /sys/devices/platform/i8042/serio0/input/input4/event4 Next, I will find all of your mice and print the corresponding manufacturer. Found mouse

Re: [E-devel] udev testers still needed!

2010-05-19 Thread Mike
The batery is low popup needs some work since it does the same thing in all modes. I'll probably add a check that prevents it from popping up if the battery % is higher than 90 or something similar. If you can give me a udev readout (udevadm info --path=PATH_TO_BATTERY --query=property) of your

Re: [E-devel] udev testers still needed!

2010-05-19 Thread Sachiel
On Wed, May 19, 2010 at 2:39 PM, m...@zentific.com wrote: The batery is low popup needs some work since it does the same thing in all modes.  I'll probably add a check that prevents it from popping up if the battery % is higher than 90 or something similar. No, that's a workaround to some

Re: [E-devel] udev testers still needed!

2010-05-19 Thread David Seikel
I should stop replying to this list shortly after waking up. Apologies to Michael for sending this direct to you instead of the list. On Wed, 19 May 2010 04:15:52 -0400 Michael Blumenkrantz m...@zentific.com wrote: udev support is gradually making its way into e17 as a (superior) alternative

Re: [E-devel] Ecore Input Method

2010-05-19 Thread Daniele Ricci
On Tue, May 18, 2010 at 23:01, Eduardo Lima (Etrunko) ebl...@gmail.com wrote: Try taking a look on the code of that plugin, hope that helps. The first search took me right there. I hoped that was not the only source of information about this. In the meanwhile I will ask on IRC, someone must

Re: [E-devel] Ecore Input Method

2010-05-19 Thread Sachiel
On Wed, May 19, 2010 at 7:33 PM, Daniele Ricci daniele.ath...@gmail.com wrote: On Tue, May 18, 2010 at 23:01, Eduardo Lima (Etrunko) ebl...@gmail.com wrote: Try taking a look on the code of that plugin, hope that helps. The first search took me right there. I hoped that was not the only

Re: [E-devel] E SVN: raster IN trunk/ecore: po src/lib/ecore_evas

2010-05-19 Thread Vincent Torri
+static void * +_ecore_evas_buffer_pix_alloc(void *data, int size) +{ + return malloc(size); +} + +static void * +_ecore_evas_buffer_pix_free(void *data, void *pix) +{ + free(pix); +} what about inlining those functions ? Vincent

Re: [E-devel] E SVN: raster IN trunk/ecore: po src/lib/ecore_evas

2010-05-19 Thread The Rasterman
On Thu, 20 May 2010 06:18:34 +0200 (CEST) Vincent Torri vto...@univ-evry.fr said: +static void * +_ecore_evas_buffer_pix_alloc(void *data, int size) +{ + return malloc(size); +} + +static void * +_ecore_evas_buffer_pix_free(void *data, void *pix) +{ + free(pix); +}

Re: [E-devel] udev testers still needed!

2010-05-19 Thread Vincent Torri
On Thu, 20 May 2010, David Seikel wrote: I should stop replying to this list shortly after waking up. Apologies to Michael for sending this direct to you instead of the list. On Wed, 19 May 2010 04:15:52 -0400 Michael Blumenkrantz m...@zentific.com wrote: udev support is gradually

Re: [E-devel] Elementary GenList example problem

2010-05-19 Thread The Rasterman
On Wed, 19 May 2010 08:24:09 +0200 Atton Jonathan jonathan.at...@gmail.com said: it is indeed a shortcut. i could use printf with %p instead - but i was just avoidng adding a full struct/object there that would normally be the case when querying values from it. is imply used the pointer itself as

Re: [E-devel] udev testers still needed!

2010-05-19 Thread Vincent Torri
On Thu, 20 May 2010, Vincent Torri wrote: On Thu, 20 May 2010, David Seikel wrote: I should stop replying to this list shortly after waking up. Apologies to Michael for sending this direct to you instead of the list. On Wed, 19 May 2010 04:15:52 -0400 Michael Blumenkrantz

Re: [E-devel] where does elemenetary_test load default.edj into memory

2010-05-19 Thread The Rasterman
On Tue, 18 May 2010 16:28:36 +0800 wh tu whtu...@gmail.com said: Hi Rasterman and Vincent, Thanks for your quick reply. I will look at the elm_theme.c. If this is not so time -consuming for you could you tell me the startup processes when elementary_test run? u.. it does... stuff!

Re: [E-devel] Small lua patch.

2010-05-19 Thread The Rasterman
On Mon, 17 May 2010 12:05:37 -0300 Eduardo Felipe eduardofelip...@gmail.com said: in svn Hi folks! I know raster is working on rewriting lua, but still the timer API had a minor usability issue that I would like to see solved. Upon creating a timer, it's callback must return an int,