Re: [E-devel] E SVN: seoz IN trunk/devs/seoz: . cebit2011

2011-03-02 Thread Vincent Torri
On Thu, 3 Mar 2011, Daniel Juyung Seo wrote: Yeah, I didn't know eyelight :) Leif (T_UNIX) mentioned it yesterday in the booth. Well, I gotta check out eyelight today, it will be easy for presentation, Still this edje makes us something to show "This presentation was written using EFL's Edje l

Re: [E-devel] [Patch] small patch for elm_module

2011-03-02 Thread WooHyun Jung
No reason ! Just my mistake - T-T I re-made the patch , thanks for nice checking. -Original Message- From: Daniel Juyung Seo [mailto:seojuyu...@gmail.com] Sent: Thursday, March 03, 2011 3:57 PM To: WooHyun Jung Cc: enlightenment-devel@lists.sourceforge.net Subject: Re: [E-devel] [Patch

Re: [E-devel] E SVN: seoz IN trunk/devs/seoz: . cebit2011

2011-03-02 Thread Daniel Juyung Seo
That'll be awesome! Put enlightenment presentation stuffs there. We don't need to make a presentation every time for each seminar/exhibition :) And that'll be a good sample for eyelight. Thanks. Daniel Juyung Seo (SeoZ) On Wed, Mar 2, 2011 at 11:51 PM, Cedric BAIL wrote: > On Wed, Mar 2, 2011 at

Re: [E-devel] E SVN: seoz IN trunk/devs/seoz: . cebit2011

2011-03-02 Thread Daniel Juyung Seo
Yeah, I didn't know eyelight :) Leif (T_UNIX) mentioned it yesterday in the booth. Well, I gotta check out eyelight today, it will be easy for presentation, Still this edje makes us something to show "This presentation was written using EFL's Edje library!!!" :) Thanks anyway, I will look at eyeli

Re: [E-devel] [Patch] small patch for elm_module

2011-03-02 Thread Daniel Juyung Seo
if (m->shutdown_func) m->shutdown_func(m); ... + if (m->handle) + { +if (m->shutdown_func) m->shutdown_func(m); +dlclose(m->handle); +m->handle = NULL; + } Any reason to do m->shutdown_func() twice? Thanks. Daniel Juyung Seo (SeoZ) On Thu, Mar 3, 2011 at 2:13

[E-devel] [PATCH] elm_gengrid selection key patch

2011-03-02 Thread Jihoon Kim
Hi, EFL developers. Unlike other widget, gengrid processes only the "Return" key for selecting item. This patch makes gengrid be able to process KP_Enter and space key for selecting item. Thanks. Index: elm_gengrid.c === --- elm_geng

[E-devel] [Patch] small patch for elm_module

2011-03-02 Thread WooHyun Jung
Hello. All ~ I made a patch for elm_module. Null setting for freed pointer ~ Can anybody check about this ? Thanks. Index: src/lib/elm_module.c === --- src/lib/elm_module.c(revision 57211) +++ src/lib/elm_module.

Re: [E-devel] E SVN: seoz IN trunk/devs/seoz: . cebit2011

2011-03-02 Thread Cedric BAIL
On Wed, Mar 2, 2011 at 11:24 PM, Nicolas Aguirre wrote: > 2011/3/2 Enlightenment SVN : >> Log: >> CeBIT2011 Demo: Demo presentation for CeBIT 2011. >>     This presentation uses Edje library. >> > > It seems seems that you don't know eyelight :) > Eyelight has been developped by Jonathan during GS

Re: [E-devel] Crash with elementary after recompile

2011-03-02 Thread Andreas Volz
Am Wed, 2 Mar 2011 00:22:56 +0100 schrieb Andreas Volz: > Hello, > > my application crashes after recompiling EFL: > > http://codepad.org/gQc8fqaL > > Reason is that elm_config=NULL while dereferencing and using the > macro ENGINE_COMPARE. > > Any ideas? I just found the "problematic" commit

Re: [E-devel] E SVN: seoz IN trunk/devs/seoz: . cebit2011

