Re: [E-devel] E SVN: raster trunk/e/src/bin

2012-05-24 Thread The Rasterman
On Fri, 25 May 2012 10:15:29 +0800 P Purkayastha said: > Sorry once again. I wonder... this means that acpid has all the > workarounds for all the broken laptops out there. Maybe you could just > always trust acpid to give the correct information (if acpid is running). umm no - this isnt in ac

Re: [E-devel] E SVN: raster trunk/e/src/bin

2012-05-24 Thread The Rasterman
On Fri, 25 May 2012 03:08:47 +0200 Michaël Bouchaud said: i don't know exactly what the cause is. i'd have to study up on acpi dsdt's more (i just know about it rather vaguely) and dump the dsdt, disassemble, read and see. i'd also have to poke around the kernel to see if it perchance screwed up.

Re: [E-devel] E SVN: yoz IN trunk/elementary: data/themes/widgets src/bin src/lib

2012-05-24 Thread Daniel Juyung Seo
That was our first attempt. Anyhow gengrid will be merged into genlist so we do not need to add up temporary api sets. That's why we removed elm_gen_xxx apis. Maybe the merge will be done before elm 2.0? Daniel Juyung Seo (SeoZ) On Fri, May 25, 2012 at 10:25 AM, Michaël Bouchaud wrote: > So why

Re: [E-devel] E SVN: hyoyoung trunk/elementary/src/lib

2012-05-24 Thread Hyoyoung Chang
i removed casting at r71412 thanks guys. On Fri, May 25, 2012 at 10:28 AM, Daniel Juyung Seo wrote: > 1. do not cast in this case > 2. no space for casting > yes we have some wrong formatted codes, just fix them when we find them. > On May 25, 2012 12:21 AM, "Carsten Haitzler" wrote: > >> On Thu

Re: [E-devel] E SVN: raster trunk/e/src/bin

2012-05-24 Thread P Purkayastha
Sorry once again. I wonder... this means that acpid has all the workarounds for all the broken laptops out there. Maybe you could just always trust acpid to give the correct information (if acpid is running). On 05/25/2012 09:08 AM, Michaël Bouchaud wrote: > I really dislike these surprises :) >

Re: [E-devel] E SVN: hyoyoung trunk/elementary/src/lib

2012-05-24 Thread Daniel Juyung Seo
1. do not cast in this case 2. no space for casting yes we have some wrong formatted codes, just fix them when we find them. On May 25, 2012 12:21 AM, "Carsten Haitzler" wrote: > On Thu, 24 May 2012 11:12:31 -0300 Gustavo Sverzut Barbieri > said: > > > On Thu, May 24, 2012 at 11:09 AM, Carsten H

Re: [E-devel] E SVN: yoz IN trunk/elementary: data/themes/widgets src/bin src/lib

2012-05-24 Thread Michaël Bouchaud
So why not create a new prototype set of elm_gen_item apis and use it for gengrid. That's my question ? 2012/5/25 Daniel Juyung Seo > yes the problem is that we need to break apis or add inconsistent apis. > absolutely we cant break apis. > > anyhow genlist and gengrid were not merged in elm 1.0

Re: [E-devel] E SVN: yoz IN trunk/elementary: data/themes/widgets src/bin src/lib

2012-05-24 Thread Daniel Juyung Seo
yes the problem is that we need to break apis or add inconsistent apis. absolutely we cant break apis. anyhow genlist and gengrid were not merged in elm 1.0. i am really sorry for that. On May 25, 2012 9:56 AM, "Michaël Bouchaud" wrote: > Ok how to proceed create new one or break it ? > I really

Re: [E-devel] E SVN: raster trunk/e/src/bin

2012-05-24 Thread Michaël Bouchaud
I really dislike these surprises :) This issue couldn't be reported to kernel devs ? Or this issue is from dsdt and acpi from vendors ? Not in view to remove the work around... 2012/5/25 Enlightenment SVN > Log: > work around ppurka's demented laptop. > > > > Author: raster > Date:

Re: [E-devel] E SVN: yoz IN trunk/elementary: data/themes/widgets src/bin src/lib

