Re: Hooking things up in GUI application

2006-04-29 Thread Florian Diesch
"Ryan Ginstrom" <[EMAIL PROTECTED]> wrote: >> Behalf Of sturlamolden >> If you use PyGTK (it also runs on Windows), you can design >> the GUI with >> GLADE and then use libglade to import the gui as an xml-resource. > > Yes, I've tried something similar with wxGlade. Nice, but it doesn't seem to

Re: Hooking things up in GUI application

2006-04-25 Thread sturlamolden
Ryan Ginstrom wrote: > But I don't want to argue this point, just state that this isn't the problem > I want to solve. I really liked the idea of KVO/KVC in Cocoa that James > Stroud mentioned. That is what I am after, or something like that. If there > isn't anything like that, I think that it m

RE: Hooking things up in GUI application

2006-04-25 Thread Ryan Ginstrom
> Behalf Of sturlamolden > Ryan Ginstrom wrote: > > > Yes, I've tried something similar with wxGlade. > > But GLADE is not wxGlade :-) Yes, I'm just saying that I've done something similar to your example. In fact, wxCard also does this auto-generation of handlers. That's a start, but it's still

Re: Hooking things up in GUI application

2006-04-25 Thread sturlamolden
Ryan Ginstrom wrote: > Yes, I've tried something similar with wxGlade. But GLADE is not wxGlade :-) wxGlade is a GUI designer for wxWidgets and wxPython. It looks a bit like GLADE on the surface, but does not share any code with GLADE. GLADE is a GUI designer for GTK, gtkmm, Mono, GNOME and Py

Re: Hooking things up in GUI application

2006-04-25 Thread sturlamolden
Ryan Ginstrom wrote: > > Behalf Of sturlamolden > > If you use PyGTK (it also runs on Windows), you can design > > the GUI with > > GLADE and then use libglade to import the gui as an xml-resource. > > Yes, I've tried something similar with wxGlade. Nice, but it doesn't seem to > remove the most t

RE: Hooking things up in GUI application

2006-04-25 Thread Ryan Ginstrom
> Behalf Of sturlamolden > If you use PyGTK (it also runs on Windows), you can design > the GUI with > GLADE and then use libglade to import the gui as an xml-resource. Yes, I've tried something similar with wxGlade. Nice, but it doesn't seem to remove the most tedious work -- hooking up handlers

Re: Hooking things up in GUI application

2006-04-25 Thread sturlamolden
Ryan Ginstrom wrote: > Apropos recent threads about GUI editors, coming from a Win32/WTL C++ > background, I actually like the idea of being able to (easily) create GUIs > programmatically. > > But I still see a lot of the same tedium: hooking up events to handlers, and > getting data into and ou

Re: Hooking things up in GUI application

2006-04-24 Thread James Stroud
Ryan Ginstrom wrote: > Apropos recent threads about GUI editors, coming from a Win32/WTL C++ > background, I actually like the idea of being able to (easily) create GUIs > programmatically. > > But I still see a lot of the same tedium: hooking up events to handlers, and > getting data into and out

Hooking things up in GUI application

2006-04-24 Thread Ryan Ginstrom
Apropos recent threads about GUI editors, coming from a Win32/WTL C++ background, I actually like the idea of being able to (easily) create GUIs programmatically. But I still see a lot of the same tedium: hooking up events to handlers, and getting data into and out of dialogs. In C++, this is gene