Re: [E-devel] About text format manipulation with EFL

2005-10-04 Thread David Seikel
On Wed, 5 Oct 2005 00:25:20 -0400 Jose O Gonzalez <[EMAIL PROTECTED]> wrote: > What he really loves is "caches". Get him started on that, > and you'll hear no end on the matter :) I've, had that conversation with him. I'm the one that insisted on the .eap cache. pgptudZhTfQuv.pgp Des

Re: [E-devel] About text format manipulation with EFL

2005-10-04 Thread Jose O Gonzalez
On Wed, 5 Oct 2005 11:16:58 +0900 Carsten writes: > On Wed, 5 Oct 2005 01:00:10 +1000 David Seikel <[EMAIL PROTECTED]> > babbled: > > > On Tue, 4 Oct 2005 23:01:23 +0900 Carsten Haitzler (The Rasterman) > > <[EMAIL PROTECTED]> wrote: > > > > > if you want to let webcore do the text layout you

Re: [E-devel] About text format manipulation with EFL

2005-10-04 Thread The Rasterman
On Wed, 5 Oct 2005 01:00:10 +1000 David Seikel <[EMAIL PROTECTED]> babbled: > On Tue, 4 Oct 2005 23:01:23 +0900 Carsten Haitzler (The Rasterman) > <[EMAIL PROTECTED]> wrote: > > > if you want to let webcore do the text layout you will end up with > > TONNES of text objects - and having that many

Re: [E-devel] [PATCH] Debugging helper for theme developers

2005-10-04 Thread The Rasterman
On Wed, 5 Oct 2005 00:03:48 +0200 Tilman Sauerbeck <[EMAIL PROTECTED]> babbled: > Hi, > see attached patch. > If ~/.e/e/logs/debug-border.log exists, it will be filled with whatever > info is emitted by the theme (emission == "debug"), e.g.: > > emit("debug", "blah"); > > When the log file doesn

Re: [E-devel] Trivial default theme fix

2005-10-04 Thread The Rasterman
On Tue, 04 Oct 2005 13:45:22 -0700 Lucas Watkins <[EMAIL PROTECTED]> babbled: > Hi everybody, > > This is probably too trivial to even mention, but I noticed that I > couldn't set the transition type to "none" with the default theme. The > attached patch adds a "transitions/none" group to the d

[E-devel] Maximize bug

