Re: [E-devel] Using freedesktop.org .desktop files.

2006-08-11 Thread Vincent Torri

 XPM is not hard - loader is in imlbi2 - can be snarfed in.
 svg - well - a bigger issue - but i think we can avoid it for
 now and just display default icons in place. as long the the
 icon finder routine will return null when no icon can be
 found given the params - the code can fall back  :)

   I can port the xpm loader over if no one else wants to do
 so (I thought someone had done this already?).

i told that i would do it. But work and life take a lot of time :/

right now, i'm on holydays, so, i'll not work a lot :)

Vincent

-
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] Using freedesktop.org .desktop files.

2006-08-11 Thread Vincent Torri

  As far as the svg loading:  We've already mentioned using
 librsvg for that - I can give it a try and see how well it can
 be made to work if no one else wants to do so..

 I don't think anyone would be happy to see Evas depending on GTK/GDK
 etc.  Like Raster said, Evas already does 90% of what SVG requires,

90 % ? I don't think so.

Vincent

-
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] Using freedesktop.org .desktop files.

2006-08-11 Thread The Rasterman
On Fri, 11 Aug 2006 10:23:50 +1000 David Seikel [EMAIL PROTECTED] babbled:

 On Fri, 11 Aug 2006 09:17:15 +0900 Carsten Haitzler (The Rasterman)
 [EMAIL PROTECTED] wrote:
 
  On Fri, 11 Aug 2006 09:45:31 +1000 David Seikel [EMAIL PROTECTED]
  babbled:
  
   On Fri, 11 Aug 2006 08:01:33 +0900 Carsten Haitzler (The Rasterman)
   [EMAIL PROTECTED] wrote:
   
On Fri, 11 Aug 2006 08:07:56 +1000 David Seikel
[EMAIL PROTECTED] babbled:

 On Thu, 10 Aug 2006 23:13:50 +0900 Carsten Haitzler (The
 Rasterman) [EMAIL PROTECTED] wrote:
 
  i can be tipped to ecore given some arguments :) but as i
  said -

 Arguments to tip you to ecore_desktop_* for the parsing code -

ok- make it an ecore_fdo blob (ecore_fdo sounds good? or
ecore_xdg?) :)
   
   I thought about that.  This is not the only fdo spec that we now,
   or might in the future, support.  The other specs may or may not
   want to be covered by ecore_fdo, as their specs cover all sorts of
   different things.  Xdg also covers all the other fdo specs. I think
   ecore_desktop is best, as this code deals with all the .desktop
   related stuff.
  
  hmm - so you plan on covering the fdo menu spec elsewhere?
 
 Nope, the fdo menu spec is .desktop related stuff, it deals with
 pulling together all those .desktop files into a menu.  So it also goes
 into ecore_desktop.
 

ok :)

-- 
- 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=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] SDL Engine

2006-08-11 Thread Cedric BAIL
On Thursday 10 August 2006 23:48, [EMAIL PROTECTED] wrote:
   I'll let raster comment better on this.. but basically, when
 it comes to the image caching.. a general caching mechanism needs
 to be done yes -- one that can be used for any number of things.
   I had some some thoughts and code for this some while back
 and raster and I had discussed it a bit... but it's been sleeping
 for some time.

   Note though that the image caching mechanism has both a hash
 of 'active' images and a fallback list of 'inactive' images..
   Here, that an object is 'active' means obj ref_count  0,
 and inactive means obj ref_count = 0. If an obj's ref count reaches 0,
 it gets removed from the hash of 'active' objs and placed at the head
 of the list 'inactive' ones.
   When looking for an obj, first the hash of active objs is tried,
 and if not found there, then the list of inactive objs is tried.. if
 an obj is found in the inactive list, it gets ref to 1, removed from
 the inactive list and added to the active hash...

For my implementation, I have only a hash of object with ref_count.

   What setting the cache size does is to set a max on the memory
 used in the inactive list.
   Does your cache implentation follow this sort of pattern?

Well it does have a mecanism doing something for memory usage and maximum 
number of objects in the cache.
During insertion it test if this limit are ok. If the limit are 
reached, it 
made some attempt to evict old object from the cache (calling a callback each 
time). If he can't insert due to the limit, it could fail, but you can force 
the insertion if you absolutely want (In that case, it will just not enforce 
the limit. But I think I need to change the test, so that it still make some 
attempt to remove old object from the cache).

  In the same idea, what are the purpose of engine_image_border_set,
  engine_image_border_get and engine_image_format_get ? They seem
  empty in all engine I am looking in.

   The image 'border-set' is only used so far by the xrender
 engine, in order to fix some scaling issues of images with borders.

   This may have been a bad time to write a new engine.. ?
 There are many things that will change in the engine funcs -- this
 is needed in order to add various desirable api capabilities (eg.
 transforms and various vgfx related things).

