[E-devel] Re: E CVS: proto moom

2006-05-21 Thread [EMAIL PROTECTED]
 
 just for information, here is the page of Michael Niedermayer (ffmpeg
 lead dev) about optimization :
 
 http://guru.multimedia.cx/category/optimization/
 
 maybe it can help
 
 Vincent
 

Could be a useful reference to have around.. 
especially for those, like me, who often get their bitsbytes
confused... 
Many years ago, I once attended my one-and-only ever
'computer science' class, and the only thing I could remember
from that was some kind of 'mantra' that went something like
eight bits in a byte.. eight bits in a byte..
Unfortunately, I often ended up reversing the mantra
for some reason.. and I still do to this day.

Thanks for the pointer :)

Interesting the method mentioned there for computing
max and min.

whereas I had, for a,b in the range [0,255],
min(a,b) = b - ((b-a)(~(b-a)8));
and
max(a,b) = a + ((b-a)(~(b-a)8));

the page there uses,
min(a,b) = a + ((b-a)((b-a)31));
and
max(a,b) = b - ((b-a)((b-a)31));

which presumably works for a greater range of values..
that could be useful.

In the particular case of the 'rgb2hsv' function,
the two methods give statistically identical results in
measurable performance (all else being the same). But again,
this could be useful in other contexts.

I'll tell you what could be even more useful:
If said multimedia guru would take a short break from working
on 'ffmpeg' (whatever that is, it doesn't sound very cosmic),
and maybe seek out some enlightenment instead :) :)

jose.




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Re: E CVS: proto moom

2006-05-21 Thread Alexander Taylor
ffmpeg - not cosmic?
I suggest you take another glance - one of the most important projects
in the OSS world, for a variety of reasons.

Alex.

On Sun, 2006-05-21 at 09:10 +, [EMAIL PROTECTED] wrote:
  
  just for information, here is the page of Michael Niedermayer (ffmpeg
  lead dev) about optimization :
  
  http://guru.multimedia.cx/category/optimization/
  
  maybe it can help
  
  Vincent
  
 
   Could be a useful reference to have around.. 
 especially for those, like me, who often get their bitsbytes
 confused... 
   Many years ago, I once attended my one-and-only ever
 'computer science' class, and the only thing I could remember
 from that was some kind of 'mantra' that went something like
 eight bits in a byte.. eight bits in a byte..
   Unfortunately, I often ended up reversing the mantra
 for some reason.. and I still do to this day.
 
   Thanks for the pointer :)
 
   Interesting the method mentioned there for computing
 max and min.
 
 whereas I had, for a,b in the range [0,255],
 min(a,b) = b - ((b-a)(~(b-a)8));
 and
 max(a,b) = a + ((b-a)(~(b-a)8));
 
 the page there uses,
 min(a,b) = a + ((b-a)((b-a)31));
 and
 max(a,b) = b - ((b-a)((b-a)31));
 
 which presumably works for a greater range of values..
 that could be useful.
 
   In the particular case of the 'rgb2hsv' function,
 the two methods give statistically identical results in
 measurable performance (all else being the same). But again,
 this could be useful in other contexts.
 
   I'll tell you what could be even more useful:
 If said multimedia guru would take a short break from working
 on 'ffmpeg' (whatever that is, it doesn't sound very cosmic),
 and maybe seek out some enlightenment instead :) :)
 
 jose.
 
 
 
 
 ---
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Re: E CVS: proto moom

2006-05-21 Thread Vincent Torri

another link that can be usefull :

http://www.agner.org/assem/

Jose: you can also have a look at SoftWire, in order to speed up asm code.

Vincent