2012-05-24 Thread Michaël Bouchaud
Ok how to proceed create new one or break it ? I really dreams about a merge of elm_genlist_item and elm_gengrid_item apis into gen_item apis 2012/5/23 Carsten Haitzler > On Wed, 9 May 2012 16:11:45 +0200 Michaël Bouchaud said: > > > 2012/5/8 Daniel Juyung Seo > > > Ho damn ! > > I had in mind

Re: [E-devel] [PATCH v3] Only unlink the temporary file created in evas_object_image_memfile_set on cleanup

2012-05-24 Thread Raphael Kubo da Costa
Carsten Haitzler (The Rasterman) writes: > On Thu, 24 May 2012 16:35:23 -0300 Raphael Kubo da Costa > said: >> Should this be backported, as currently no stable release has that >> function working on non-Linux platforms? Do I need to write >> NEWS/ChangeLog items? > > good question. i suppose i

Re: [E-devel] [Patch] Elementary : Elm_slider widget enhancements – modular design to display indicator text at the top of slider.

2012-05-24 Thread The Rasterman
On Thu, 24 May 2012 15:02:05 -0300 Gustavo Sverzut Barbieri said: > Hi Sumanth, > > Thanks for the explanation, NOW it's much better to decide what to do! :-) > See some comments below: > > On Thu, May 24, 2012 at 12:17 PM, Sumanth Krishna Mannam > wrote: > > Hi , > > > > Indicator popup UI is

Re: [E-devel] [PATCH v3] Only unlink the temporary file created in evas_object_image_memfile_set on cleanup

2012-05-24 Thread The Rasterman
On Thu, 24 May 2012 16:35:23 -0300 Raphael Kubo da Costa said: > Carsten Haitzler (The Rasterman) writes: > > > beyond using TMPDIR, TMP and TEMP env vars... i dont see how this > > helps much :) in fact they probably should be there in if (fd < 0). on > > non-linux it STAR TS with fd being -1

Re: [E-devel] [PATCH v3] Only unlink the temporary file created in evas_object_image_memfile_set on cleanup

2012-05-24 Thread Raphael Kubo da Costa
Carsten Haitzler (The Rasterman) writes: > beyond using TMPDIR, TMP and TEMP env vars... i dont see how this > helps much :) in fact they probably should be there in if (fd < 0). on > non-linux it STAR TS with fd being -1 so it goes right it the failure > case. for linx this means failure case st

Re: [E-devel] [Patch] Elementary : Elm_slider widget enhancements – modular design to display indicator text at the top of slider.

2012-05-24 Thread Gustavo Sverzut Barbieri
Hi Sumanth, Thanks for the explanation, NOW it's much better to decide what to do! :-) See some comments below: On Thu, May 24, 2012 at 12:17 PM, Sumanth Krishna Mannam wrote: > Hi , > > Indicator popup UI is already implemented as an edc style based feature. > But the concern is about layering

[E-devel] Ecore : Strange delay with timers and main loop

2012-05-24 Thread Pierre-Olivier Huguet
Hello, I'm working on old programs that we can't migrate in *full EFL* right now. Causing sometimes stranges behaviours... In this case, I have several functions with ecore_main_loop_begin(), and a complete_cb with ecore_main_loop_quit(). The issue I'm facing happens when instructions - not rel

Re: [E-devel] [BUG] Items Minimized to Systray Fail to Maximize

2012-05-24 Thread The Rasterman
On Thu, 24 May 2012 08:38:02 -0700 Joel Madero said: ask them to check if _NET_ACTIVE_WINDOW is in the list of _NET_SUPPORTED atoms on root (see netwm standards) and if it is, use the _NET_ACTIVE_WINDOW activation request to request the window become active. the other alternative is instead of i

Re: [E-devel] [BUG] Items Minimized to Systray Fail to Maximize

2012-05-24 Thread Joel Madero
Any suggestions on what I'd tell the Empathy devs and Handbrake devs to get this to work properly in E? I follow what you're saying but not sure how to convert that into a bug and/or feature request for the devs over there. Appreciate the information. Also can someone explain why it works in other

Re: [E-devel] E SVN: hyoyoung trunk/elementary/src/lib

2012-05-24 Thread The Rasterman
On Thu, 24 May 2012 11:12:31 -0300 Gustavo Sverzut Barbieri said: > On Thu, May 24, 2012 at 11:09 AM, Carsten Haitzler > wrote: > > On Thu, 24 May 2012 16:51:07 +0300 Tom Hacohen > > said: > > > >> On 24/05/12 16:46, Gustavo Sverzut Barbieri wrote: > >> > On Wed, May 23, 2012 at 11:38 PM, Enlig

