[E-devel] Re: The E of E

2005-02-23 Thread Jose O Gonzalez
they have apps, communities, publicity and big, mature toolkits and everyone thinks they are trying to kill microsoft so they all rally behind them. Ok. But, the apps and stuff may follow from a 'mature toolkit'.. So what is it about their toolkits that is so much more

[E-devel] Imlib2 opening a file from memory

2005-02-23 Thread Antonio Larrosa Jiménez
Hello, I have the contents of a jpeg file in memory and I'd like to do some operations on it before writing it to disk, so I'd like to open the file without having to save it to disk, then use imlib_load_image( filename ) and then removing the temporary file. The kernel is of course caching

Re: [E-devel] Imlib2 opening a file from memory

2005-02-23 Thread The Rasterman
On Wed, 23 Feb 2005 13:14:25 +0100 Antonio Larrosa Jim__nez [EMAIL PROTECTED] (Bbabbled: (B (B Hello, (B (B I have the contents of a jpeg file in memory and I'd like to do some (B operations on it before writing it to disk, so I'd like to open the file (B without having to save it to

Re: [E-devel] Re: The E of E

2005-02-23 Thread Thierry
2. EWL needs more widgets - to the point where it has the same complement of widgets you see in qt and gtk+. they need to be fast and rock-solid. stable. it needs to support right-to-left languages for text and much better text layout. it needs more

Re: [E-devel] Imlib2 opening a file from memory

2005-02-23 Thread Michel Briand
Hello maybe you can use int mkfifo (const char *FILENAME, mode_t MODE) to create a FIFO in your application. You can then invoke imlib2 with this filename. You must feed this FIFO with you data. Anyway if you explain why you must have your jpeg in memory I can help more. You probably want to

[E-devel] Re: E CVS: libs/imlib2 raster

2005-02-23 Thread Michael Jennings
On Monday, 21 February 2005, at 01:35:30 (-0800), E CVS List wrote: Enlightenment CVS committal Author : raster Project : e17 Module : libs/imlib2 Dir : e17/libs/imlib2 Modified Files: configure.in Log Message: change versions. some went DOWN - because they

Re: [E-devel] Re: E CVS: libs/imlib2 raster

2005-02-23 Thread The Rasterman
On Thu, 24 Feb 2005 14:12:42 +0800 Didier Casse [EMAIL PROTECTED] (Bbabbled: (B (B On Wed, 23 Feb 2005 19:20:16 -0500, Michael Jennings [EMAIL PROTECTED] (Bwrote: (B On Monday, 21 February 2005, at 01:35:30 (-0800), (B E CVS List wrote: (B (B Enlightenment CVS committal (B (B

Re: [E-devel] E17 LiveCD

2005-02-23 Thread The Rasterman
On Wed, 23 Feb 2005 12:04:24 -0500 Britt Selvitelle [EMAIL PROTECTED] (Bbabbled: (B (B Ok, so this is a shamless request :) (B (B Have any E17 dev's considered putting out a liveCD? This is often a (B great way to provide an easy way for people to check out your software, (B and get

Re: [E-devel] evas' loaders

2005-02-23 Thread The Rasterman
On Wed, 23 Feb 2005 21:31:09 +0100 Massimo Maiurana [EMAIL PROTECTED] (Bbabbled: (B (B Il giorno Wed, 23 Feb 2005 12:05:09 +0900 Carsten scrisse: (B (B yeah - i should clean that up in evas's configure.in, but if you had (B CFLAGS=-I/opt/e17/include it would work :) (B (B (B yup :)

Re: [E-devel] Imlib2 opening a file from memory

2005-02-23 Thread Antonio Larrosa Jiménez
On Wednesday 23 February 2005 23:43, Michel Briand wrote: Hello Hi, maybe you can use int mkfifo (const char *FILENAME, mode_t MODE) to create a FIFO in your application. You can then invoke imlib2 with this filename. You must feed this FIFO with you data. Hmmm, nice idea, but I'm afraid