Re: XML GUI

2005-11-11 Thread Jarek Zgoda
py napisaƂ(a): Looking for information on creating a GUI using a configuration file (like an XML file or something). Also, how do you map actions (button clicks, menu selections, etc) to the XML? Depending on GUI toolkit, you will have a range of choices: Glade for GTK, XRC for wxPython, Qt

Re: XML GUI

2005-11-09 Thread William Park
py [EMAIL PROTECTED] wrote: Looking for information on creating a GUI using a configuration file (like an XML file or something). Also, how do you map actions (button clicks, menu selections, etc) to the XML? Any other suggestions for building GUI's for Python projects...even Jython. If

XML GUI

2005-11-08 Thread py
Looking for information on creating a GUI using a configuration file (like an XML file or something). Also, how do you map actions (button clicks, menu selections, etc) to the XML? Any other suggestions for building GUI's for Python projects...even Jython. Thanks --

Re: XML GUI

2005-11-08 Thread kyriakos
if gtk is your toolkit of choice (using pygtk) you can design your user interface in glade (which saves it as an xml file) and then load it during runtime using libglade for more information check pygtk.org iand the faq http://www.async.com.br/faq/pygtk/index.py?req=all (-- especially section 22

Re: XML GUI

2005-11-08 Thread py
how about wxPython? I am interested in something that will look native on various operating systems (win, mac, *nix). any good tutorial on using wxPython with XML? -- http://mail.python.org/mailman/listinfo/python-list

Re: XML GUI

2005-11-08 Thread [EMAIL PROTECTED]
I had to do something like this for a project I was working on a while ago, it was a program based on alota plugins that would use a config file that looked sorta like an Xorg configuration, it seemed kinda hard at the time but it's acctually pretty fun and easy, the hard part is functionality you

Re: XML GUI

2005-11-08 Thread Brendan
py wrote: how about wxPython? I am interested in something that will look native on various operating systems (win, mac, *nix). any good tutorial on using wxPython with XML? The wxPython distribution comes with XRCed, which is a graphical gui-builder that serializes to XRC (wxWidgets XML

Re: XML GUI

2005-11-08 Thread py
wxPython sounds like it might be the ticket...especially with the XRC files. I plan on defining the GUI via XML, and actions in my python app. Thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: XML GUI

2005-11-08 Thread Juergen Kareta
py schrieb: how about wxPython? I am interested in something that will look native on various operating systems (win, mac, *nix). any good tutorial on using wxPython with XML? look at http://wiki.wxpython.org/index.cgi/UsingXmlResources --

Re: XML GUI

2005-11-08 Thread dcrespo
www.wxpython.org Look for the Docs and examples file. It has a full list of interesting examples, including the way for loading GUIs from xrc files. The xrc files can be generated from DialogBlocks, XRCEditor, wxDesigner. Daniel -- http://mail.python.org/mailman/listinfo/python-list

Re: XML GUI

2005-11-08 Thread jmdeschamps
Brendan wrote: py wrote: how about wxPython? I am interested in something that will look native on various operating systems (win, mac, *nix). any good tutorial on using wxPython with XML? The wxPython distribution comes with XRCed, which is a graphical gui-builder that serializes