Re: Thank you, Tkinter. (easy to use)

2009-02-14 Thread Terry Reedy
DLitgo wrote: Does anyone know of a quick and easy install for > PIL + JPEG for Mac OS X (10.5)? If you don't get an answer, try a thread with the above as the title. There may be a python-mac list somewhere too. -- http://mail.python.org/mailman/listinfo/python-list

Re: Thank you, Tkinter. (easy to use)

2009-02-14 Thread DLitgo
On Feb 12, 12:39 am, r wrote: > Hello, > > Tkinter is a great GUI toolkit, for what it lacks in prettiness it > more than makes up for in simple and quick GUI building. I think this > is the main reason Tkinter continues to be Python's built-in GUI > toolkit. It is a great place to start for those

Re: Thank you, Tkinter. (easy to use)

2009-02-12 Thread argo785
On Feb 12, 4:29 am, "Eric Brunel" wrote: > On Thu, 12 Feb 2009 06:06:06 +0100, wrote: > > [snip] > > > My only (minor) complaint is that Tk > > doesn't draw text antialiased in the various widgets (menus, labels, > > buttons, etc.). > >  From version 8.5 of tcl/tk, it's supposed to do it. See thi

Re: Thank you, Tkinter. (easy to use)

2009-02-12 Thread argo785
On Feb 12, 4:29 am, "Eric Brunel" wrote: > On Thu, 12 Feb 2009 06:06:06 +0100, wrote: > > [snip] > > > My only (minor) complaint is that Tk > > doesn't draw text antialiased in the various widgets (menus, labels, > > buttons, etc.). > >  From version 8.5 of tcl/tk, it's supposed to do it. See thi

Re: Thank you, Tkinter. (easy to use)

2009-02-12 Thread Eric Brunel
On Thu, 12 Feb 2009 06:06:06 +0100, wrote: [snip] My only (minor) complaint is that Tk doesn't draw text antialiased in the various widgets (menus, labels, buttons, etc.). From version 8.5 of tcl/tk, it's supposed to do it. See this page: http://www.tcl.tk/software/tcltk/8.5.tml under 'Highlig

Re: Thank you, Tkinter. (easy to use)

2009-02-11 Thread r
Hello, Tkinter is a great GUI toolkit, for what it lacks in prettiness it more than makes up for in simple and quick GUI building. I think this is the main reason Tkinter continues to be Python's built-in GUI toolkit. It is a great place to start for those with no GUI experience. Sure it will neve

Thank you, Tkinter. (easy to use)

2009-02-11 Thread argo785
Tonight I needed to draw a series of simple shapes in a window using a bit of math but didn't have much time to do it. I've got very little GUI toolkit experience. Briefly had a look at the usually-recommended heavyweight GUI toolkits, but I didn't want to inherit from widget classes or override pa