2011-03-02 Thread Nicolas Aguirre
2011/3/2 Enlightenment SVN : > Log: > CeBIT2011 Demo: Demo presentation for CeBIT 2011. >     This presentation uses Edje library. > It seems seems that you don't know eyelight :) Eyelight has been developped by Jonathan during GSoC 2009 IIRC. trunk/PROTO/eyelight regards -- Nicolas Aguirre Mai

Re: [E-devel] [PATCH] elm_entry: context menu is shown even though the state of entry is disabled

2011-03-02 Thread michael bouchaud
Thanks, in svn 2011/3/2 Jihoon Kim > Hi, EFL developers > > In elementary entry widget, context menu appear even though the state of > entry is disabled. > This patch is for solving this problem. > This patch will make entry not to process the mouse event in the disable > state. > Would you plea

Re: [E-devel] CeBIT 2011 reports

2011-03-02 Thread Daniel Juyung Seo
Hello, I uploaded a few more pictures. https://picasaweb.google.com/seojuyung/CeBIT2011Enlightenment# I would upload more when I have time. I can't believe how much I am tired at the moment. Good night! Daniel Juyung Seo (SeoZ) On Wed, Mar 2, 2011 at 8:56 PM, Alex-P. Natsios wrote: > nice one! a

Re: [E-devel] CeBIT 2011 reports

2011-03-02 Thread Alex-P. Natsios
nice one! any more ? :p would be nice to have a couple of photos for us to see since we couldn't come. we will also have some workshops and talks in the city's university so if more photos are available it would be awesome to showcase even include others from past events if available so that we ma

Re: [E-devel] gsoc 2011 : about Google Widgets Module

2011-03-02 Thread michael bouchaud
Le 1 mars 2011 18:55, Stéphanie Ouillon a écrit : > Hello, > > I'm a student in an French engineering school ( > IT/Telecommunication/networking) and I am interested in working for > Enlightenment for the Google Summer of Code. I am very interested in > working on the Google Widget Module project

Re: [E-devel] [RFC] Evas - OpenGL and Evas (Part 2)

2011-03-02 Thread Cedric BAIL
Hi, I will do just a quick answer, I don't know if I will have time to come back on this subject later. On Wed, Mar 2, 2011 at 5:41 AM, Sung W. Park wrote: > Hi all, > > In my earlier post, I've discussed about the issues with getting the > >      evas_object_image_native_surface_set(..., Evas_N

[E-devel] gsoc 2011 : about Google Widgets Module

2011-03-02 Thread Stéphanie Ouillon
Hello, I'm a student in an French engineering school ( IT/Telecommunication/networking) and I am interested in working for Enlightenment for the Google Summer of Code. I am very interested in working on the Google Widget Module project. By reading the project summary, I understand that Webkit

[E-devel] [PATCH] elm_entry: context menu is shown even though the state of entry is disabled

2011-03-02 Thread Jihoon Kim
Hi, EFL developers In elementary entry widget, context menu appear even though the state of entry is disabled. This patch is for solving this problem. This patch will make entry not to process the mouse event in the disable state. Would you please review it and apply in svn? Index: elm_entry.c ===

[E-devel] CeBIT 2011 reports

2011-03-02 Thread Daniel Juyung Seo
Hello, I'm glad to be here in CeBIT 2011. I wanna share the glimpse of this place. Many people came to Enlightenment booth and asked a lot of questions. Some of them already knew enlightenment and used it before. We have many e-developers here: Raster(Carsten Haitzler, Australia), SeoZ(Daniel Juyu

Re: [E-devel] [Patch] elm_gengrid bug patch

2011-03-02 Thread Jeonghyun Yun
I resubmit the patch file. Thank you. -Original Message- From: Carsten Haitzler (The Rasterman) [mailto:ras...@rasterman.com] Sent: Monday, February 28, 2011 12:14 AM To: Jeonghyun Yun Cc: enlightenment-devel@lists.sourceforge.net Subject: Re: [E-devel] [Patch] elm_gengrid bug patch On F

[E-devel] [PATCH] patch for describing ecore_imf APIs more detail

2011-03-02 Thread Jihoon Kim
Hi, EFL developers. This patch will supplement the documentation about ecore_imf_context_preedit_start_event_add, ecore_imf_context_preedit_end_event_add and ecore_imf_context_delete_surrounding_event_add API. Would you please review and apply in svn? Index: ecore_imf_context.c ==

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

2011-03-02 Thread Gustavo Lima Chaves
* Enlightenment SVN [2011-03-01 08:17:23 -0800]: > Log: > e17: allow themes to request argb window frames > Gotta love it. Thanks :) > if your window border theme will use transparency add: > data { item: "argb" "1" } to the respective border groups > > > Author: jeffdameth >