On Sun, 21 May 2006, Alexander Taylor wrote:

 ffmpeg - not cosmic?
 I suggest you take another glance - one of the most important projects
 in the OSS world, for a variety of reasons.

 Alex.

 On Sun, 2006-05-21 at 09:10 +, [EMAIL PROTECTED] wrote:
  
   just for information, here is the page of Michael Niedermayer (ffmpeg
   lead dev) about optimization :
  
   http://guru.multimedia.cx/category/optimization/
  
   maybe it can help
  
   Vincent
  
 
  Could be a useful reference to have around..
  especially for those, like me, who often get their bitsbytes
  confused...
  Many years ago, I once attended my one-and-only ever
  'computer science' class, and the only thing I could remember
  from that was some kind of 'mantra' that went something like
  eight bits in a byte.. eight bits in a byte..
  Unfortunately, I often ended up reversing the mantra
  for some reason.. and I still do to this day.
 
  Thanks for the pointer :)
 
  Interesting the method mentioned there for computing
  max and min.
 
  whereas I had, for a,b in the range [0,255],
  min(a,b) = b - ((b-a)(~(b-a)8));
  and
  max(a,b) = a + ((b-a)(~(b-a)8));
 
  the page there uses,
  min(a,b) = a + ((b-a)((b-a)31));
  and
  max(a,b) = b - ((b-a)((b-a)31));
 
  which presumably works for a greater range of values..
  that could be useful.
 
  In the particular case of the 'rgb2hsv' function,
  the two methods give statistically identical results in
  measurable performance (all else being the same). But again,
  this could be useful in other contexts.
 
  I'll tell you what could be even more useful:
  If said multimedia guru would take a short break from working
  on 'ffmpeg' (whatever that is, it doesn't sound very cosmic),
  and maybe seek out some enlightenment instead :) :)
 
  jose.
 
 
 
 
  ---
  Using Tomcat but need to do more? Need to support web services, security?
  Get stuff done quickly with pre-integrated technology to make your job 
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
  http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



 ---
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] New in the town

2006-05-21 Thread Sebastià Serra Landete








Hi all,



Im new in the town, two weeks ago while was
doing web-surfing looking for something new I found Enlightenment 17, I like
web design, especially well designed pages with CSS and some Flash, Im a
Cobol programmer, yes I know it, COBOL is probably one of the oldest programming
language in the world, and although I love my black terminal for programming
millions lines of code, I need something with color and more attractive, and
sure for this reason I started web design few years ago.



Well, now all of you can get some idea about which person
I am, and after this little introduction, as I started to say at the beginning
of this mail, I found Enlightenment casually, and although I have some c/c++ knowledge
 I need some hints.



I would be thankful if someone gives me some clues or
some link from which to begin to learn, just some example code with comments or
some API explanation.



Thank you in advance.










[E-devel] Re: Entropy layout

2006-05-21 Thread Thomas Jeunet

Thank you for the CVS commmit, it helped finding the problem :
/--
(...)
Loading '/usr/share/entropy/plugins//etk_structure_viewer.so'...
Loading '/usr/share/entropy/plugins//etk_iconbox.so'...
Could not open plugin object
/usr/share/entropy/plugins//etk_iconbox.so - Corrupt file? abort
Loading '/usr/share/entropy/plugins//layout_etk_simple.so'...
Loading '/usr/share/entropy/plugins//layout_ewl_simple.so'...
Loading '/usr/share/entropy/plugins//ewl_local_icon.so'...
Loading '/usr/share/entropy/plugins//etk_list.so'...
(...)
Going to next plugin.../usr/share/entropy/plugins//etk_structure_viewer.so
Sorry, but you haven't loaded a layout plugin.  Please configure one.
\--
So the etk_iconbox plugin pushes a NULL in the 'plugin init' queue as you said.

