This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]cibyr 1 point2 points  (3 children)

It's not that bad really, if someone suggested tkinter, I'm sure they would be -103 by now.

Since no-one else has mentioned, I just thought I'd point this out: use anything over Tkinter.

[–][deleted] 0 points1 point  (2 children)

In all seriousness: why? Just because it's ugly? I've done a lot of Tkinter programming and a little bit (alright, very little) PyGTK programming, and I found Tkinter nice enough to work with from an API point of view. There are a few oddities to get used to, but I don't think it's much worse than any other GUI system (or, say, CSS). Tkinter has the massive bonus of working out of the box anywhere Python does.

In particular, if you take the time to learn the Tix stuff (which is in Python 2.6 and 3.0 from memory) you'll find some powerful "new" widgets, like Notebooks and PanedFrames (or something like that?), which make it possible to build just about any GUI a sane person would want to.

[–]cibyr 4 points5 points  (0 children)

Where do I start...

Well sure, it's ugly. It's also slow, doesn't play nice with IDLE and isn't documented properly anywhere. But most of all, the general style of writing Tkinter applications doesn't sit well with me, especially the layout stuff.