[E-devel] where does elemenetary_test load default.edj into memory

2010-05-18 Thread wh tu
Hi, I am interested in elementary toolkit. I know elementary_test load data/theme/default.edj as its default theme, but I cannot find out in which source code file the default.edj file is loaded. I guess this process should be done in initial process. Anyone could tell where is it? Thanks in

Re: [E-devel] where does elemenetary_test load default.edj into memory

2010-05-18 Thread The Rasterman
On Tue, 18 May 2010 15:11:28 +0800 wh tu whtu...@gmail.com said: Hi, I am interested in elementary toolkit. I know elementary_test load data/theme/default.edj as its default theme, but I cannot find out in which source code file the default.edj file is loaded. I guess this process should

Re: [E-devel] where does elemenetary_test load default.edj into memory

2010-05-18 Thread Vincent Torri
On Tue, 18 May 2010, Carsten Haitzler (The Rasterman) wrote: On Tue, 18 May 2010 15:11:28 +0800 wh tu whtu...@gmail.com said: Hi, I am interested in elementary toolkit. I know elementary_test load data/theme/default.edj as its default theme, but I cannot find out in which source code

Re: [E-devel] where does elemenetary_test load default.edj into memory

2010-05-18 Thread wh tu
Hi Rasterman and Vincent, Thanks for your quick reply. I will look at the elm_theme.c. If this is not so time -consuming for you could you tell me the startup processes when elementary_test run? Thanks whtuhtc 2010/5/18 Vincent Torri vto...@univ-evry.fr On Tue, 18 May 2010, Carsten

[E-devel] [Patch] Edje - Sending signals to a box's item

2010-05-18 Thread Hugo Camboulive
Hi everyone, I couldn't get this to work, and by looking at the code it did not seem to be implemented, so here's a patch that allows sending signals to a box's items. It's quite useful when you populate a box in edje through items{} and can't access the evas_object directly or just want to do it

[E-devel] Ecore Input Method

2010-05-18 Thread Daniele Ricci
Hello, I wrote a virtual keyboard for the openmoko neofreerunner, but I want to go deeper with it. I see that Ecore Input has a IMF module for writing input methods. What can I do to start? Comments are really few and not so much self-explainatory, not talking about googling... Thank you, --

[E-devel] Elementary GenList example problem

2010-05-18 Thread Andreas Volz
Hello, I noticed a problem in the Elementary GenList example code: static Elm_Genlist_Item_Class itc1; char *gl_label_get(const void *data, Evas_Object *obj, const char *part) { char buf[256]; snprintf(buf, sizeof(buf), Item # %i, (int)data); return strdup(buf); } static void

Re: [E-devel] Ecore Input Method

2010-05-18 Thread David Seikel
On Tue, 18 May 2010 21:29:02 +0200 Daniele Ricci daniele.ath...@gmail.com wrote: I wrote a virtual keyboard for the openmoko neofreerunner, but I want to go deeper with it. I see that Ecore Input has a IMF module for writing input methods. What can I do to start? Looking at the

Re: [E-devel] Ecore Input Method

2010-05-18 Thread Daniele Ricci
On Tue, May 18, 2010 at 22:10, David Seikel onef...@gmail.com wrote: Looking at the illume-keyboard module in e might be helpful. Already did it, illume-keyboard doesn't seem to be based on Ecore_IMF. -- daniele_athome

Re: [E-devel] Ecore Input Method

2010-05-18 Thread David Seikel
Sorry about the duplicate reply, I hit the wrong button. lol -- A big old stinking pile of genius that no one wants coz there are too many silver coated monkeys in the world. signature.asc Description: PGP signature

Re: [E-devel] Ecore Input Method

2010-05-18 Thread David Seikel
On Wed, 19 May 2010 06:49:00 +1000 David Seikel onef...@gmail.com wrote: Sorry about the duplicate reply, I hit the wrong button. lol Damn, did it again. Time for caffeine I think. -- A big old stinking pile of genius that no one wants coz there are too many silver coated monkeys in the

[E-devel] Settings - system menu.

2010-05-18 Thread David Seikel
While I'm making too much noise on the list... When did the system menu get removed from settings? Some of that stuff is not showing up in the applications menus of Ubuntu Karmic Koala at least. Means I have to relog back into gnome to do somethings. Like run the update manager. I don't think

Re: [E-devel] Settings - system menu.

2010-05-18 Thread Sachiel
On Tue, May 18, 2010 at 5:58 PM, David Seikel onef...@gmail.com wrote: While I'm making too much noise on the list... When did the system menu get removed from settings?  Some of that stuff is not showing up in the applications menus of Ubuntu Karmic Koala at least.  Means I have to relog

Re: [E-devel] Ecore Input Method

2010-05-18 Thread Eduardo Lima (Etrunko)
On Tue, May 18, 2010 at 4:29 PM, Daniele Ricci daniele.ath...@gmail.com wrote: Hello, I wrote a virtual keyboard for the openmoko neofreerunner, but I want to go deeper with it. I see that Ecore Input has a IMF module for writing input methods. What can I do to start? Comments are really few

Re: [E-devel] Settings - system menu.

2010-05-18 Thread Dave Andreoli
2010/5/18 Iván Briano (Sachiel) sachi...@gmail.com: On Tue, May 18, 2010 at 5:58 PM, David Seikel onef...@gmail.com wrote: While I'm making too much noise on the list... When did the system menu get removed from settings?  Some of that stuff is not showing up in the applications menus of

Re: [E-devel] Settings - system menu.

2010-05-18 Thread David Seikel
On Tue, 18 May 2010 23:42:09 +0200 Dave Andreoli d...@gurumeditation.it wrote: 2010/5/18 Iván Briano (Sachiel) sachi...@gmail.com: On Tue, May 18, 2010 at 5:58 PM, David Seikel onef...@gmail.com wrote: While I'm making too much noise on the list... When did the system menu get removed

Re: [E-devel] Elementary GenList example problem

2010-05-18 Thread Brett Nash
On Tue, 18 May 2010 22:01:57 +0200 Andreas Volz li...@brachttal.net wrote: Hello, I noticed a problem in the Elementary GenList example code: static Elm_Genlist_Item_Class itc1; char *gl_label_get(const void *data, Evas_Object *obj, const char *part) { char buf[256];