Boss wants me to program

Mike Meyer mwm at mired.org
Wed Jun 29 21:37:34 EDT 2005


"Adriaan Renting" <renting at astron.nl> writes:
> I realy prefer a WYSIWYG UI design tool
> to having to code BUTTON(120, 123, 123, 335, -1, NULL, doButton, "Push",
> "push this button")

With a modern GUI library, it's more like:

     buttonBox.addWidget(Button("&New", my, "new"))

and your button is added to the buttonbox. Anything that requires you
to specify the location exactly (whether in a WYSISOWYG GUI tool or
code) is fundamentally broken.

      <mike
-- 
Mike Meyer <mwm at mired.org>			http://www.mired.org/home/mwm/
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.



More information about the Python-list mailing list