Well I now understand better the need for some change :)

Cedric

-
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] e_border patch against property change events when moving windows

2006-08-11 Thread Hannes Janetzek
Hello,

I saw that there are property events send if windows were moved, but
for this there is already the border move event. As far as I see it, no
app uses the property change event to listen for window moves, and if
so it probably shouldn´t. 

Here is a 3 liner patch to omit this behavior.


Hannes
Index: e_border.c
===
RCS file: /var/cvs/e/e17/apps/e/src/bin/e_border.c,v
retrieving revision 1.521
diff -u -r1.521 e_border.c
--- e_border.c	7 Aug 2006 20:25:34 -	1.521
+++ e_border.c	11 Aug 2006 13:07:10 -
@@ -4663,10 +4663,12 @@
 
 static void
 _e_border_eval(E_Border *bd)
-{
+{	
E_Event_Border_Property *event;
int change_urgent = 0;
int rem_change = 0;
+   int send_event = 1;
+   

/* fetch any info queued to be fetched */
if (bd-client.icccm.fetch.client_leader)
@@ -5834,6 +5836,7 @@
 	e_container_shape_move(bd-shape, bd-x, bd-y);
 	bd-changes.pos = 0;
 	rem_change = 1;
+	send_event = 0;
  }
else if (bd-changes.size)
  {
@@ -6223,11 +6226,13 @@
if ((bd-remember)  (rem_change))
  e_remember_update(bd-remember, bd);
 
-
-   event = calloc(1, sizeof(E_Event_Border_Property));
-   event-border = bd;
-   e_object_ref(E_OBJECT(bd));
-   ecore_event_add(E_EVENT_BORDER_PROPERTY, event, _e_border_event_border_property_free, NULL);
+   if(send_event)
+   {
+   	event = calloc(1, sizeof(E_Event_Border_Property));
+   	event-border = bd;
+   	e_object_ref(E_OBJECT(bd));
+   	ecore_event_add(E_EVENT_BORDER_PROPERTY, event, _e_border_event_border_property_free, NULL);
+   }
 }
 
 static void
-
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] E CVS: libs/ecore onefang

2006-08-11 Thread Essien Ita Essien
Enlightenment CVS wrote:
 Enlightenment CVS committal

 Author  : onefang
 Project : e17
 Module  : libs/ecore

 Dir : e17/libs/ecore/src/lib/ecore_desktop




 Log Message:
 Directory /cvs/e/e17/libs/ecore/src/lib/ecore_desktop added to the repository


   
yay!!! ;)

way to go fangie

\(oo )\  /( oo)/



-
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] E CVS: libs/ecore onefang

2006-08-11 Thread David Seikel
On Fri, 11 Aug 2006 14:23:59 +0100 Essien Ita Essien
[EMAIL PROTECTED] wrote:

 Enlightenment CVS wrote:
  Enlightenment CVS committal
 
  Author  : onefang
  Project : e17
  Module  : libs/ecore
 
  Dir : e17/libs/ecore/src/lib/ecore_desktop
 
 
 
 
  Log Message:
  Directory /cvs/e/e17/libs/ecore/src/lib/ecore_desktop added to the
  repository
 
 

 yay!!! ;)
 
 way to go fangie
 
 \(oo )\  /( oo)/

Don't get too excited, it's not entirely ready yet.  Documentation needs
to be written.  Names need to be made more EFL conformant.  I may have
stuffed up the integration.  It needs to have indent run over it.

I've been working on it all day, and I need to get to bed soon as I
have a unix user group meeting to run all day tomorrow -

http://humbug.org.au/

Call this a preview, it's mostly there, just needs some tweaking.


signature.asc
Description: PGP signature
-
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] e: Using freedesktop.org .desktop files.

2006-08-11 Thread [EMAIL PROTECTED]
  Well, the xpm loader is ready.. I see a few other imlib2
 
 Cool, thanks.  I'm looking forward to seeing that committed.

Ok, in case you want to try the xpm loader, I'm attaching
a tgz file with the mininmum stuff it requires :)
The loader itself needs some more cleaning up.. it also had
a bug which I haven't had a chance to adequately fix and instead
had to go around it -- but it 'should' work (note: untested!).
I've only made the minimal changes to the config stuff
to get it to build.. someone more capable may want to do a better
job there..

   jose.


xpm_loader.tgz
Description: xpm_loader.tgz
-
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] e: Using freedesktop.org .desktop files.

2006-08-11 Thread [EMAIL PROTECTED]

Well, the xpm loader is ready.. I see a few other imlib2
  loaders that may be desirable (eg. an xcf one), if anyone would
  like to have any others ported now while I'm at it, do speak up
  before I move on and start digging into librsvg.
 
 Just a couple quick notes on the porting. Some of the imlib2_loaders
 (xcf in particular) are GPL and won't be able to go into evas
 directly, so you may need to create a separate loaders branch for
 evas too.

