Re: [E-devel] Evas Smart Object?

2005-03-25 Thread Christopher Campbell
Hi, shouldn't the _icon_del() function in icon_smart1.c actually delete something? In the text you mention, evas_object_del(data-image); evas_object_del(data-text); free(data); but, this is missing in the example c code regards, chris On Thu, 24 Mar 2005 17:59:05 -0600 Brian Mattern

Re: [E-devel] Evas Smart Object?

2005-03-25 Thread Christopher Campbell
Please ignore my previous babbling... everything is in the finished code, icon_smart2.c ... regards, chris On Fri, 25 Mar 2005 10:51:23 +0100 Christopher Campbell [EMAIL PROTECTED] wrote: Hi, shouldn't the _icon_del() function in icon_smart1.c actually delete something? In the text

[E-devel] Fontset Append List Configurable

2005-03-25 Thread Stafford Horne
Hi, This _might_ be a valid for for a FIXME in e_main.c to get the fontset to be configurable. I tested it through enlightenment_remote and it seems to work nicely. One will need to put his/her mouse over the title to notice the update changes. This is pretty useful for testing out

Re: [E-devel] Evas Smart Object?

2005-03-25 Thread Thijs Thiessens
Hello! I'm trying to join #e on freenode, but appearently I'm banned. Does anyone of you know the ops? Or where I can reach them? Thanks Thijs Thiessens --- SF email is sponsored by - The IT Product Guide Read honest candid reviews on

[E-devel] access data from inside resize callback?

2005-03-25 Thread Andreas Volz
Hi, in GTK are two functions to get access to non global data from inside a callback. The problem is to give a pointer into the resize callback: ecore_evas_callback_resize_set ( Ecore_Evas * ee, void(*)(Ecore_Evas *ee) func) In GTK there are

Re: [E-devel] access data from inside resize callback?