Re: [E-devel] E SVN: hyoyoung trunk/elementary/src/lib

2012-05-24 Thread The Rasterman
On Thu, 24 May 2012 17:14:58 +0300 Tom Hacohen said: > On 24/05/12 17:09, Carsten Haitzler (The Rasterman) wrote: > > we've never added spaces after casts before... historically. > > > > > > I guess that depends on where in the EFL you look. :) well since most of efl comes from my formatting..

Re: [E-devel] [Patch] Elementary : Elm_slider widget enhancements – modular design to display indicator text at the top of slider.

2012-05-24 Thread Sumanth Krishna Mannam
Hi , Indicator popup UI is already implemented as an edc style based feature. But the concern is about layering ( refer to earlier discussions on the same: http://www.mail-archive.com/enlightenment-devel@lists.sourceforge.net/msg41014.html ) - the current design cannot bring the slider indicator

Re: [E-devel] [Patch] Elementary : Elm_slider widget enhancements – modular design to display indicator text at the top of slider.

2012-05-24 Thread Gustavo Sverzut Barbieri
On Thu, May 24, 2012 at 11:12 AM, Sumanth Krishna Mannam wrote: > Dear All, > > [Change description]: Elm_slider modular design to display indicator text at > the top of Slider. > > Currently elm_slider displays indicator text in an edj part which is a single > object in the same layer. > If we

Re: [E-devel] E SVN: hyoyoung trunk/elementary/src/lib

2012-05-24 Thread Tom Hacohen
On 24/05/12 17:09, Carsten Haitzler (The Rasterman) wrote: > we've never added spaces after casts before... historically. > > I guess that depends on where in the EFL you look. :) -- Tom. -- Live Security Virtual Confere

[E-devel] [Patch] Elementary : Elm_slider widget enhancements – modular design to display indicator text at the top of slider.

2012-05-24 Thread Sumanth Krishna Mannam
Dear All, [Change description]: Elm_slider modular design to display indicator text at the top of Slider. Currently elm_slider displays indicator text in an edj part which is a single object in the same layer. If we pack the slider widget in a genlist, during its drag state, the indicator par

Re: [E-devel] E SVN: hyoyoung trunk/elementary/src/lib

2012-05-24 Thread Gustavo Sverzut Barbieri
On Thu, May 24, 2012 at 11:09 AM, Carsten Haitzler wrote: > On Thu, 24 May 2012 16:51:07 +0300 Tom Hacohen said: > >> On 24/05/12 16:46, Gustavo Sverzut Barbieri wrote: >> > On Wed, May 23, 2012 at 11:38 PM, Enlightenment SVN >> >  wrote: >> >> >> >> Log: >> >> elementary/hoversel: fix indent >>

Re: [E-devel] E SVN: hyoyoung trunk/elementary/src/lib

2012-05-24 Thread The Rasterman
On Thu, 24 May 2012 16:51:07 +0300 Tom Hacohen said: > On 24/05/12 16:46, Gustavo Sverzut Barbieri wrote: > > On Wed, May 23, 2012 at 11:38 PM, Enlightenment SVN > > wrote: > >> > >> Log: > >> elementary/hoversel: fix indent > >> > >> > >> Author: hyoyoung > >> Date: 2012-05-23 19

Re: [E-devel] [patch] allow copy and paste operations for non-widget evas objects

2012-05-24 Thread Gustavo Sverzut Barbieri
On Thu, May 24, 2012 at 1:36 AM, Carsten Haitzler wrote: > On Mon, 21 May 2012 17:20:05 +0200 Michal Pakula vel Rutka > said: > > thank makes sense and is a useful fallback fro your situation. its in svn. i > added a changelog and AUTHORS entry too for you. in future can you include > changelog e

Re: [E-devel] Signal hooks on elm_icon

2012-05-24 Thread Gustavo Sverzut Barbieri
On Thu, May 24, 2012 at 6:06 AM, Carsten Haitzler wrote: > On Thu, 24 May 2012 16:10:55 +0900 Daniel Juyung Seo > said: > >> I guess he means this: >> > elm_widget_signal_callback_add_hook_set(obj, _signal_callback_add_hook); >> > elm_widget_signal_callback_del_hook_set(obj, _signal_callback_del_

Re: [E-devel] E SVN: hyoyoung trunk/elementary/src/lib

2012-05-24 Thread Tom Hacohen
On 24/05/12 16:46, Gustavo Sverzut Barbieri wrote: > On Wed, May 23, 2012 at 11:38 PM, Enlightenment SVN > wrote: >> >> Log: >> elementary/hoversel: fix indent >> >> >> Author: hyoyoung >> Date: 2012-05-23 19:38:59 -0700 (Wed, 23 May 2012) >> New Revision: 71377 >> Trac: htt

Re: [E-devel] E SVN: hyoyoung trunk/elementary/src/lib

2012-05-24 Thread Gustavo Sverzut Barbieri
On Wed, May 23, 2012 at 11:38 PM, Enlightenment SVN wrote: > > Log: > elementary/hoversel: fix indent > > > Author:       hyoyoung > Date:         2012-05-23 19:38:59 -0700 (Wed, 23 May 2012) > New Revision: 71377 > Trac:         http://trac.enlightenment.org/e/changeset/71377 > > Modified: >  tru

Re: [E-devel] Elementary+threading

2012-05-24 Thread The Rasterman
On Thu, 24 May 2012 14:30:46 +0200 Leif Middelschulte said: > 2012/5/24 Carsten Haitzler : > > On Thu, 24 May 2012 05:25:10 + (GMT) SHILPA ONKAR SINGH > > said: > > > > you can increase the max number of worker threads, but it limits it to 2x > > number of cpu's. at the moment. as such these

Re: [E-devel] Elementary+threading

2012-05-24 Thread Leif Middelschulte
2012/5/24 Carsten Haitzler : > On Wed, 23 May 2012 20:13:24 +0200 Leif Middelschulte > said: > > it seems cedric loves to starve the workers. never let cedric be in charge > man... just think. you'll be starving. :) seriously - the thread workers did > this: > > while (queue_a) handle(queue_a); >

Re: [E-devel] Elementary+threading

2012-05-24 Thread Leif Middelschulte
2012/5/24 Carsten Haitzler : > On Thu, 24 May 2012 05:25:10 + (GMT) SHILPA ONKAR SINGH > said: > > you can increase the max number of worker threads, but it limits it to 2x > number of cpu's. at the moment. as such these threads get put in a queue if > all > workers are busy and so get handle

Re: [E-devel] Elementary+threading

2012-05-24 Thread Vincent Torri
On Thu, May 24, 2012 at 11:58 AM, Carsten Haitzler wrote: > On Wed, 23 May 2012 20:13:24 +0200 Leif Middelschulte > said: > > it seems cedric loves to starve the workers. never let cedric be in charge > man... just think. you'll be starving. :) seriously - the thread workers did > this: > > while

Re: [E-devel] [BUG] Items Minimized to Systray Fail to Maximize

2012-05-24 Thread Tom Hacohen
On 24/05/12 14:31, Carsten Haitzler (The Rasterman) wrote: > 4. tried handbrake-gtk... and this does do what you say.. Just from the app name, it seems it uses gtk, isn't gtk supposed to do it right? If it doesn't do it right, open a bug in gtk, if it does but handbrake-gtk does something funky,

Re: [E-devel] [BUG] Items Minimized to Systray Fail to Maximize

2012-05-24 Thread The Rasterman
On Wed, 23 May 2012 10:23:15 -0700 Joel Madero said: looked into it: 1. opera works like a charm for me. that's because it withdraws its window - not iconifies. 2. clementine indeed works just fine 3. havent tried empathy 4. tried handbrake-gtk... and this does do what you say.. but there is a c

Re: [E-devel] Elementary+threading

2012-05-24 Thread The Rasterman
On Thu, 24 May 2012 10:09:45 + (GMT) SHILPA ONKAR SINGH said: pedantic! :-P :) ok ok > not >= - makes no material difference :) > Thanks for the fix, > but a trivial error I noticed in ecore_thread_max_set > first a check is added to see whether num >= 16*eina_cpu_count > and then num = 16*