Well, I'll send the xpm one with only the min to get it
working.. I don't really see anything in there about licensing at
all.. but if there is something with that one in particular, someone
else who knows about such (and about config stuff) may want to look
at it.

 Also, if you're working on the XCF loader, keep an eye out for
 an endianess bug, I believe I ran into one a while back, but put
 off fixing it and forgot about it.

A.. Ok, thanks for the heads-up on it. It does look a bit
involved.. I may leave it for later, though it would be nice to be
able to load gimp image files (somehow).

   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=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] e: Using freedesktop.org .desktop files.

2006-08-11 Thread David Seikel
On Fri, 11 Aug 2006 14:04:50 GMT [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote:

   Well, the xpm loader is ready.. I see a few other imlib2
  
  Cool, thanks.  I'm looking forward to seeing that committed.
 
   Ok, in case you want to try the xpm loader, I'm attaching
 a tgz file with the mininmum stuff it requires :)
   The loader itself needs some more cleaning up.. it also had
 a bug which I haven't had a chance to adequately fix and instead
 had to go around it -- but it 'should' work (note: untested!).
   I've only made the minimal changes to the config stuff
 to get it to build.. someone more capable may want to do a better
 job there..

I've finished coding for the day, and I'll be busy all day tomorrow, so
you have plenty of time.

On the other hand, the ecore_desktop stuff now attempts to load xpm
and svg files as per the FDO spec, which will fail for those particular
icons until your changes get committed.  Just jumping the gun a little,
and not a problem since it was likely to fail to find image files for
those icons anyway.

Ecore_desktop needs a clean up itself.  So we will likely both get
these bits completed sometime in the near future.


signature.asc
Description: PGP signature
-
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] a solution for modules getting too large?

2006-08-11 Thread Hannes Janetzek
Hello,

how is it possible to get the size to which a gadcon client can maximal
grow without overlapping with others and also that it doesnt get larger
as the zone? I thought of implementing a function like 
 
e_gadcon_client_max_size_get(E_Gadcon_Client *gcc, int *size );

that should go trough the list of clients of its gadcon and determine
their actual size minus the max size that the gadcon can actually get.
This would also require a new callback in shelf to determine the size
that it can maximal provide.

Is this wanted or are there other plans to get rid of the problem
with modules getting too large? e.g see taskbar.

I will start making this, if it is ok and has a chance to get accepted.


Regards,
Hannes 

   

-
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] a solution for modules getting too large?

2006-08-11 Thread Aleksej Struk

Actually there is no need to make something now, because I'm almost
finished fixing current gadcon clients positiong algo. So, it will solve
the problem of correct gadcon clients position in the gadcon. Also,
it will deal with the size of the gadcon client. Therefore, the gadcon
clien still will have just to ask for position and size. The rest -
correct size/position will be done by gadcon itself.

sndev

On Fri, Aug 11, 2006 at 08:39:47PM +, Hannes Janetzek wrote:
 Hello,
 
 how is it possible to get the size to which a gadcon client can maximal
 grow without overlapping with others and also that it doesnt get larger
 as the zone? I thought of implementing a function like 
  
 e_gadcon_client_max_size_get(E_Gadcon_Client *gcc, int *size );
 
 that should go trough the list of clients of its gadcon and determine
 their actual size minus the max size that the gadcon can actually get.
 This would also require a new callback in shelf to determine the size
 that it can maximal provide.
 
 Is this wanted or are there other plans to get rid of the problem
 with modules getting too large? e.g see taskbar.
 
 I will start making this, if it is ok and has a chance to get accepted.
 
 
 Regards,
 Hannes 
 

 
 -
 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] [Entrance] SELinux integration

2006-08-11 Thread Mivz
Carsten Haitzler (The Rasterman) wrote:
 On Thu, 10 Aug 2006 10:37:52 -0500 (CDT) Ibukun Olumuyiwa
 [EMAIL PROTECTED] babbled:
 
 *Suddenly appears out of nowhere*

 NO.

 No blatant copying of gdm code, even with permission. Study the algorithm
 and reimplement it, but don't copy blocks of code from GDM. Everything
 needs to be written from scratch. That's always been the design philosophy
 from the beginning -- a lot of stuff in Entrance is taken from GDM
 architecture/algorithm-wise, but I always took care to make sure I didn't
 copy code explicitly to avoid licensing problems.

 Great catch btw, Raster. Thanks.
 
 thanks ibukun - entrance is your baby after all and your word should be final 
 :)
 
 note - that function is not very long. it would be easy to write again. just
 examine the algorithm - check what can be re-done in different logic 
 statements
 or different order (if it can) and use different variables etc.  because it is
 so short - it will still be similar to the gdm function - but you should be
 just copying the algorithm an using it as a reference for oooh so THAT is the
 magic function in selinux that i need to call!. :)