2005-03-25 Thread Tilman Sauerbeck
Andreas Volz [EMAIL PROTECTED] [2005-03-25 15:49]: in GTK are two functions to get access to non global data from inside a callback. The problem is to give a pointer into the resize callback: ecore_evas_callback_resize_set( Ecore_Evas * ee, void(*)(Ecore_Evas *ee)

[E-devel] small patch to e17

2005-03-25 Thread Piotr Skamruk
as in subject... Index: e17/apps/e/src/bin/e_int_menus.c === RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_int_menus.c,v retrieving revision 1.41 diff -u -r1.41 e_int_menus.c --- e17/apps/e/src/bin/e_int_menus.c22 Mar 2005

[E-devel] e17/apps/e/data/themes/default.edj divide request

2005-03-25 Thread Piotr Skamruk
as in subject i know that this is connected with separately loading each of new file but this would be simpler to add layout changeabilyty to each module separately. now when i want only to change clock (to digital, as example) i need to change whole file. if this file would be divided theme

[E-devel] Small embryo bug

2005-03-25 Thread John Slaten
There is a small bug in the embryo floating point support: native printf(format[], ...); main() { new Float:a; new i; a = 5.5; i = 3; if (a i) { printf(%f %i!\n, a, i); } else { printf(%f %i\n, a, i); } } fails to compile - the fix is attached. -- John

[E-devel] Elapse changes

2005-03-25 Thread Andreas Volz
Hi, I've done some minor changes in Elapse and added a new theme. I wrote the owner of Elapse (digitalfallout?), but I got no response. Do you think he has something against my changes? Should I simply commit my changes? regards Andreas ---

IRC (was Re: [E-devel] Evas Smart Object?)

2005-03-25 Thread Michael Jennings
On Friday, 25 March 2005, at 15:53:05 (+0100), Thijs Thiessens wrote: I'm trying to join #e on freenode, but appearently I'm banned. Does anyone of you know the ops? Or where I can reach them? Please start a new thread when you change topics. What is your nickname and your [EMAIL PROTECTED]

[E-devel] patch for eet

2005-03-25 Thread Piotr Skamruk
after bug report on #edevelop channel i done some investigation in code... eet_data_read calls eet_data_descriptor_decode (with some pointer) then with same pointer above function calls eet_data_chunk_get this function creates and sets Eet_Data_Chunk but incorrectly points to data which are

Re: IRC (was Re: [E-devel] Evas Smart Object?)

2005-03-25 Thread Nathan Ingersoll
We apparently took this off-list inadvertently. He's a speed.planet.nl user. I recommended that he check out #edevelop. On Fri, 25 Mar 2005 16:13:46 -0500, Michael Jennings [EMAIL PROTECTED] wrote: On Friday, 25 March 2005, at 15:53:05 (+0100), Thijs Thiessens wrote: I'm trying to join #e

Re: [E-devel] patch for eet

2005-03-25 Thread Tilman Sauerbeck
Piotr Skamruk [EMAIL PROTECTED] [2005-03-25 22:12]: eet_data_read calls eet_data_descriptor_decode (with some pointer) then with same pointer above function calls eet_data_chunk_get this function creates and sets Eet_Data_Chunk but incorrectly points to data which are later relased by upper

Re: [E-devel] Small embryo bug

2005-03-25 Thread Tilman Sauerbeck
John Slaten [EMAIL PROTECTED] [2005-03-25 13:20]: There is a small bug in the embryo floating point support: [float int] Thanks, applied. -- Regards, Tilman --- SF email is sponsored by - The IT Product Guide Read honest candid reviews

Re: IRC (was Re: [E-devel] Evas Smart Object?)

2005-03-25 Thread Thijs Thiessens
Sorry for the topic. Host is speed.planet.nl, but I'm cool with edevelop. Thijs Nathan Ingersoll wrote: We apparently took this off-list inadvertently. He's a speed.planet.nl user. I recommended that he check out #edevelop. On Fri, 25 Mar 2005 16:13:46 -0500, Michael Jennings [EMAIL PROTECTED]

Re: [E-devel] access data from inside resize callback?

2005-03-25 Thread Andreas Volz
Am Fri, 25 Mar 2005 09:57:46 -0500 schrieb dan sinclair: Something like void *ecore_evas_data_get(Ecore_Evas *ee, const char *key); void ecore_evas_data_set(Ecore_Evas *ee, const char *key, const void *data); Ok, this worked. But for what are evas_object_name_set() and

Re: [E-devel] access data from inside resize callback?

2005-03-25 Thread Tilman Sauerbeck
Andreas Volz [EMAIL PROTECTED] [2005-03-25 23:35]: Am Fri, 25 Mar 2005 09:57:46 -0500 schrieb dan sinclair: Something like void *ecore_evas_data_get(Ecore_Evas *ee, const char *key); void ecore_evas_data_set(Ecore_Evas *ee, const char *key, const void *data); Ok, this worked. But

Re: [E-devel] patch for eet

2005-03-25 Thread Piotr Skamruk
* Tilman Sauerbeck, ([EMAIL PROTECTED]) napisa: ... Rejected. The current code isn't broken, so your patch adds a memleak. it's hard to plead guilty, but this was trully my mistake... --- SF email is sponsored by - The IT Product Guide Read

[E-devel] Imlib2: loader_bz2.c leaks file handles. [Patch included]

2005-03-25 Thread Julia Wolf
Problem: Each time that imlib_load_image() is called, in turn, each loader library is called. The loader library for bz2 files opens a temporary file /tmp/imlib2_loader_bz2-XX and then almost immediately deletes it. But is never closes the tempfile so lsof will show: test-bin 28356 jwolf

Re: [E-devel] Imlib2: loader_bz2.c leaks file handles. [Patch included]

2005-03-25 Thread John Bickers
Hello, if (!(fp = fopen (im-real_file, rb))) { + close (dest); unlink (tmp); I guess the fopen might fail if the user hasn't got permission to read the file. The fix looks good, although for performance it may be useful to check the file

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

2005-03-25 Thread nick hughart
This fix has caused the stock buttons to be huge. Might need to back this one out or change how the stock buttons work. On Fri, 25 Mar 2005 21:54:33 -0800, enlightenment-cvs@lists.sourceforge.net enlightenment-cvs@lists.sourceforge.net wrote: Enlightenment CVS committal Author : rbdpngn

Re: [E-devel] Imlib2: loader_bz2.c leaks file handles. [Patch included]

2005-03-25 Thread The Rasterman
On Fri, 25 Mar 2005 20:37:36 -0500 Julia Wolf [EMAIL PROTECTED] babbled: Problem: Each time that imlib_load_image() is called, in turn, each loader library is called. The loader library for bz2 files opens a temporary file "/tmp/imlib2_loader_bz2-XX" and then almost

Re: [E-devel] e17/apps/e/data/themes/default.edj divide request

2005-03-25 Thread The Rasterman
On Fri, 25 Mar 2005 20:24:37 +0100 Piotr Skamruk [EMAIL PROTECTED] babbled: as in subject i know that this is connected with separately loading each of new file but this would be simpler to add layout changeabilyty to each module separately. now when i want only to change

Re: [E-devel] Fontset Append List Configurable

2005-03-25 Thread The Rasterman
On Fri, 25 Mar 2005 21:13:27 +0800 Stafford Horne [EMAIL PROTECTED] babbled: Hi, This _might_ be a valid for for a FIXME in e_main.c to get the fontset to be configurable. I tested it through enlightenment_remote and it seems to work nicely. One will need to