Then I tried to test this plugin with a quick coded source, and I get :
/--
Error during dlopen(): /usr/share/entropy/plugins/etk_iconbox.so:
undefined symbol: entropy_event_action_file
\--
I ran : for i in /usr/share/entropy/plugins/*.so;do readelf -s $i |
grep entropy_event_action_file  echo $i;done;
/--
   20:  0 NOTYPE  GLOBAL DEFAULT  UND entropy_event_action_file
/usr/share/entropy/plugins/etk_iconbox.so
   13:  0 NOTYPE  GLOBAL DEFAULT  UND entropy_event_action_file
/usr/share/entropy/plugins/etk_trackback.so
   25:  0 NOTYPE  GLOBAL DEFAULT  UND entropy_event_action_file
/usr/share/entropy/plugins/layout_etk_simple.so
   21:  0 NOTYPE  GLOBAL DEFAULT  UND entropy_event_action_file
/usr/share/entropy/plugins/mime.so
\--
Is there any 'entropy_event_action_file' symbol missing in a plugin?

Thanks for your help, regards
cleptho


On 5/21/06, Alexander Taylor [EMAIL PROTECTED] wrote:

Hi,
This is most curious, but I have found your cause.

Somehow, a 'NULL' entry is being placed in the 'plugin init' queue.
This NULL reference is returned from the function
'create_plugin_object'.

The only way for this function to return a null is the following:

1. dlopen could not open your plugin file.  The file might have become
corrupted somehow.
2. dlopen works (and opens the plugin), but dlsym could not find the
INIT function inside the plugin object.  Cause similar to (1).

Either way, I have added two more debug statements to the source to
track which case here applies to you.  Please update from CVS, and run
it again, and append the output here - it should get you a bit further.
Either way, recompiling/reinstalling may fix your problem - this problem
can only occur (as far as I can see) - with a corrupt installation.

Cheers,
Alex.



--


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] New in the town

2006-05-21 Thread Aleksej Struk

Hey,


Well, here [1] is two books on c/c++. It is good start I guess. And then
I'd suggest just to take already written apps and investigate them. I
personaly did in this way.

I hope that I understood your question correctly. Otherwise if u want to
learn E api - then just go inside source tree and search-read-think-try.
:)

regards

[1].

Url: http://www.planetpdf.com/codecuts/pdfs/eckel/TIC2Vone.zip
Url: http://www.planetpdf.com/codecuts/pdfs/eckel/TIC2Vtwo.zip

On Sun, May 21, 2006 at 12:57:23PM +0200, Sebasti? Serra Landete wrote:
// Hi all,
// 
//  
// 
// I?m new in the town, two weeks ago while was doing web-surfing looking for
// something new I found Enlightenment 17, I like web design, especially well
// designed pages with CSS and some Flash, I?m a Cobol programmer, yes? I know
// it, COBOL is probably one of the oldest programming language in the world,
// and although I love my black terminal for programming millions lines of
// code, I need something with color and more attractive, and sure for this
// reason I started web design few years ago.
// 
//  
// 
// Well, now all of you can get some idea about which person I am, and after
// this little introduction, as I started to say at the beginning of this mail,
// I found Enlightenment casually, and although I have some c/c++ knowledge  I
// need some hints.
// 
//  
// 
// I would be thankful if someone gives me some clues or some link from which
// to begin to learn, just some example code with comments or some API
// explanation.
// 
//  
// 
// Thank you in advance.
// 
//  
// 

-- 

Aleksej Struk
Master Degree Student
Free University of Bozen-Bolzano
Faculty of Computer Science
phone: +39-0471-061749
cell phone: +39-3204627049 +370-61278908
[EMAIL PROTECTED] [EMAIL PROTECTED] - http://astruk.googlepages.com/home


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] New in the town

2006-05-21 Thread Arnaldo de Moraes Pereira

Or, if you want EFL documentation, the starting point would be:
http://www.enlightenment.org/Libraries/Documentation/

On 5/21/06, Aleksej Struk [EMAIL PROTECTED] wrote:


Hey,


Well, here [1] is two books on c/c++. It is good start I guess. And then
I'd suggest just to take already written apps and investigate them. I
personaly did in this way.

I hope that I understood your question correctly. Otherwise if u want to
learn E api - then just go inside source tree and search-read-think-try.
:)

regards

[1].

Url: http://www.planetpdf.com/codecuts/pdfs/eckel/TIC2Vone.zip
Url: http://www.planetpdf.com/codecuts/pdfs/eckel/TIC2Vtwo.zip

On Sun, May 21, 2006 at 12:57:23PM +0200, Sebasti? Serra Landete wrote:
// Hi all,
//
//
//
// I?m new in the town, two weeks ago while was doing web-surfing looking for
// something new I found Enlightenment 17, I like web design, especially well
// designed pages with CSS and some Flash, I?m a Cobol programmer, yes? I know
// it, COBOL is probably one of the oldest programming language in the world,
// and although I love my black terminal for programming millions lines of
// code, I need something with color and more attractive, and sure for this
// reason I started web design few years ago.
//
//
//
// Well, now all of you can get some idea about which person I am, and after
// this little introduction, as I started to say at the beginning of this mail,
// I found Enlightenment casually, and although I have some c/c++ knowledge  I
// need some hints.
//
//
//
// I would be thankful if someone gives me some clues or some link from which
// to begin to learn, just some example code with comments or some API
// explanation.
//
//
//
// Thank you in advance.
//
//
//

--

Aleksej Struk
Master Degree Student
Free University of Bozen-Bolzano
Faculty of Computer Science
phone: +39-0471-061749
cell phone: +39-3204627049 +370-61278908
[EMAIL PROTECTED] [EMAIL PROTECTED] - http://astruk.googlepages.com/home


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel




--
Arnaldo M. Pereira
egghunt at gmail.com
http://www.ansi-c.org/~arnaldo


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] New in the town

2006-05-21 Thread Zarius








Hi all,



Im new in the town, two weeks ago while was
doing web-surfing looking for something new I found Enlightenment 17, I like
web design, especially well designed pages with CSS and some Flash, Im a
Cobol programmer, yes I know it, COBOL is probably one of the oldest
programming language in the world, and although I love my black terminal for
programming millions lines of code, I need something with color and more
attractive, and sure for this reason I started web design few years ago.



Well, now all of you can get some idea about which
person I am, and after this little introduction, as I started to say at the
beginning of this mail, I found Enlightenment casually, and although I have
some c/c++ knowledge I need some hints.



I would be thankful if someone gives me some clues or
some link from which to begin to learn, just some example code with comments or
some API explanation.



Thank you in advance.










Re: [E-devel] Ecore does not compile.

2006-05-21 Thread Anders Troback
I still can't compile Ecore on FreeBSD:-(

8--
so ../../src/lib/ecore_job/.libs/libecore_job.so 
../../src/lib/ecore_evas/.libs/libecore_evas.so 
/usr/devel/enlightenment/e17/libs/ecore/src/lib/ecore_x/.libs/libecore_x.so
-lXcursor -lXrender -lXp -lXinerama -lXrandr -lXfixes -lXdamage -lXss
-lX11
-lXext 
/usr/devel/enlightenment/e17/libs/ecore/src/lib/ecore_txt/.libs/libecore_txt.so 
/usr/devel/enlightenment/e17/libs/ecore/src/lib/ecore_job/.libs/libecore_job.so 
/usr/devel/enlightenment/current/lib/libevas.so 
/usr/devel/enlightenment/current/lib/libeet.so /usr/local/lib/libjpeg.so 
/usr/X11R6/lib/libfontconfig.so /usr/local/lib/libfreetype.so 
/usr/local/lib/libexpat.so ../../src/lib/ecore_con/.libs/libecore_con.so 
../../src/lib/ecore_ipc/.libs/libecore_ipc.so 
/usr/devel/enlightenment/e17/libs/ecore/src/lib/ecore_con/.libs/libecore_con.so 
/usr/devel/enlightenment/e17/libs/ecore/src/lib/ecore/.libs/libecore.so
-lcurl /usr/local/lib/libidn.so /usr/local/lib/libiconv.so -lssl
-lcrypto -lz -lm -Wl,--rpath -Wl,/usr/devel/enlightenment/current/lib
-Wl,--rpath -Wl,/usr/local/lib -Wl,--rpath -Wl,/usr/X11R6/lib gcc: yes:
No such file or directory gmake[3]: *** [ecore_test] Error 1 gmake[3]:
Leaving directory `/usr/devel/enlightenment/e17/libs/ecore/src/bin'
gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory
`/usr/devel/enlightenment/e17/libs/ecore/src' gmake[1]: ***
[all-recursive] Error 1 gmake[1]: Leaving directory
`/usr/devel/enlightenment/e17/libs/ecore' gmake: *** [all] Error 2
8--

Any ideas out there?

\\troback

On Sat, 20 May 2006 03:16:58 +0200
Francisco Sanz [EMAIL PROTECTED] wrote:

 Now it's ok
 
 thanks.
 
 
 El vie, 19-05-2006 a las 09:25 -0500, Ibukun Olumuyiwa escribió:
  Francisco Sanz wrote:
   Hello.
   
   I have a problem compiling ecore.
   
   There is not all archives in  ecore/src/lib/ecore_x
   
   i.e. there is not ecore_x_fixes.c
   
   I downlad ecore from cvs today.
   
  
  My error - forgot to add the new files to CVS. Update and try again.
  
 
 
 
 ---
 Using Tomcat but need to do more? Need to support web services,
 security? Get stuff done quickly with pre-integrated technology to
 make your job easier Download IBM WebSphere Application Server
 v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
 ___ enlightenment-devel
 mailing list enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



-- 


Microsoft is not the answer.
Microsoft is the question.
And 'No' is the answer!

http://www.troback.com
-


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Evas Gradients

2006-05-21 Thread d . stonier

Having a few troubles with evas gradients. The window that gets set up
doesn't seem to repair a gradient properly when another window is passed
over the gradient.  Ive got a quick example adapted from the efl cookbook
below. Have I missed something or is it a problem in evas?

Cheers,
Daniel.



#include stdio.h
#include Ecore_Evas.h
#include Ecore.h

#define WIDTH 400
#define HEIGHT 400

Ecore_Evas  *   ee;
Evas*   evas;
Evas_Object *   base_rect, *o;

int main(){

   ecore_init();
   ecore_evas_init();

   ee = ecore_evas_software_x11_new(NULL, 0,  0, 0, WIDTH, HEIGHT);
ecore_evas_title_set(ee, Ecore_Evas Template);
ecore_evas_borderless_set(ee, 0);
ecore_evas_show(ee);


   evas = ecore_evas_get(ee);

   base_rect = evas_object_rectangle_add(evas);
   evas_object_resize(base_rect, (double)WIDTH, (double)HEIGHT);
   evas_object_color_set(base_rect, 244, 243, 242, 255);
   evas_object_show(base_rect);

   o = evas_object_gradient_add(evas);
   evas_object_gradient_color_add(o, 100, 100, 100, 100, 1 );
   evas_object_gradient_color_add(o, 255, 255, 255,   0, 1 );
   evas_object_gradient_color_add(o, 100, 100, 100, 100, 1 );
   evas_object_gradient_angle_set(o, 0 );
   evas_object_gradient_fill_set(o,0,0,WIDTH,HEIGHT);
   evas_object_resize(o, WIDTH, HEIGHT);
   evas_object_layer_set(o, 91);
   evas_object_show(o);

/* Insert Object Here */