[E-devel] [PATCH] elm_entry: context menu is shown even though the state of entry is disabled

2011-03-02 Thread Jihoon Kim
Hi, In elementary entry widget, context menu appear even though the state of entry is disabled. This patch is for solving this problem. This patch will make entry not to process the mouse event in the disable state. Would you please review it and apply in svn? Index: elm_entry.c ==

Re: [E-devel] Evas - OpenGL and Image Object - evas_object_image_native_surface_set()

2011-03-02 Thread Sung W. Park
Hi Cedric, Thanks for your quick response. Sorry for my late response. Yesterday was a Korean national holiday so I got to relax a little bit. =) I'm going to respond to some of your comments below. I'm glad that you're picking up the concerns that I have as well. In fact, I'll go ahead and st

[E-devel] Problem in elementary after compile

2011-03-02 Thread Andreas Volz
Hello, my application crashes after recompiling EFL: http://codepad.org/gQc8fqaL Reason is that elm_config=NULL while dereferencing and using the macro ENGINE_COMPARE. Any ideas? regards Andreas PS: E-Mail maybe send twice. Sorry! -- Technical Blog

Re: [E-devel] [Patch] elm_segment_control

2011-03-02 Thread GOVINDARAJU SM
Yes, similar and it works perfectly on segment control :) ,except font size change step configuration. At this moment, size is getting decreased by 1. Can we make it as configurable. I think we can get performance improvement, if the user configures higher value based on the usage... Regards,

Re: [E-devel] [Patch] elm_gengrid bug patch

2011-03-02 Thread Jeonghyun Yun
I resubmit the patch file. Thank you. -Original Message- From: Carsten Haitzler (The Rasterman) [mailto:ras...@rasterman.com] Sent: Monday, February 28, 2011 12:14 AM To: Jeonghyun Yun Cc: enlightenment-devel@lists.sourceforge.net Subject: Re: [E-devel] [Patch] elm_gengrid bug patch On F

Re: [E-devel] [Patch] elm_gengrid bug patch

2011-03-02 Thread Jeonghyun Yun
I resubmit the patch file. Thank you. -Original Message- From: Carsten Haitzler (The Rasterman) [mailto:ras...@rasterman.com] Sent: Monday, February 28, 2011 12:14 AM To: Jeonghyun Yun Cc: enlightenment-devel@lists.sourceforge.net Subject: Re: [E-devel] [Patch] elm_gengrid bug patch On

Re: [E-devel] Other path then ~/.e for E17?

2011-03-02 Thread Andreas Volz
Am Sat, 12 Feb 2011 18:32:06 +0900 schrieb Carsten Haitzler (The Rasterman): > On Sat, 05 Feb 2011 08:18:20 +0100 Sebastian Dransfeld > said: > > > > Xephy_E17 > > > #!/bin/sh > > > > > > Xephyr -ac -screen 1024x768 :1& > > > > > > sleep 3s&& /opt/e17/bin/enlightenment_start -display :1

[E-devel] [RFC] Evas - OpenGL and Evas (Part 2)

2011-03-02 Thread Sung W. Park
Hi all, In my earlier post, I've discussed about the issues with getting the evas_object_image_native_surface_set(..., Evas_Native_Surface *surf); function for setting OpenGL output texture. The main issue was the GL application having to know Evas' GL context for resource sharing. (refe

[E-devel] Crash with elementary after recompile

2011-03-02 Thread Andreas Volz
Hello, my application crashes after recompiling EFL: http://codepad.org/gQc8fqaL Reason is that elm_config=NULL while dereferencing and using the macro ENGINE_COMPARE. Any ideas? regards Andreas -- Technical Blog --