Re: [E-devel] [Patch][elm_map] Add New "loaded" signal

2012-05-24 Thread The Rasterman
On Thu, 24 May 2012 14:21:33 +0900 Bluezery said: > Dear EFL developers, > > I want to add new "loaded" signal to elementary map. This signal > notify users when all map tiles are loaded. Timer is used for this > signal. > Currently "tile,loaded" can be used for each separated tile. So the > us

Re: [E-devel] Elementary+threading

2012-05-24 Thread SHILPA ONKAR SINGH
Thanks for the fix, but a trivial error I noticed in ecore_thread_max_set first a check is added to see whether num >= 16*eina_cpu_count and then num = 16*eina_cpu_count instead the check has to be num > 16*eina_cpu_count Thanks & Regards Shilpa --- Original Message --- Sender : Carste

Re: [E-devel] Elementary+threading

2012-05-24 Thread The Rasterman
On Wed, 23 May 2012 20:13:24 +0200 Leif Middelschulte said: it seems cedric loves to starve the workers. never let cedric be in charge man... just think. you'll be starving. :) seriously - the thread workers did this: while (queue_a) handle(queue_a); while (queue_b) handle(queue_b); normal ecor

Re: [E-devel] [patch] allow copy and paste operations for non-widget evas objects

2012-05-24 Thread Michal Pakula vel Rutka
Thanks, that was my first patch here, next time if I will contribute to another repository I will update Changelog and add myself to AUTHORS :) BR, Michal > > On Mon, 21 May 2012 17:20:05 +0200 Michal Pakula vel Rutka > said: > > thank makes sense and is a useful fallback fro your situation. i

[E-devel] [Patch] [elm_entry] New APIs for user style

2012-05-24 Thread thiep ha
Hello, As we known that, the user style is a convenience way which helps users to work with style without the need of new edc file. It means that users can set their own style (e.g. font, font_size, color) without making new edc file. Currently, in Elementary Entry, there is no APIs supporting

Re: [E-devel] E SVN: raster IN trunk/ecore: . src/lib/ecore_con src/lib/ecore_ipc

2012-05-24 Thread The Rasterman
On Thu, 24 May 2012 10:03:16 +0200 Vincent Torri said: ummm.. it is there in the docs in the header. @since 1.3 :) > maybe just adding > > /** > * @since 1.3 > */ > > would be nice, just to know when it is added > > Vincent > > On Thu, May 24, 2012 at 9:49 AM, Enlightenment SVN > wrote: > >

Re: [E-devel] Signal hooks on elm_icon

2012-05-24 Thread The Rasterman
On Thu, 24 May 2012 16:10:55 +0900 Daniel Juyung Seo said: > I guess he means this: > > elm_widget_signal_callback_add_hook_set(obj, _signal_callback_add_hook); > > elm_widget_signal_callback_del_hook_set(obj, _signal_callback_del_hook); > > I think we need to support this before elm2.0. Nobody

Re: [E-devel] E SVN: raster IN trunk/ecore: . src/lib/ecore_con src/lib/ecore_ipc

2012-05-24 Thread Michael Blumenkrantz
it's already there... On 5/24/12, Vincent Torri wrote: > maybe just adding > > /** > * @since 1.3 > */ > > would be nice, just to know when it is added > > Vincent > > On Thu, May 24, 2012 at 9:49 AM, Enlightenment SVN > wrote: >> Log: >> and no more segv's in ecore-con and ecore-ipc. see change

Re: [E-devel] E SVN: raster IN trunk/ecore: . src/lib/ecore_con src/lib/ecore_ipc

2012-05-24 Thread Vincent Torri
maybe just adding /** * @since 1.3 */ would be nice, just to know when it is added Vincent On Thu, May 24, 2012 at 9:49 AM, Enlightenment SVN wrote: > Log: > and no more segv's in ecore-con and ecore-ipc. see changelog. > > > > Author:       raster > Date:         2012-05-24 00:49:30 -0700 (Th

Re: [E-devel] Signal hooks on elm_icon

2012-05-24 Thread Daniel Juyung Seo
I guess he means this: > elm_widget_signal_callback_add_hook_set(obj, _signal_callback_add_hook); > elm_widget_signal_callback_del_hook_set(obj, _signal_callback_del_hook); I think we need to support this before elm2.0. Nobody knows who uses this signal thing as it was already in elm 1.0. Daniel