Re: [E-devel] Writing my own list with Evas/Edje?

2007-03-08 Thread Nicolas Aguirre
Le Thu, 8 Mar 2007 19:57:40 -0300, "Gustavo Sverzut Barbieri" <[EMAIL PROTECTED]> a écrit : > Hi guys, > > I'm writing some test applications to understand EFL better and check > performance on Nokia 770 and N800. > > My current app is to simulate a vertical list of text items that move > on key

[E-devel] Writing my own list with Evas/Edje?

2007-03-08 Thread Gustavo Sverzut Barbieri
Hi guys, I'm writing some test applications to understand EFL better and check performance on Nokia 770 and N800. My current app is to simulate a vertical list of text items that move on keydown "Up" or "Down". I'm using e_box as base for list and allocating one object per item, as you recommende

Re: [E-devel] To rephorm

2007-03-08 Thread Nicolas Aguirre
Le Tue, 6 Mar 2007 08:23:51 -0600, Brian Mattern <[EMAIL PROTECTED]> a écrit : > On Mon, Mar 05, 2007 at 11:02:27PM -0600, Nick Hughart wrote: > > Hi, I think you had posted a link to your in progress e_dbus code, > > but I was wondering if you could post it again. I not quite sure > > how done i

Re: [E-devel] [PATH] eet fixed / variable arrays support

2007-03-08 Thread Nathan Ingersoll
On 3/8/07, Jorge Luis Zapata Muga <[EMAIL PROTECTED]> wrote: > > basically it was on the eet TODO, both group types were already > defined but weren't implemented. I was looking for any of them for a > project i'm coding on parallel. If your question is why are both > EET_G_ARRAY and EET_G_VAR_ARRA

Re: [E-devel] ecore_x_dpms.c questions

2007-03-08 Thread Vincent Torri
On Thu, 8 Mar 2007, Ravenlock wrote: > Did you want to do the suggested work, or would you like me to? I'll do it. Vincent - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you

[E-devel] Patch for disabling confirmation dialogs

2007-03-08 Thread Brian 'morlenxus' Miculcy
Hi guys, the attached patch allows to disable confirmation dialogs. For example you want to shutdown or hibernate your computer, you first need to accept the warning. This patch adds an option to the config panel advanced->dialogs which allows to disable that. People where asking for it, since my

Re: [E-devel] [PATH] eet fixed / variable arrays support

2007-03-08 Thread Jorge Luis Zapata Muga
On 3/8/07, Jorge Luis Zapata Muga <[EMAIL PROTECTED]> wrote: > hi all, the following patch makes eet support for fixed arrays and > variable arrays: > int array[100]; // fixed > int varray*; // variable > int varray_count; > > if you prefer i can commit directly but i prefer if someone can take a >

Re: [E-devel] ecore_x_dpms.c questions

2007-03-08 Thread Ravenlock
On 03/08/2007 09:46, Vincent Torri wrote: > > > On Thu, 8 Mar 2007, Ravenlock wrote: > >> On 03/08/2007 00:16, Vincent Torri wrote: >>> Hey, >>> >>> I have a few questions about ecore_x_dpms.c >>> >>> 1) As an X extension, why don't we query the extension, to see if >>> it's available or not ?

Re: [E-devel] ecore_x_dpms.c questions

2007-03-08 Thread Vincent Torri
On Thu, 8 Mar 2007, Ravenlock wrote: > On 03/08/2007 00:16, Vincent Torri wrote: >> Hey, >> >> I have a few questions about ecore_x_dpms.c >> >> 1) As an X extension, why don't we query the extension, to see if it's >> available or not ? > > Thats what ecore_x_dpms_capable is responsible for.

Re: [E-devel] [PATH] eet fixed / variable arrays support

2007-03-08 Thread Jorge Luis Zapata Muga
On 3/8/07, Nathan Ingersoll <[EMAIL PROTECTED]> wrote: > Hi Jorge, Hi Nathan, > > On 3/8/07, Jorge Luis Zapata Muga <[EMAIL PROTECTED]> wrote: > > > > if you prefer i can commit directly but i prefer if someone can take a > > look on it :) > > note that this makes an API break on the function > >

Re: [E-devel] ecore_x_dpms.c questions

2007-03-08 Thread Ravenlock
On 03/08/2007 08:50, Ravenlock wrote: > On 03/08/2007 00:16, Vincent Torri wrote: >> Hey, >> >> I have a few questions about ecore_x_dpms.c >> >> 1) As an X extension, why don't we query the extension, to see if it's >> available or not ? > > Thats what ecore_x_dpms_capable is responsible for. A

Re: [E-devel] [PATH] eet fixed / variable arrays support

2007-03-08 Thread Nathan Ingersoll
Hi Jorge, On 3/8/07, Jorge Luis Zapata Muga <[EMAIL PROTECTED]> wrote: > > if you prefer i can commit directly but i prefer if someone can take a > look on it :) > note that this makes an API break on the function > "eet_data_descriptor_element_add" as we need another parameter the > "count_offset

Re: [E-devel] ecore_x_dpms.c questions

2007-03-08 Thread Ravenlock
On 03/08/2007 00:16, Vincent Torri wrote: > Hey, > > I have a few questions about ecore_x_dpms.c > > 1) As an X extension, why don't we query the extension, to see if it's > available or not ? Thats what ecore_x_dpms_capable is responsible for. And it is used when initializing the config pane

[E-devel] [PATH] eet fixed / variable arrays support

2007-03-08 Thread Jorge Luis Zapata Muga
hi all, the following patch makes eet support for fixed arrays and variable arrays: int array[100]; // fixed int varray*; // variable int varray_count; if you prefer i can commit directly but i prefer if someone can take a look on it :) note that this makes an API break on the function "eet_data_