2005-10-04 Thread Daniel Kasak
Greetings. I'm not sure when this happened exactly ( sorry ), but with E17 compiled from today's cvs, my apps are again having difficulty maximizing ( I've reported similar issues in the past, which where fixed, but seem to have slipped back in, although with *slightly* different behaviour ).

[E-devel] [PATCH] Debugging helper for theme developers

2005-10-04 Thread Tilman Sauerbeck
Hi, see attached patch. If ~/.e/e/logs/debug-border.log exists, it will be filled with whatever info is emitted by the theme (emission == "debug"), e.g.: emit("debug", "blah"); When the log file doesn't exist, no debug data will be gathered. I think this is very useful, since it's more convenient

[E-devel] Re: [PATCH] Debugging helper for theme developers

2005-10-04 Thread Tilman Sauerbeck
Tilman Sauerbeck <[EMAIL PROTECTED]> [2005-10-05 00:03]: > see attached patch. Whoops, it's attached now :) Regards, Tilman -- learn to quote: http://www.netmeister.org/news/learn2quote.html Index: src/bin/e_border.c === RCS file:

Re: [E-devel] [Patch] Enlightenment remote options extention.

2005-10-04 Thread Sebastian Dransfeld
Michael Jennings wrote: On Sunday, 02 October 2005, at 15:38:07 (-0500), Frederick Reeve wrote: I have posted this patch before but I did not hear anything back. From more information please see my previous post on 09/27/05 "Usabilty hack as enlightenment_remote options [patch]". I made this

Re: [E-devel] [Patch] Enlightenment remote options extention.

2005-10-04 Thread Michael Jennings
On Sunday, 02 October 2005, at 15:38:07 (-0500), Frederick Reeve wrote: > I have posted this patch before but I did not hear anything back. > From more information please see my previous post on 09/27/05 > "Usabilty hack as enlightenment_remote options [patch]". I made > this patch after reading

[E-devel] Re: E CVS: apps/e sebastid

2005-10-04 Thread Hisham Mardam Bey
> -* BUG: when moving e_win its resize callbacks get called with alternating > - width and height (this is why we have flickering in the conf panel) This bug is still present. -- Hisham Mardam Bey MSc (Computer Science) http://hisham.cc/ +9613609386 Codito Ergo Sum (I Code Therefore I Am)

[E-devel] Trivial default theme fix

2005-10-04 Thread Lucas Watkins
Hi everybody, This is probably too trivial to even mention, but I noticed that I couldn't set the transition type to "none" with the default theme. The attached patch adds a "transitions/none" group to the default theme. I'm not really too sure about the signals that need to be emitted at the

Re: [E-devel] About text format manipulation with EFL

2005-10-04 Thread David Seikel
On Tue, 4 Oct 2005 23:01:23 +0900 Carsten Haitzler (The Rasterman) <[EMAIL PROTECTED]> wrote: > if you want to let webcore do the text layout you will end up with > TONNES of text objects - and having that many can possibly get very > expensive speed-wise. for now - instead of rendering text, just

Re: [E-devel] About text format manipulation with EFL

2005-10-04 Thread The Rasterman
On Tue, 4 Oct 2005 14:46:47 +0200 Frederick MOUSNIER-LOMPRE <[EMAIL PROTECTED]> babbled: > Hi everybody, > > I'm working on a port of the KHTML renderer [1] [2] (HTML > layout engine) from the KDE project like it was done for the > Gtk/WebCore project [3] but with the EFL lib

Re: [E-devel] About text format manipulation with EFL

2005-10-04 Thread Nathan Ingersoll
On 10/4/05, Frederick MOUSNIER-LOMPRE <[EMAIL PROTECTED]> wrote: First of all I'd like to say that I'm a beginner in this field(HTML engine  renderer/EFL) so my first  - and also  unique - solutionwas to start with the sources of the Gtk Webcore project.Based on that  I try to replace  all

[E-devel] Re: E CVS: libs/ewl lordchaos

2005-10-04 Thread Nathan Ingersoll
Checkout the configure callback, I bet I messed up orientation switch detection.On 10/4/05, enlightenment-cvs@lists.sourceforge.net wrote: Enlightenment CVS committalAuthor  : lordchaosProject : e17Module  : libs/ewlDir : e17/libs/ewl/src/libModified F

Re: [E-devel] About text format manipulation with EFL

2005-10-04 Thread Vincent Torri
On Tue, 4 Oct 2005, Frederick MOUSNIER-LOMPRE wrote: > Hi everybody, > > I'm working on a port of the KHTML renderer [1] [2] (HTML > layout engine) from the KDE project like it was done for the > Gtk/WebCore project [3] but with the EFL library - the main goal is to > remove

[E-devel] eVolume is unsupported for now

2005-10-04 Thread Pavel Boldin
Oh, sadenly, but it is. If anyone want to support it, make me know with email (private and maillist copy). I can send CVS directory or latest cvs co. -- Pavel Boldin aka davinchi. mail-to: ldavinchi /at\ inbox _dot_ ru --- This SF.Net em

[E-devel] About text format manipulation with EFL

2005-10-04 Thread Frederick MOUSNIER-LOMPRE
Hi everybody, I'm working on a port of the KHTML renderer [1] [2] (HTML layout engine) from the KDE project like it was done for the Gtk/WebCore project [3] but with the EFL library - the main goal is to remove all external dependancies if possible and keep only EFL