Re: [E-devel] E SVN: onefang trunk/devs/onefang

2011-07-10 Thread Vincent Torri
On Sun, 10 Jul 2011, Mike Blumenkrantz wrote: On Sun, 10 Jul 2011 03:33:48 -0700 Enlightenment SVN no-re...@enlightenment.org wrote: Log: Update my details. Author: onefang Date: 2011-07-10 03:33:48 -0700 (Sun, 10 Jul 2011) New Revision: 61195 Trac:

Re: [E-devel] E SVN: onefang trunk/devs/onefang

2011-07-10 Thread Mike Blumenkrantz
On Sun, 10 Jul 2011 19:48:08 +0200 (CEST) Vincent Torri vto...@univ-evry.fr wrote: On Sun, 10 Jul 2011, Mike Blumenkrantz wrote: On Sun, 10 Jul 2011 03:33:48 -0700 Enlightenment SVN no-re...@enlightenment.org wrote: Log: Update my details. Author: onefang Date:

[E-devel] abour elm_map.c and ecore_con

2011-07-10 Thread Vincent Torri
hey would it be reasonable to ignore the elm_map.c code if ecore_con is not available (that is, the exported functions do nothing or return 0 or NULL, etc.., and all the other code is guarded by HAVE_ECORE_CON) ? I think that elm_map is useless without ecore_con Vincent

Re: [E-devel] [Patch] Add XIM module for ecore_imf

2011-07-10 Thread Jihoon Kim
Hell, Briano and EFL people. It is because I misunderstood about the parameter of ecore_imf_context_client_window_set API. ATM, we haven’t used the parameter of ecore_imf_context_client_window_set as the important parameter We just use 'canvas (Evas *) information' of

Re: [E-devel] [Patch] Add XIM module for ecore_imf

2011-07-10 Thread Mike McCormack
On 07/10/2011 02:51 AM, Naruto TAKAHASHI wrote: Hi Mike. Thanks, feedback. I merged it to xim/Makefile.am. I attach a source code for using XIM module debug. This program can check a below behaviors. - toggle enable and disable XIM - commit string from XIM Another test, by using

Re: [E-devel] abour elm_map.c and ecore_con

2011-07-10 Thread The Rasterman
On Sun, 10 Jul 2011 23:52:07 +0200 (CEST) Vincent Torri vto...@univ-evry.fr said: hey would it be reasonable to ignore the elm_map.c code if ecore_con is not available (that is, the exported functions do nothing or return 0 or NULL, etc.., and all the other code is guarded by

Re: [E-devel] E SVN: mike_m IN trunk/elementary/src: bin lib

2011-07-10 Thread Vincent Torri
On Sun, 10 Jul 2011, Enlightenment SVN wrote: Log: elementary: elementary_config.h is a local include as -I$(top_builddir) is passed to CPPFLAGS, it's the same... Vincent Using #include elementary_config.h will fail if elementary has never been installed. Signed-off-by: Mike

[E-devel] A Problem about using non-smart objects in Elemenetary.

2011-07-10 Thread ChunEon Park
Hello, EFL developers. I just have one question and need your opinions. In many cases, many non-smart objects are used in elementary e.g) evas_object_rectangle. Those objects are passed to elm_widget APIs frequently which calls the smart_object_data_get in API_ENTRY define. Since those are not

Re: [E-devel] E SVN: onefang trunk/devs/onefang

2011-07-10 Thread David Seikel
On Sun, 10 Jul 2011 14:00:07 -0400 Mike Blumenkrantz m...@zentific.com wrote: On Sun, 10 Jul 2011 19:48:08 +0200 (CEST) Vincent Torri vto...@univ-evry.fr wrote: On Sun, 10 Jul 2011, Mike Blumenkrantz wrote: On Sun, 10 Jul 2011 03:33:48 -0700 Enlightenment SVN

[E-devel] [Patch] The scroll animation doesn't work when the scroll-action is started from the outside of a viewport.

2011-07-10 Thread Jaehwan Kim
Dear all, In scroller, if the scroll-action is started from the outside of a viewport, the momentum animation does not work because of the bounce-effect. Please see the below video. http://www.youtube.com/watch?v=xNvLSxWjrDE iframe width=425 height=349

Re: [E-devel] Elementary broken?

2011-07-10 Thread David Seikel
On Sun, 10 Jul 2011 18:30:46 +0200 (CEST) Vincent Torri vto...@univ-evry.fr wrote: On Mon, 11 Jul 2011, David Seikel wrote: Try it now, should be fix0red. not on Windows We can all be happy now, you fixed it on Windows without breaking it on linux this time. -- A big old stinking pile

Re: [E-devel] E SVN: onefang trunk/devs/onefang

2011-07-10 Thread Mike Blumenkrantz
On Mon, 11 Jul 2011 14:38:16 +1000 David Seikel onef...@gmail.com wrote: On Sun, 10 Jul 2011 14:00:07 -0400 Mike Blumenkrantz m...@zentific.com wrote: On Sun, 10 Jul 2011 19:48:08 +0200 (CEST) Vincent Torri vto...@univ-evry.fr wrote: On Sun, 10 Jul 2011, Mike Blumenkrantz

Re: [E-devel] E SVN: mike_m IN trunk/elementary/src: bin lib

2011-07-10 Thread Mike McCormack
On 07/11/2011 12:09 PM, Vincent Torri wrote: On Sun, 10 Jul 2011, Enlightenment SVN wrote: Log: elementary: elementary_config.h is a local include as -I$(top_builddir) is passed to CPPFLAGS, it's the same... For some reason this #include elementary_config.h didn't work for me last