ecore_main_loop_begin();

return 0;
}



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Valgrind support in Evas

2006-05-21 Thread Tilman Sauerbeck
Hi,
some time ago, Valgrind support was disabled in Evas.
IIRC it was because we applied the linker flags from pkg-config --libs
valgrind, which broke the build.

I attached a patch that enables Valgrind support again, but doesn't
apply the libs (they are only needed when you're developing Valgrind
tools I think).

Can we get that in?

Regards,
Tilman

-- 
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Index: configure.in
===
RCS file: /cvs/e/e17/libs/evas/configure.in,v
retrieving revision 1.158
diff -u -p -r1.158 configure.in
--- configure.in19 May 2006 09:27:33 -  1.158
+++ configure.in21 May 2006 18:08:08 -
@@ -1694,31 +1694,31 @@ AC_ARG_ENABLE(convert-32-rgb-rot-90, 
 # Setting have_valgrind to no seems pointless, but we just need to
 # put something in as the 4th parameter, so configure doesn't abort
 # when valgrind.pc isn't found.
-#have_valgrind=no
-#PKG_CHECK_MODULES(VALGRIND, valgrind = 2.4.0, have_valgrind=yes, 
have_valgrind=no)
-#AC_ARG_ENABLE(valgrind,
-#  [  --enable-valgrind   enable valgrind fixes to stop false 
reports], [
-#  if test x$enableval = xyes ; then
-#have_valgrind=yes
-#  else
-#have_valgrind=no
-#VALGRIND_CFLAGS=
-#VALGRIND_LIBS=
-#  fi
-#  ], [
-#have_valgrind=$have_valgrind
-#  ]
-#)
+have_valgrind=no
+PKG_CHECK_MODULES(VALGRIND, valgrind = 2.4.0, have_valgrind=yes, 
have_valgrind=no)
+VALGRIND_LIBS= # dont use LIBS
 
-#if test x$have_valgrind = xyes; then
-#  AC_DEFINE(HAVE_VALGRIND, 1, [Valgrind support])
-#fi
+AC_ARG_ENABLE(valgrind,
+  [  --enable-valgrind   enable valgrind fixes to stop false 
reports], [
+  if test x$enableval = xyes ; then
+have_valgrind=yes
+  else
+have_valgrind=no
+VALGRIND_CFLAGS=
+  fi
+  ], [
+have_valgrind=$have_valgrind
+  ]
+)
+
+if test x$have_valgrind = xyes; then
+  AC_DEFINE(HAVE_VALGRIND, 1, [Valgrind support])
+fi
 
 #
 ## Fill in flags
 
 AC_SUBST(VALGRIND_CFLAGS)
-AC_SUBST(VALGRIND_LIBS)
 
 AC_SUBST(x_cflags)
 AC_SUBST(x_libs)


pgpDfAIRuOxWN.pgp
Description: PGP signature


[E-devel] evas_object_bottom_get

2006-05-21 Thread d . stonier

Sorry for a second query so quickly. I also have some old code that used
to work with evas, but does no longer.

**

Evas *evas;
Evas_Object *o;

while (( o = evas_object_bottom_get(evas) )) {
  evas_object_del(o);
}

**

It doesn't drop out of the while loop any longer. I set up a quick example
with three rectangles. It'll pick up the bottom most rectangle and
promptly appear to delete it (doesn't show up), but the next time the
evas_object_bottom_get is called, it still picks up a pointer to the same
object (pointer always returns the same address).

Example program below.

Cheers,
Daniel.

**

#include stdio.h
#include Ecore_Evas.h
#include Ecore.h

#define WIDTH 400
#define HEIGHT 400

Ecore_Evas  *   ee;
Evas*   evas;
Evas_Object *o1, *o2, *o3, *o;

int main(){

   ecore_init();
   ecore_evas_init();

   ee = ecore_evas_software_x11_new(NULL, 0,  0, 0, WIDTH, HEIGHT);
ecore_evas_title_set(ee, Ecore_Evas Template);
ecore_evas_borderless_set(ee, 0);
ecore_evas_show(ee);


   evas = ecore_evas_get(ee);

   o1 = evas_object_rectangle_add(evas);
   evas_object_resize(o1, (double)WIDTH, (double)HEIGHT);
   evas_object_color_set(o1, 244, 243, 242, 255);
   evas_object_show(o1);

   o2 = evas_object_rectangle_add(evas);
   evas_object_resize(o2, (double)WIDTH/2.0, (double)HEIGHT/2.0);
   evas_object_color_set(o2, 0, 243, 0, 255);
   evas_object_show(o2);

   o3 = evas_object_rectangle_add(evas);
   evas_object_resize(o3, (double)WIDTH/4.0, (double)HEIGHT/4.0);
   evas_object_color_set(o3, 0, 0, 242, 255);
   evas_object_show(o3);

   o = evas_object_bottom_get(evas);
   printf(Bottom Rectangle: %p\n,o);
   o = evas_object_above_get(o);
   printf(Middle Rectangle: %p\n,o);
   o = evas_object_above_get(o);
   printf(Top Rectangle: %p\n,o);
   if(( o = evas_object_above_get(o) )) {
 printf(Object: %p\n,o);
   } else {
 printf(No object: %p\n,o);
   }
   printf(\n);
   int i = 0;
   while ((o = evas_object_bottom_get(evas))) {
   evas_object_del(o);
   printf(Iteration: %d ,i);
   printf(Object: %p\n,o);
   i++;
   if (i  30 ) { break; };
   }

   /* Insert Object Here */

ecore_main_loop_begin();

return 0;
}


**



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Edje: Image transitions

2006-05-21 Thread Sevcsik András
Hi everyone.

How can I add image transitions to my edc?

Heres my programs{} section:

programs {
program {
name, statusimg_in;
signal, mouse,in;
source, statusimg_bg;
action, STATE_SET mouseover 0.0; // This
// changes to mouseover image
target, statusimg_bg;
after, statusimg_stop;
}
program {
name, statusimg_out;
signal, mouse,out;
source, statusimg_bg;
action, STATE_SET default 0.0; // This
// changes to default image
target, statusimg_bg;
after, statusimg_stop;
}
program {
name, statusimg_stop;
signal, ;
action, ACTION_STOP;
target, statusimg_in;
target, statusimg_out;
}
}

If I add a line transition, LINEAR, 1 or something else, it waits 1
second, and then changes the image. I want a nice and slow alpha
transition :)

Btw, transitions work beautifully, when I change positon/size.

Thanks for the help,
Sevcsik


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Re: E CVS: screenshot devilhorns

2006-05-21 Thread Brian Mattern
On Sunday 21 May 2006 07:06, Enlightenment CVS wrote:
 Enlightenment CVS committal

 Author  : devilhorns
 Project : e_modules
 Module  : screenshot

 Dir : e_modules/screenshot


 Modified Files:
   e_mod_main.c


 Log Message:
 Changed message to tell the user to either install import or scrot.

import is part of ImageMagick. so, maybe something like
Please install either ImageMagick or Scrot for taking screenshots.?

--
rephorm


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Edje: Image transitions

2006-05-21 Thread Aleksej Struk

I guess, that u have to define all wanted alpha states of your image.
And then just step between them as u want.

Maybe I'm wrong. I'm not edje specialist. :(

Hope, my answer will help


On Sun, May 21, 2006 at 10:33:39PM +0200, Sevcsik Andr??s wrote:
// Hi everyone.
// 
// How can I add image transitions to my edc?
// 
// Heres my programs{} section:
// 
//  programs {
//  program {
//  name, statusimg_in;
//  signal, mouse,in;
//  source, statusimg_bg;
//  action, STATE_SET mouseover 0.0; // This
//  // changes to mouseover image
//  target, statusimg_bg;
//  after, statusimg_stop;
//  }
//  program {
//  name, statusimg_out;
//  signal, mouse,out;
//  source, statusimg_bg;
//  action, STATE_SET default 0.0; // This
//  // changes to default image
//  target, statusimg_bg;
//  after, statusimg_stop;
//  }
//  program {
//  name, statusimg_stop;
//  signal, ;
//  action, ACTION_STOP;
//  target, statusimg_in;
//  target, statusimg_out;
//  }
//  }
// 
// If I add a line transition, LINEAR, 1 or something else, it waits 1
// second, and then changes the image. I want a nice and slow alpha
// transition :)
// 
// Btw, transitions work beautifully, when I change positon/size.
// 
// Thanks for the help,
//  Sevcsik
// 
// 
// ---
// Using Tomcat but need to do more? Need to support web services, security?
// Get stuff done quickly with pre-integrated technology to make your job easier
// Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
// http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
// ___
// enlightenment-devel mailing list
// enlightenment-devel@lists.sourceforge.net
// https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-- 

Aleksej Struk
Master Degree Student
Free University of Bozen-Bolzano
Faculty of Computer Science
phone: +39-0471-061749
cell phone: +39-3204627049 +370-61278908
[EMAIL PROTECTED] [EMAIL PROTECTED] - http://astruk.googlepages.com/home


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Re: Entropy layout

2006-05-21 Thread Alexander Taylor
Hmm,
This is most odd - the 'entropy_event_action_file' should be resolved as
part of the dlopen process - it belongs to the linked component doing
the 'dlopen'/'dlsym' calls.

What environment are you compiling/running under?

The code as-is seems to work in all cases i've seen so far - and that's
a large number of different machines. 

Will be most interested to hear your response.

Cheers,
Alex.

On Sun, 2006-05-21 at 12:33 +0200, Thomas Jeunet wrote:
 Thank you for the CVS commmit, it helped finding the problem :
 /--
 (...)
 Loading '/usr/share/entropy/plugins//etk_structure_viewer.so'...
 Loading '/usr/share/entropy/plugins//etk_iconbox.so'...
 Could not open plugin object
 /usr/share/entropy/plugins//etk_iconbox.so - Corrupt file? abort
 Loading '/usr/share/entropy/plugins//layout_etk_simple.so'...
 Loading '/usr/share/entropy/plugins//layout_ewl_simple.so'...
 Loading '/usr/share/entropy/plugins//ewl_local_icon.so'...
 Loading '/usr/share/entropy/plugins//etk_list.so'...
 (...)
 Going to next plugin.../usr/share/entropy/plugins//etk_structure_viewer.so
 Sorry, but you haven't loaded a layout plugin.  Please configure one.
 \--
 So the etk_iconbox plugin pushes a NULL in the 'plugin init' queue as you 
 said.
 
 Then I tried to test this plugin with a quick coded source, and I get :
 /--
 Error during dlopen(): /usr/share/entropy/plugins/etk_iconbox.so:
 undefined symbol: entropy_event_action_file
 \--
 I ran : for i in /usr/share/entropy/plugins/*.so;do readelf -s $i |
 grep entropy_event_action_file  echo $i;done;
 /--
 20:  0 NOTYPE  GLOBAL DEFAULT  UND entropy_event_action_file
 /usr/share/entropy/plugins/etk_iconbox.so
 13:  0 NOTYPE  GLOBAL DEFAULT  UND entropy_event_action_file
 /usr/share/entropy/plugins/etk_trackback.so
 25:  0 NOTYPE  GLOBAL DEFAULT  UND entropy_event_action_file
 /usr/share/entropy/plugins/layout_etk_simple.so
 21:  0 NOTYPE  GLOBAL DEFAULT  UND entropy_event_action_file
 /usr/share/entropy/plugins/mime.so
 \--
 Is there any 'entropy_event_action_file' symbol missing in a plugin?
 
 Thanks for your help, regards
 cleptho
 
 
 On 5/21/06, Alexander Taylor [EMAIL PROTECTED] wrote:
  Hi,
  This is most curious, but I have found your cause.
 
  Somehow, a 'NULL' entry is being placed in the 'plugin init' queue.
  This NULL reference is returned from the function
  'create_plugin_object'.
 
  The only way for this function to return a null is the following:
 
  1. dlopen could not open your plugin file.  The file might have become
  corrupted somehow.
  2. dlopen works (and opens the plugin), but dlsym could not find the
  INIT function inside the plugin object.  Cause similar to (1).
 
  Either way, I have added two more debug statements to the source to
  track which case here applies to you.  Please update from CVS, and run
  it again, and append the output here - it should get you a bit further.
  Either way, recompiling/reinstalling may fix your problem - this problem
  can only occur (as far as I can see) - with a corrupt installation.
 
  Cheers,
  Alex.
 
 
  --
 
 
 ---
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Edje: Image transitions

2006-05-21 Thread The Rasterman
On Sun, 21 May 2006 22:33:39 +0200 Sevcsik András [EMAIL PROTECTED]
babbled:

 Hi everyone.
 
 How can I add image transitions to my edc?

you need 2 images and fade the one on top in/out. evas doesn't do crossfade -
and thus edje doesn't either.

 Heres my programs{} section:
 
   programs {
   program {
   name, statusimg_in;
   signal, mouse,in;
   source, statusimg_bg;
   action, STATE_SET mouseover 0.0; // This
   // changes to mouseover image
   target, statusimg_bg;
   after, statusimg_stop;
   }
   program {
   name, statusimg_out;
   signal, mouse,out;
   source, statusimg_bg;
   action, STATE_SET default 0.0; // This
   // changes to default image
   target, statusimg_bg;
   after, statusimg_stop;
   }
   program {
   name, statusimg_stop;
   signal, ;
   action, ACTION_STOP;
   target, statusimg_in;
   target, statusimg_out;
   }
   }
 
 If I add a line transition, LINEAR, 1 or something else, it waits 1
 second, and then changes the image. I want a nice and slow alpha
 transition :)
 
 Btw, transitions work beautifully, when I change positon/size.
 
 Thanks for the help,
   Sevcsik
 
 
 ---
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]
裸好多
Tokyo, Japan (東京 日本)


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] broken depends in eutils

2006-05-21 Thread Vlad Alyukov
Index: apps/e_utils/debian/control
===
RCS file: /var/cvs/e/e17/apps/e_utils/debian/control,v
retrieving revision 1.6
diff -u -3 -r1.6 control
--- apps/e_utils/debian/control 24 Apr 2006 09:39:44 -  1.6
+++ apps/e_utils/debian/control 22 May 2006 01:56:42 -
@@ -9,7 +9,7 @@
 Package: eutils
 Section: x11
 Architecture: any
-Depends: ${shlibs:Depends}, libevas0, libecore0, libesmart0, libedje0, 
libeet0, libewl0, libengrave0, libimlib2, libe, libepsilon 
+Depends: ${shlibs:Depends}, libevas0, libecore0, libesmart0, libedje0, 
libeet0, libewl0, libengrave0, libimlib2, enlightenment, libepsilon 
 Description: A collection of utilities for use with E17 and EFL apps.
  This package contains the following E17 tools:
  e17genmenu - Application to automatically generate menu entries.


-- 
Vlad Alyukov
RT QA Engineer
SWsoft, Inc.


Re: [E-devel] Evas Gradients

2006-05-21 Thread [EMAIL PROTECTED]

 Having a few troubles with evas gradients. The window that gets
 set up doesn't seem to repair a gradient properly when another
 window is passed over the gradient.  Ive got a quick example
 adapted from the efl cookbook below. Have I missed something
 or is it a problem in evas?
 
 Cheers,
 Daniel.
 ..
 ..

Yes, thanks. It's a feature available only with those engines
that derive from the generic software engine. But since this may
not be a good idea, I'll send a patch for it a bit later :)

jose.




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel