[Tutor] Tkinter-wxPython

Rob rob@uselesspython.com
Tue, 6 Aug 2002 12:12:46 -0500


Although the original poster did not ask about this, I think there is some
benefit to comparing a more broad range of similar offerings to get the full
effect.

For instance, Jython developers have access to AWT & Swing for GUI
development. And even XHTML offers access to textboxes, radiobuttons,
checkboxes, etc.

Decisions about which path to take in the life of a developer or of any
given project will be based on what end results are intended, what resources
are available, etc.

For the purposes of learning GUI development in general, all of them are
handy.

Rob
http://uselesspython.com

> -----Original Message-----
> From: tutor-admin@python.org [mailto:tutor-admin@python.org]On Behalf Of
> alan.gauld@bt.com
> Sent: Tuesday, August 06, 2002 11:46 AM
> To: marta_andrea@libero.it; tutor@python.org
> Subject: RE: [Tutor] Tkinter-wxPython
>
>
> > what are the main differences between Tkinter and wxPython?
>
> Tkinter is built on the Tcl/Tk GUI toolkit and wxPython
> is built on the wxWindows toolkits. They are completely
> different beasts. Its probably easier to say what they
> have in common!
>
> They both implement the most basisc GUI widgets(labels,
> buttons, entry boxes, radio buttons, text boxes, menus etc)
>
> Otherwise:
> They both are event driven. wxPython requires you to use
> an OOP approach Tkinter doesn't. wxPython uses a dispatch
> table, Tkinter doesn't. wxPython has more widgets (although
> Tkinter can be augmented via PMW) wxPython has more native
> look and feel. Tkinter arguably translates into Tcl and
> Perl more easily. Tkinter has (had?) slightly better support
> on the Mac. and so it goes on...
>
> What specifically are you interested in?
>
> Alan G.
>
> _______________________________________________
> Tutor maillist  -  Tutor@python.org
> http://mail.python.org/mailman/listinfo/tutor
>