www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Does anyone have examples of GTK code in D?

reply Charles Hixson <charleshixsn earthlink.net> writes:
Does anyone have examples of GTK code in D?

Sorry, but my background doesn't include much C, so the standard 
examples don't help me much.

What I'd like to do is put some text on a window, put a button 
with a pixmap on the window, and then change the color of the 
window whenever the button is pushed.

(This is for a game on learning note names.  If I finish it, I'll 
gladly post it as a sample, but even though the Python original 
is working, I can't figure out how to get started on the D gtk 
interface.  Thanks to teqDruid<me teqdruid.com> for the files, so 
I can see that it OUGHT to be possible.)
Apr 09 2005
next sibling parent reply J C Calvarese <jcc7 cox.net> writes:
Charles Hixson wrote:
 Does anyone have examples of GTK code in D?
Have you tried DUI (http://dui.sourceforge.net/)? It's a wrapper based on GTK+. -- jcc7 http://jcc_7.tripod.com/d/
Apr 09 2005
parent reply Charles Hixson <charleshixsn earthlink.net> writes:
J C Calvarese wrote:
 Charles Hixson wrote:
 
 Does anyone have examples of GTK code in D?
Have you tried DUI (http://dui.sourceforge.net/)? It's a wrapper based on GTK+.
From what I seen of it (I haven't looked into it deeply) it's dependent on more than just GTK+. For me this would be bad, because I want to port to multiple platforms: Linux-86, Linux-PPC, MacOSX, and MSWind95. I think I can get basic GTK on all of those (I'm not sure about MSWind95), but anything more... That said, no, I haven't tried it. It ought, if nothing else, to be a good source of examples.
Apr 09 2005
parent reply Ant <duitoolkit yahoo.ca> writes:
Charles Hixson wrote:
 J C Calvarese wrote:
 
 Charles Hixson wrote:

 Does anyone have examples of GTK code in D?
Have you tried DUI (http://dui.sourceforge.net/)? It's a wrapper based on GTK+.
From what I seen of it (I haven't looked into it deeply) it's dependent on more than just GTK+.
there are no other dependencies. things like zlib1.dll are required by gtk it self. other like libpng are optional. the plain gtk D bindings migth be better for you but anyway here is the DUI code to do it, the functions names are similar setBorderWidth was gtk_set_border_width. /** * Modified HelloWorld */ class HelloWorld : MainWindow { private import std.stdio; this() { super("DUI Hello World"); setBorderWidth(100); Button button = new PixbufButton(logo, &buttonAction); add(button); show(); } // the functionalities of this should be integrated into // the main class Button class PixbufButton : Button { this(char** xpm, void delegate(Button) dlg) { super("", dlg); Pixbuf pixbuf = new Pixbuf(logo); removeAll(); add(new Image(pixbuf)); setBorderWidth(0); setRelief(ReliefStyle.NONE); } } ubyte cLevel; void buttonAction(Button button) { printf("Hello there\n"); cLevel+=80; modifyBG( StateType.NORMAL, new Color(cLevel,cast(ubyte)0,cast(ubyte)(255-cLevel)) ); } } void main(char[][] args) { DUI dui = DUI.dui(args); new HelloWorld(); dui.go(); } /* XPM */ static char** logo = [ "32 42 6 1", " c None", ". c #FEFEFE", "................................", "................................", "................................", "...............+++++............", ".............+++ ++............", "...........+++ ++..........", "..........++ ++.........", "........+++ +++++++ +++.......", "......+++ +++++++++++ ++.....", "....+++ +++ +++ +....", "...++ ++ ++ ++...", "...+ ++ ++ +..", "..+++ ++ ++ ++.", "............++++++..............", ".............+++................", "..............+.................", "................................"]; here's what users say about DUI: "[DUI] is great to use" http://www.digitalmars.com/drn-bin/wwwnews?digitalmars.D.dtl/314 "I REALLY REALLY REALLY like DUI. It's sosoooasy to use :)" "Kenny B
Apr 11 2005
parent reply "TechnoZeus" <TechnoZeus PeoplePC.com> writes:
"Ant" <duitoolkit yahoo.ca> wrote in message
news:d3faf8$17um$1 digitaldaemon.com...
 Charles Hixson wrote:
 J C Calvarese wrote:

 Charles Hixson wrote:

 Does anyone have examples of GTK code in D?
Have you tried DUI (http://dui.sourceforge.net/)? It's a wrapper based on GTK+.
From what I seen of it (I haven't looked into it deeply) it's dependent on more than just GTK+.
there are no other dependencies. things like zlib1.dll are required by gtk it self. other like libpng are optional.
*snip* But it is, unless there is an updated version that I don't know about, full of deprecated code. I spent a week or so correcting errors in it, and then gave up because I simply don't have that much time to devote to making it work. TZ
May 08 2005
parent reply Ant <Ant_member pathlink.com> writes:
In article <d5mp05$1o8$1 digitaldaemon.com>, TechnoZeus says...
"Ant" <duitoolkit yahoo.ca> wrote in message
news:d3faf8$17um$1 digitaldaemon.com...
 Charles Hixson wrote:
 J C Calvarese wrote:

 Charles Hixson wrote:

 Does anyone have examples of GTK code in D?
Have you tried DUI (http://dui.sourceforge.net/)? It's a wrapper based on GTK+.
From what I seen of it (I haven't looked into it deeply) it's dependent on more than just GTK+.
there are no other dependencies. things like zlib1.dll are required by gtk it self. other like libpng are optional.
*snip* But it is, unless there is an updated version that I don't know about, full of deprecated code. I spent a week or so correcting errors in it, and then gave up because I simply don't have that much time to devote to making it work.
The progress of DUI depends directly on how much I'm using it and I don't have the time right now. The latests svn on dsource (now down it seems) works perfectly on linux. It's the best version ever (Gtk+2.6.x)! I'll make a release as soon as possible. John Reimer found and corrected the problems on the windows version while working on his dynDUI (I plan to merge both versions) so I will also look at the making a windows release when I have time. Ant
May 09 2005
next sibling parent John Reimer <brk_6502 yahoo.com> writes:
Ant wrote:
But it is, unless there is an updated version that I don't know about, full of
deprecated code.
I spent a week or so correcting errors in it, and then gave up because I simply
don't have that much time to devote to making it work.
The progress of DUI depends directly on how much I'm using it and I don't have the time right now. The latests svn on dsource (now down it seems) works perfectly on linux. It's the best version ever (Gtk+2.6.x)! I'll make a release as soon as possible. John Reimer found and corrected the problems on the windows version while working on his dynDUI (I plan to merge both versions) so I will also look at the making a windows release when I have time. Ant
I just wanted to point out that I haven't yet managed to get (dynamic) DUI working with Gtk+2.6.x on win32; it works fine with 2.4.x. I will continue to look into this. I spent very little time trying it with 2.6.x and all of my time on 2.4.x, so it's probably quite feasible with a little effort. DynDUI, otherwise, works the same on both win32 and linux. A big thank you to Ant for all his hard work with DUI. I don't know if people realize how much time he put into that project, but considering the bug squashing he did there over the last 2 years (?), I think his contribution to the D language is significant. See him in Walter's acknowledgements list? How do you think he got there? :-) Concerning my DUI modification: Using a method inspired by Kris Bells dynamic loader in Mango.ICU, DynDUI makes the build process a whole lot easier then before. Just install your gtk+ libraries with one of the win32 gtk+ installers and import DUI into your project. You need only link with the DynDUI library now: all gtk symbols are loaded internally from the dll's (so's on linux). Derek's build tool makes the whole process even simpler: just add the new DUI import directory to the \dmd\bin\sc.ini (dmd.conf on linux) file "-I" option, then place a dynDUI.lib in \dmd\lib directory (or other such that dmd knows where to look for it), and build a project with the following command: build myproject.d dynDUI.lib -XDynDUI I still have to make some updates to dynDUI to make things work flawlessly. Right now, for example, opengl is not yet operational in my version until I convert the sources over. Otherwise everything else works: sample apps were available at dsource.org, but it's down ATM. Also, I need to add "dynDUI.lib" to the project direcory or provide the build command to make it. I'm kind of entertaining the idea of a DUI port to win32 native. It looks like it would be a lot of work, but may be a great exercise. Meanwhile, I hoping to also help Sean Liu shape up DWT for a usable release. We'll see where we go. I may be biting off a little too much. :-) -JJR
May 09 2005
prev sibling parent reply "TechnoZeus" <TechnoZeus PeoplePC.com> writes:
"Ant" <Ant_member pathlink.com> wrote in message
news:d5npku$qbn$1 digitaldaemon.com...
 In article <d5mp05$1o8$1 digitaldaemon.com>, TechnoZeus says...
"Ant" <duitoolkit yahoo.ca> wrote in message
news:d3faf8$17um$1 digitaldaemon.com...
 Charles Hixson wrote:
 J C Calvarese wrote:

 Charles Hixson wrote:

 Does anyone have examples of GTK code in D?
Have you tried DUI (http://dui.sourceforge.net/)? It's a wrapper based on GTK+.
From what I seen of it (I haven't looked into it deeply) it's dependent on more than just GTK+.
there are no other dependencies. things like zlib1.dll are required by gtk it self. other like libpng are optional.
*snip* But it is, unless there is an updated version that I don't know about, full of deprecated code. I spent a week or so correcting errors in it, and then gave up because I simply don't have that much time to devote to making it work.
The progress of DUI depends directly on how much I'm using it and I don't have the time right now. The latests svn on dsource (now down it seems) works perfectly on linux. It's the best version ever (Gtk+2.6.x)! I'll make a release as soon as possible. John Reimer found and corrected the problems on the windows version while working on his dynDUI (I plan to merge both versions) so I will also look at the making a windows release when I have time. Ant
I take it you're the one developing it? Perhaps I could help get it up to date somehow. It may not be worth my time to work on it just for me, especially since I have never seen it working right and would likely run into questions that I don't have the answers to, but if I am working in cooperation with the developer to get it working right for everyone, that would be at least a worth while endeavor. TZ
May 09 2005
parent reply Ant <Ant_member pathlink.com> writes:
In article <d5pkan$ge1$1 digitaldaemon.com>, TechnoZeus says...
 The progress of DUI depends directly on how much I'm using it
I take it you're the one developing it?
yes.
Perhaps I could help get it up to date somehow.
If we are talking linux it should be simple. I'll try to update the sourceforge download tonight (again: linux only). I'll make an announcement on the announcements group. Ant
May 10 2005
parent reply Ant <Ant_member pathlink.com> writes:
In article <d5qm9h$1elt$1 digitaldaemon.com>, Ant says...
In article <d5pkan$ge1$1 digitaldaemon.com>, TechnoZeus says...
 The progress of DUI depends directly on how much I'm using it
I take it you're the one developing it?
yes.
Perhaps I could help get it up to date somehow.
If we are talking linux it should be simple. I'll try to update the sourceforge download tonight (again: linux only). I'll make an announcement on the announcements group.
SVN on dsource is back up, for linux, go there and grab dool and DUI. (I hope the Makefiles are up to date, can't remember). The Makefiles will need small customizations. Last compiled with DMD 0.121. http://svn.dsource.org/projects/dool/ http://svn.dsource.org/projects/dui/ Ant PS for a wonderfull IDE experience on linux grab the leds preview release from the leds SVN repository :) http://svn.dsource.org/projects/leds/trunk/leds_linux_preview.gz (setting up a project is still only for those who can follow instructions: http://leds.sourceforge.net/projTarget.html if the project is not properly setup intellisence will not find the references. I never tried it but you can probably set new d build tools on the make command as described on http://leds.sourceforge.net/projBuild.html leds face: http://sourceforge.net/project/screenshots.php?group_id=97732
May 10 2005
parent "TechnoZeus" <TechnoZeus PeoplePC.com> writes:
"Ant" <Ant_member pathlink.com> wrote in message
news:d5qu8f$1kqn$1 digitaldaemon.com...
 In article <d5qm9h$1elt$1 digitaldaemon.com>, Ant says...
In article <d5pkan$ge1$1 digitaldaemon.com>, TechnoZeus says...
 The progress of DUI depends directly on how much I'm using it
I take it you're the one developing it?
yes.
Perhaps I could help get it up to date somehow.
If we are talking linux it should be simple. I'll try to update the sourceforge download tonight (again: linux only). I'll make an announcement on the announcements group.
SVN on dsource is back up, for linux, go there and grab dool and DUI. (I hope the Makefiles are up to date, can't remember). The Makefiles will need small customizations. Last compiled with DMD 0.121. http://svn.dsource.org/projects/dool/ http://svn.dsource.org/projects/dui/ Ant PS for a wonderfull IDE experience on linux grab the leds preview release from the leds SVN repository :) http://svn.dsource.org/projects/leds/trunk/leds_linux_preview.gz (setting up a project is still only for those who can follow instructions: http://leds.sourceforge.net/projTarget.html if the project is not properly setup intellisence will not find the references. I never tried it but you can probably set new d build tools on the make command as described on http://leds.sourceforge.net/projBuild.html leds face: http://sourceforge.net/project/screenshots.php?group_id=97732
Cool. I'm on a Windows 98 system myself though. Still... good to hear. :) TZ
May 11 2005
prev sibling next sibling parent Thomas Kuehne <thomas-dloop kuehne.thisisspam.cn> writes:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Charles Hixson schrieb am Sat, 09 Apr 2005 14:53:55 -0700:
 Does anyone have examples of GTK code in D?

 Sorry, but my background doesn't include much C, so the standard 
 examples don't help me much.

 What I'd like to do is put some text on a window, put a button 
 with a pixmap on the window, and then change the color of the 
 window whenever the button is pushed.
Might provide some hints: http://dui.sourceforge.net/ Thomas -----BEGIN PGP SIGNATURE----- iD8DBQFCWGRW3w+/yD4P9tIRAh02AKCPiRF9oFJmuY+5VZ1Yo9QDTTwU/wCbBK/o AzWXfxJv4e9fgGC9t6hK5SU= =Bog6 -----END PGP SIGNATURE-----
Apr 09 2005
prev sibling next sibling parent reply clayasaurus <clayasaurus gmail.com> writes:
Charles Hixson wrote:
 Does anyone have examples of GTK code in D?
 
 Sorry, but my background doesn't include much C, so the standard 
 examples don't help me much.
I suggest you learn GTK C before you learn GTK D. Anyway, D GTK bindings are here... http://svn.dsource.org/svn/projects/bindings/trunk/
 
 What I'd like to do is put some text on a window, put a button with a 
 pixmap on the window, and then change the color of the window whenever 
 the button is pushed.
 
 (This is for a game on learning note names.  If I finish it, I'll gladly 
 post it as a sample, but even though the Python original is working, I 
 can't figure out how to get started on the D gtk interface.  Thanks to 
 teqDruid<me teqdruid.com> for the files, so I can see that it OUGHT to 
 be possible.)
Apr 11 2005
parent Charles Hixson <charleshixsn earthlink.net> writes:
clayasaurus wrote:
 Charles Hixson wrote:
 
 Does anyone have examples of GTK code in D?

 Sorry, but my background doesn't include much C, so the standard 
 examples don't help me much.
I suggest you learn GTK C before you learn GTK D.
You may have a point, but that removes a lot of the reason for using D on this project. O, well.
 
 Anyway, D GTK bindings are here... 
 http://svn.dsource.org/svn/projects/bindings/trunk/
 
 What I'd like to do is put some text on a window, put a button with a 
 pixmap on the window, and then change the color of the window whenever 
 the button is pushed.

 (This is for a game on learning note names.  If I finish it, I'll 
 gladly post it as a sample, but even though the Python original is 
 working, I can't figure out how to get started on the D gtk 
 interface.  Thanks to teqDruid<me teqdruid.com> for the files, so I 
 can see that it OUGHT to be possible.)
Apr 11 2005
prev sibling parent reply "G.Vidal" <gyvidal wanadoo.fr> writes:
You don't even need to learn GTK. Get GLADE, it's a wysiwyg Gtk gui
builder that will output a XML file. Then use the libglade binding (it's
on dsource) and with 3 or 4 lines of D code, you can dynamically load the
XML file etc... sooo easy.

GLADE RULEZ !



Le Sat, 09 Apr 2005 14:53:55 -0700, Charles Hixson a écrit :

 Does anyone have examples of GTK code in D?
 
 Sorry, but my background doesn't include much C, so the standard 
 examples don't help me much.
 
 What I'd like to do is put some text on a window, put a button 
 with a pixmap on the window, and then change the color of the 
 window whenever the button is pushed.
 
 (This is for a game on learning note names.  If I finish it, I'll 
 gladly post it as a sample, but even though the Python original 
 is working, I can't figure out how to get started on the D gtk 
 interface.  Thanks to teqDruid<me teqdruid.com> for the files, so 
 I can see that it OUGHT to be possible.)
Apr 15 2005
parent reply Chris Sauls <ibisbasenji gmail.com> writes:
G.Vidal wrote:
 You don't even need to learn GTK. Get GLADE, it's a wysiwyg Gtk gui
 builder that will output a XML file. Then use the libglade binding (it's
 on dsource) and with 3 or 4 lines of D code, you can dynamically load the
 XML file etc... sooo easy.
Interesting... I'm actually in the middle of setting up something similar for Win32 (in the middle means I just finished the (fairly minimalistic) XML parser). Its part of a library I've been working on for one reason and one reason only: I could use it myself, and I wanted to test a couple of ideas. One of them being this "store a GUI as an XML file" thing. What does the GLADE XML look like? My CGX (Casal GUI XML) files look something like this: icon="file:icon.bmp" width="640" height="480" position="center"> Win32!" name="top text"/> application that does extremely little. Play around with the buttons a bit, and check out the file 'text.cgx' where this entire GUI is defined! Amazing, huh?" /> pressme" name="pressme button" /> name="min/max button" /> I have a singleton called CgxManager (module casual.cgx.manager) which can be notified of new classes implementing interface ICgxWidget (module casual.cgx.widget) and thus expand on what can be put in the CGX file. But... this thing is going to be forever in coming, so I should hush about it. -- Chris Sauls
Apr 16 2005
next sibling parent "G.Vidal" <gyvidal wanadoo.fr> writes:
Le Sat, 16 Apr 2005 12:59:51 -0500, Chris Sauls a écrit :


 Interesting... I'm actually in the middle of setting up something 
 similar for Win32 (in the middle means I just finished the (fairly 
 minimalistic) XML parser).  Its part of a library I've been working on 
 for one reason and one reason only: I could use it myself, and I wanted 
 to test a couple of ideas.  One of them being this "store a GUI as an 
 XML file" thing.
win32 ? I didn't know people were still using this sh**... anyway, you can use libglade under win32 as there's GTK2 dlls for win32... A GLADE XML file looks like this: <?xml version="1.0" standalone="no"?> <!--*- mode: xml -*--> <!DOCTYPE glade-interface SYSTEM "http://glade.gnome.org/glade-2.0.dtd"> <glade-interface> <widget class="GtkWindow" id="window1"> <property name="visible">True</property> <property name="title" translatable="yes">This is a test</property> <property name="type">GTK_WINDOW_TOPLEVEL</property> <property name="window_position">GTK_WIN_POS_NONE</property> <property name="modal">False</property> <property name="resizable">True</property> <property name="destroy_with_parent">True</property> <property name="decorated">True</property> <property name="skip_taskbar_hint">False</property> <property name="skip_pager_hint">False</property> <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property> <property name="gravity">GDK_GRAVITY_NORTH_WEST</property> <property name="focus_on_map">True</property> <child> <widget class="GtkButton" id="button1"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="relief">GTK_RELIEF_NORMAL</property> <property name="focus_on_click">True</property> <signal name="clicked" handler="on_button1_clicked" last_modification_time="Sun, 17 Apr 2005 10:27:51 GMT"/> <child> <widget class="GtkAlignment" id="alignment1"> <property name="visible">True</property> <property name="xalign">0.5</property> <property name="yalign">0.5</property> <property name="xscale">0</property> <property name="yscale">0</property> <property name="top_padding">0</property> <property name="bottom_padding">0</property> <property name="left_padding">0</property> <property name="right_padding">0</property> <child> <widget class="GtkHBox" id="hbox1"> <property name="visible">True</property> <property name="homogeneous">False</property> <property name="spacing">2</property> <child> <widget class="GtkImage" id="image1"> <property name="visible">True</property> <property name="stock">gtk-jump-to</property> <property name="icon_size">4</property> <property name="xalign">0.5</property> <property name="yalign">0.5</property> <property name="xpad">0</property> <property name="ypad">0</property> </widget> <packing> <property name="padding">0</property> <property name="expand">False</property> <property name="fill">False</property> </packing> </child> <child> <widget class="GtkLabel" id="label1"> <property name="visible">True</property> <property name="label" translatable="yes">Click me !</property> <property name="use_underline">True</property> <property name="use_markup">False</property> <property name="justify">GTK_JUSTIFY_LEFT</property> <property name="wrap">False</property> <property name="selectable">False</property> <property name="xalign">0.5</property> <property name="yalign">0.5</property> <property name="xpad">0</property> <property name="ypad">0</property> <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> <property name="width_chars">-1</property> <property name="single_line_mode">False</property> <property name="angle">0</property> </widget> <packing> <property name="padding">0</property> <property name="expand">False</property> <property name="fill">False</property> </packing> </child> </widget> </child> </widget> </child> </widget> </child> </widget> </glade-interface> See ya
Apr 17 2005
prev sibling parent reply "TechnoZeus" <TechnoZeus PeoplePC.com> writes:
"Chris Sauls" <ibisbasenji gmail.com> wrote in message
news:d3rj80$3b8$1 digitaldaemon.com...
 G.Vidal wrote:
 You don't even need to learn GTK. Get GLADE, it's a wysiwyg Gtk gui
 builder that will output a XML file. Then use the libglade binding (it's
 on dsource) and with 3 or 4 lines of D code, you can dynamically load the
 XML file etc... sooo easy.
Interesting... I'm actually in the middle of setting up something similar for Win32 (in the middle means I just finished the (fairly minimalistic) XML parser). Its part of a library I've been working on for one reason and one reason only: I could use it myself, and I wanted to test a couple of ideas. One of them being this "store a GUI as an XML file" thing. What does the GLADE XML look like? My CGX (Casal GUI XML) files look something like this: icon="file:icon.bmp" width="640" height="480" position="center"> Win32!" name="top text"/> application that does extremely little. Play around with the buttons a bit, and check out the file 'text.cgx' where this entire GUI is defined! Amazing, huh?" /> pressme" name="pressme button" /> name="min/max button" /> I have a singleton called CgxManager (module casual.cgx.manager) which can be notified of new classes implementing interface ICgxWidget (module casual.cgx.widget) and thus expand on what can be put in the CGX file. But... this thing is going to be forever in coming, so I should hush about it. -- Chris Sauls
I'm curious... How far along are you on this, and are you planning to release it? TZ
May 27 2005
parent reply Chris Sauls <ibisbasenji gmail.com> writes:
TechnoZeus wrote:
 I'm curious... How far along are you on this, and are you planning to release
it?
Sadly I'm not a whole lot farther along, mostly because of a lack of time to devote to it. Once it is somewhere near really usable I will probably ask to put it on DSource or otherwise share it. I've got a few other ideas I'm toying with in this lib, such as the Command singleton. Commands can be "bound to"/"unbound from" widgets, via "command slots". For instance, the Button widget supports the "on click" slot. So in code you would do something like this: (note this is prototype code) Note that if a given Command does not "exist" (meaning it is an invalid key into the Command singleton's assoc-array-like interface) then it simply isn't ran. In other words, it is not an error to have a "null" command. It is just a command that doesn't do anything. Although, to be honest, I've been looking at the Harmonia library and wondering of a loading-from-xml approach could be worked into it. I like Harmonia overall, and may well be using it myself in the future. -- Chris Sauls
May 28 2005
parent "TechnoZeus" <TechnoZeus PeoplePC.com> writes:
"Chris Sauls" <ibisbasenji gmail.com> wrote in message
news:d79gj7$guu$1 digitaldaemon.com...
 TechnoZeus wrote:
 I'm curious... How far along are you on this, and are you planning to release
it?
Sadly I'm not a whole lot farther along, mostly because of a lack of time to devote to it. Once it is somewhere near really usable I will probably ask to put it on DSource or otherwise share it. I've got a few other ideas I'm toying with in this lib, such as the Command singleton. Commands can be "bound to"/"unbound from" widgets, via "command slots". For instance, the Button widget supports the "on click" slot. So in code you would do something like this: (note this is prototype code) Note that if a given Command does not "exist" (meaning it is an invalid key into the Command singleton's assoc-array-like interface) then it simply isn't ran. In other words, it is not an error to have a "null" command. It is just a command that doesn't do anything. Although, to be honest, I've been looking at the Harmonia library and wondering of a loading-from-xml approach could be worked into it. I like Harmonia overall, and may well be using it myself in the future. -- Chris Sauls
Looks promising. I also fully understand the time constraints issue, and wish you the best of luck in finding the time to accomplish your goals on the project. If you get it to a stage where you would like an outside tester, let me know. I'll see what I can find time to do. TZ
May 28 2005