[E-devel] [Patch]evas gl backend patch for Mali

2011-07-10 Thread Seung-Soo Woo
Dear all, There is a below issue. Problem : Evas gl engine call eglWaitNative() and eglWaitGL() before/after eglSwapBuffers(). The sync APIs are not call only in case of SGX_DDK. Resolution : It is necessary to check MALI string too. So, I fixed it. Please find enclosed file.

Re: [E-devel] [Patch] Add XIM module for ecore_imf

2011-07-10 Thread Sachiel
Hello people, Some bad-ass top-posting because I feel like it. These patches seem to be fine except for two things: 1.- Dead keys is broken and I'm not sure why, but let's forget about that for now. (dead keys is what makes some us type ' + a and get á) 2.- It doesn't work in any way with

[E-devel] elm_map depends on ecore_con

2011-07-10 Thread Vincent Torri
Hey elm_map depends on ecore_con. There is no ecore_con checks in configure.ac, hence no conditional build on elm_map.c. I have added a first part of the ecore_con checks, but the author of elm_map must finish it. Vincent

[E-devel] Elm map badness

2011-07-10 Thread Tom Hacohen
Dear All, Today I tried building elm on a machine that has ecore without ecore con. On that machine elm's build failed because of elm_map using ecore_con_url without ifdefs. Reverting vtorri's last commit fixed it, but I'm not sure if that's the way to go because his commit looks correct (but

Re: [E-devel] Elm map badness

2011-07-10 Thread David Seikel
On Sun, 10 Jul 2011 14:24:33 +0300 Tom Hacohen tom.haco...@partner.samsung.com wrote: Today I tried building elm on a machine that has ecore without ecore con. On that machine elm's build failed because of elm_map using ecore_con_url without ifdefs. Reverting vtorri's last commit fixed

Re: [E-devel] Elm map badness

2011-07-10 Thread Tom Hacohen
On 10/07/11 15:10, David Seikel wrote: On Sun, 10 Jul 2011 14:24:33 +0300 Tom Hacohen tom.haco...@partner.samsung.com wrote: Today I tried building elm on a machine that has ecore without ecore con. On that machine elm's build failed because of elm_map using ecore_con_url without ifdefs.

Re: [E-devel] Elm map badness

2011-07-10 Thread David Seikel
On Sun, 10 Jul 2011 15:15:57 +0300 Tom Hacohen tom.haco...@partner.samsung.com wrote: On 10/07/11 15:10, David Seikel wrote: On Sun, 10 Jul 2011 14:24:33 +0300 Tom Hacohen tom.haco...@partner.samsung.com wrote: Today I tried building elm on a machine that has ecore without ecore con.

[E-devel] Elementary broken?

2011-07-10 Thread Ag. Systems Administrator - Danny
Hi, At revision 61200, unable to compile elementary: --- Last loglines -- elc_fileselector.c: In function 'elm_fileselector_folder_only_set': elc_fileselector.c:1012: error: 'Widget_Data' has no member named 'only_folder'

Re: [E-devel] Elementary broken?

2011-07-10 Thread Ag. Systems Administrator - Danny
Ah, sorry ;) elementary 0.7.0.61200 Configuration Options Summary: Engines: X11: yes Framebuffer: yes

Re: [E-devel] Elementary broken?

2011-07-10 Thread David Seikel
Still getting the same errors after deleting all enlightenment install directories, AND the emap, eio, and elementary source directories, then a fresh update of SVN. Yes, I double checked there was nothing installed in /usr and /usr/local. Perhaps it has something to do with revision 61192?

Re: [E-devel] Elementary broken?

2011-07-10 Thread David Seikel
Try it now, should be fix0red. -- A big old stinking pile of genius that no one wants coz there are too many silver coated monkeys in the world. signature.asc Description: PGP signature -- All of the data generated in

Re: [E-devel] Elementary broken?

2011-07-10 Thread Иван Сусанин
Thanks man, fix0red it is! ;) Daniel 2011/7/10 David Seikel onef...@gmail.com Try it now, should be fix0red. -- A big old stinking pile of genius that no one wants coz there are too many silver coated monkeys in the world.

Re: [E-devel] Elm map badness

2011-07-10 Thread Vincent Torri
On Sun, 10 Jul 2011, Tom Hacohen wrote: Dear All, Today I tried building elm on a machine that has ecore without ecore con. On that machine elm's build failed because of elm_map using ecore_con_url without ifdefs. Reverting vtorri's last commit fixed it i don't see how it can be

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

2011-07-10 Thread Vincent Torri
On Sun, 10 Jul 2011, Enlightenment SVN wrote: Log: Make it compile under linux again. If it's still broken under Windows, caro can fix it after the spanking. Author: onefang Date: 2011-07-10 08:08:12 -0700 (Sun, 10 Jul 2011) New Revision: 61214 Trac:

Re: [E-devel] Elm map badness

2011-07-10 Thread Tom Hacohen
On 10/07/11 19:25, Vincent Torri wrote: i don't see how it can be possible to compile elm_map without any ecore_con checks in configure.ac. My commit was right and as I said, it was a first part of it. As I said, I also think your commit was right, but it doesn't compile if I don't revert

Re: [E-devel] E SVN: onefang trunk/devs/onefang

2011-07-10 Thread Mike Blumenkrantz
On Sun, 10 Jul 2011 03:33:48 -0700 Enlightenment SVN no-re...@enlightenment.org wrote: Log: Update my details. Author: onefang Date: 2011-07-10 03:33:48 -0700 (Sun, 10 Jul 2011) New Revision: 61195 Trac: http://trac.enlightenment.org/e/changeset/61195