Yes, that's exactly what I was looking for. But I found a exact match of
what I needed. So I copied it. I will rewrite the function from scratch
and send it with the policy files. But, after I am done with my
graduation project, which is in fact a open source project. Much better
than exams :)

Harrie

-
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] [Entrance] SELinux integration

2006-08-11 Thread Essien Ita Essien
Mivz wrote:
 Carsten Haitzler (The Rasterman) wrote:
   
 On Thu, 10 Aug 2006 10:37:52 -0500 (CDT) Ibukun Olumuyiwa
 [EMAIL PROTECTED] babbled:

 
 *Suddenly appears out of nowhere*

 NO.

 No blatant copying of gdm code, even with permission. Study the algorithm
 and reimplement it, but don't copy blocks of code from GDM. Everything
 needs to be written from scratch. That's always been the design philosophy
 from the beginning -- a lot of stuff in Entrance is taken from GDM
 architecture/algorithm-wise, but I always took care to make sure I didn't
 copy code explicitly to avoid licensing problems.

 Great catch btw, Raster. Thanks.
   
 thanks ibukun - entrance is your baby after all and your word should be 
 final :)

 note - that function is not very long. it would be easy to write again. just
 examine the algorithm - check what can be re-done in different logic 
 statements
 or different order (if it can) and use different variables etc.  because it 
 is
 so short - it will still be similar to the gdm function - but you should be
 just copying the algorithm an using it as a reference for oooh so THAT is 
 the
 magic function in selinux that i need to call!. :)
 

 Yes, that's exactly what I was looking for. But I found a exact match of
 what I needed. So I copied it. I will rewrite the function from scratch
 and send it with the policy files. But, after I am done with my
 graduation project, which is in fact a open source project. Much better
 than exams :)

 Harrie
   
If i finish other things intime, or if i get bored one afternoon i may 
just do it (though i doubt it, i'm too darn lazy for my own good, I 
mean, there's so much anime out there to d/l and watch - Bleach anyone? 
;) ). Somehow though, I think this will be waiting for you when you're 
done :)
 -
 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


Re: [E-devel] a solution for modules getting too large?

2006-08-11 Thread The Rasterman
On Fri, 11 Aug 2006 23:11:35 + Aleksej Struk [EMAIL PROTECTED] babbled:

 
 Actually there is no need to make something now, because I'm almost
 finished fixing current gadcon clients positiong algo. So, it will solve
 the problem of correct gadcon clients position in the gadcon. Also,
 it will deal with the size of the gadcon client. Therefore, the gadcon
 clien still will have just to ask for position and size. The rest -
 correct size/position will be done by gadcon itself.


we need to make sure modules liek taskbar dont set a MINIMUM size of their
entire width but a REQUESTED size - otherwise this stuff can't work right :)

 sndev
 
 On Fri, Aug 11, 2006 at 08:39:47PM +, Hannes Janetzek wrote:
  Hello,
  
  how is it possible to get the size to which a gadcon client can maximal
  grow without overlapping with others and also that it doesnt get larger
  as the zone? I thought of implementing a function like 
   
  e_gadcon_client_max_size_get(E_Gadcon_Client *gcc, int *size );
  
  that should go trough the list of clients of its gadcon and determine
  their actual size minus the max size that the gadcon can actually get.
  This would also require a new callback in shelf to determine the size
  that it can maximal provide.
  
  Is this wanted or are there other plans to get rid of the problem
  with modules getting too large? e.g see taskbar.
  
  I will start making this, if it is ok and has a chance to get accepted.
  
  
  Regards,
  Hannes 
  
 
  
  -
  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
 


-- 
- 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=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] e: Using freedesktop.org .desktop files.

2006-08-11 Thread [EMAIL PROTECTED]

Just to get back to the desired evas xpm and svg image
loaders:

I had a chance to test the xpm loader and it seems to
work fine (it's actually difficult to find xpm files these days).
It can do with some cleaning up and some refining but it seems ok
for use as is.

I've also 'finished' a librsvg based svg loader... but
I'm *very* hesitant to send what I have as is.

The librsvg api varies in its abilities depending on
versions.. with later versions being far better. But this means
a more complex config setup. Also, I have no way to test this
loader.
I tried to quickly setup a stand-alone test program
for this and found that I have no idea where the g related
headers are. After some searching, they seem to be installed
(on my system) in /opt/gnome/include/...  But any attempts to
use these led to multitudes of error messages about undefined
types and such..

In essence, I know absolutely nothing about using
glib, gdk, etc...

Maybe that raster fella can lend a hand here :)

   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=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel