Re: State of the art: Tkinter, Tk 8.5, Tix?

2009-01-10 Thread Дамјан Георгиевски
> The themed Tk widgets (ttk) that come with Tk 8.5 add a lot of the > same things that Tix does, but they do so in a more modern way, > hooking into platform-specific themes and API's wherever possible (XP, > Vista, Mac) and updating the generic X11 look as well. As such

Re: State of the art: Tkinter, Tk 8.5, Tix?

2009-01-10 Thread Kevin Walzer
excord80 wrote: On Jan 10, 11:45 am, r wrote: We need TK 8.5's themes. This will bring Tkinter out of the dark ages and into the 21st Century! And improve the shine of the Python base distro. Python could use a good boost right now! Could someone please explain what Tix provides compar

Re: State of the art: Tkinter, Tk 8.5, Tix?

2009-01-10 Thread Kevin Walzer
excord80 wrote: Could someone please explain what Tix provides compared to what the new stuff in Tk 8.5 provides? Is there much overlap? Tix is a compiled Tk extension that adds a good number of widgets to the base set, such as a notebook tab, treeview, combobox, and others; Python

Re: State of the art: Tkinter, Tk 8.5, Tix?

2009-01-10 Thread r
On Jan 10, 3:05 pm, excord80 wrote: > On Jan 10, 11:45 am, r wrote: > > > We need TK 8.5's themes. This will bring Tkinter out of the dark ages > > and into the 21st Century! And improve the shine of the Python base > > distro. Python could use a good boost right

Re: State of the art: Tkinter, Tk 8.5, Tix?

2009-01-10 Thread excord80
On Jan 10, 11:45 am, r wrote: > We need TK 8.5's themes. This will bring Tkinter out of the dark ages > and into the 21st Century! And improve the shine of the Python base > distro. Python could use a good boost right now! Could someone please explain what Tix provides compared t

Re: State of the art: Tkinter, Tk 8.5, Tix?

2009-01-10 Thread r
We need TK 8.5's themes. This will bring Tkinter out of the dark ages and into the 21st Century! And improve the shine of the Python base distro. Python could use a good boost right now! -- http://mail.python.org/mailman/listinfo/python-list

Re: State of the art: Tkinter, Tk 8.5, Tix?

2009-01-08 Thread Eric Brunel
On Wed, 07 Jan 2009 20:31:23 +0100, excord80 wrote: Does Python work with Tk 8.5? I'm manually installing my own Python 2.6.1 (separate from my system's Python 2.5.2), and am about to install my own Tcl/Tk 8.5 but am unsure how to make them talk to eachother. Should I install Tk f

Re: State of the art: Tkinter, Tk 8.5, Tix?

2009-01-07 Thread Benjamin Kaplan
On Wed, Jan 7, 2009 at 2:31 PM, excord80 wrote: > Does Python work with Tk 8.5? I'm manually installing my own Python > 2.6.1 (separate from my system's Python 2.5.2), and am about to > install my own Tcl/Tk 8.5 but am unsure how to make them talk to > eachother. Should I

Re: State of the art: Tkinter, Tk 8.5, Tix?

2009-01-07 Thread Roger
On Jan 7, 2:31 pm, excord80 wrote: > Does Python work with Tk 8.5? I'm manually installing my own Python > 2.6.1 (separate from my system's Python 2.5.2), and am about to > install my own Tcl/Tk 8.5 but am unsure how to make them talk to > eachother. Should I install Tk firs

State of the art: Tkinter, Tk 8.5, Tix?

2009-01-07 Thread excord80
Does Python work with Tk 8.5? I'm manually installing my own Python 2.6.1 (separate from my system's Python 2.5.2), and am about to install my own Tcl/Tk 8.5 but am unsure how to make them talk to eachother. Should I install Tk first? If I put Tk into my home directory (under "~/o

Re: Does PIL work with Tk 8.5?

2008-01-07 Thread Martin v. Löwis
> Tk itself has a stubs mechanism that allows libraries compiled against > earlier versions to be used with later versions. It's different than > Python in this respect. A pure-Tk library (such as Img or TkPNG) built > against Tk 8.4 would not require re-compilation to be used with 8.5. > Since PIL

Re: Does PIL work with Tk 8.5?

2008-01-07 Thread Kevin Walzer
Kevin Walzer wrote: > > Tk itself has a stubs mechanism that allows libraries compiled against > earlier versions to be used with later versions. It's different than > Python in this respect. A pure-Tk library (such as Img or TkPNG) built > against Tk 8.4 would not require re-compilation to be

Re: Does PIL work with Tk 8.5?

2008-01-07 Thread Kevin Walzer
Martin v. Löwis wrote: > OTOH, it's more likely that the PIL binaries you are using conflict with > your Tk installation - if the binaries were for Tk 8.4 (which isn't > quite clear to me whether that's indeed the case), then they can't work > with Tk 8.5, as

Re: Does PIL work with Tk 8.5?

2008-01-07 Thread Martin v. Löwis
> Since Python itself is the same version number (2.5.1), the only thing I > can find to account for the crash is the different version of Tk--could > this be making a difference, or am I doing something wrong? Yes, Tk 8.5 isn't quite compatible with existing Tkinter code; there h

Does PIL work with Tk 8.5?

2008-01-07 Thread Kevin Walzer
I'm using a build of Python 2.5.1 on OS X 10.5.1 that links to Tk 8.5. Trying to test PIL with this new build, Python barfs when trying to display an image in a Tkinter Label. Here is my sample code: --- from Tkinter import * import Image, ImageTk root = Tk() im = Image.open('/U

Re: TK 8.5

2008-01-01 Thread Martin v. Löwis
>> Hence, there is no need to talk about this very much. That >> Python "supports" Tk 8.5 is too minor to mention - I think >> even Python 2.4 supports Tk 8.5. > > In terms of building and linking Python to Tk 8.5, this is certainly true. > > However,

Re: TK 8.5

2008-01-01 Thread Kevin Walzer
Martin v. Löwis wrote: >> But I found nothing about Tk 8.5 ? > > Python is not tied to any specific Tk version; you can use > any Python release with any Tk version, most of the time. > > Hence, there is no need to talk about this very much. That > Python "sup

Re: TK 8.5

2008-01-01 Thread Martin v. Löwis
> But I found nothing about Tk 8.5 ? Python is not tied to any specific Tk version; you can use any Python release with any Tk version, most of the time. Hence, there is no need to talk about this very much. That Python "supports" Tk 8.5 is too minor to mention - I think even Python

Re: TK 8.5

2008-01-01 Thread Leon
> We are planing to use Tcl/Tk 8.5 for Python 2.6 and 3.0. The topic is > currently being discussed but nothing has been decided yet. Great news! I hope you'll decide to use Tcl/Tk 8.5 ! I'm sure I'm not the only one !!! On this page : http://www.python.org/dev/peps/pep-0361

Re: TK 8.5

2007-12-31 Thread Kevin Walzer
Christian Heimes wrote: > Leon wrote: > >> 2) Is it a way to use Tk 8.5 with the present version of Python (2.5) ? > > No, not yet. It may be possible to back port Tcl Tk 8.5 support from 2.6 > to 2.5 once we have finished the migration to 8.5. Actually, you can. I'm u

Re: TK 8.5

2007-12-31 Thread Christian Heimes
Leon wrote: > 1) Did you know if a future version of Python/Tkinter will use Tk 8.5 ? > And when ? We are planing to use Tcl/Tk 8.5 for Python 2.6 and 3.0. The topic is currently being discussed but nothing has been decided yet. > 2) Is it a way to use Tk 8.5 with the present version

Re: TK 8.5

2007-12-31 Thread marcpenninga
On 31 dec, 09:41, Leon <[EMAIL PROTECTED]> wrote: > 2) Is it a way to use Tk 8.5 with the present version of Python (2.5) ? > > Can you give me informations (or links, etc...) about this three > questions ? These links might help: http://tkinter.unpythonic.net/wik

TK 8.5

2007-12-31 Thread Leon
It would be great to have the same look with TkInter... 1) Did you know if a future version of Python/Tkinter will use Tk 8.5 ? And when ? 2) Is it a way to use Tk 8.5 with the present version of Python (2.5) ? 3) Or may be it's possible to already have a similar and good look with the pr

Re: Tk 8.5

2007-11-26 Thread James Matthews
I also cannot wait! On Nov 24, 2007 4:12 PM, Ron Provost <[EMAIL PROTECTED]> wrote: > Hello, > > According to the tk wiki, the final release of Tcl/Tk is just weeks away > (see http://wiki.tcl.tk/12753). Does anyone know if the Tk enhancements > will be in Python 2.6? Since I don't use tk but

Tk 8.5

2007-11-26 Thread Ron Provost
Hello, According to the tk wiki, the final release of Tcl/Tk is just weeks away (see http://wiki.tcl.tk/12753). Does anyone know if the Tk enhancements will be in Python 2.6? Since I don't use tk but I do use Python and Tkinter (and Tix) extensively, I'm excited about these long-awaited chang

Re: Build Python 2.5 against Tk 8.5

2007-10-16 Thread Kevin Walzer
Martin v. Löwis wrote: > > Can you please clarify what you mean by "stock Python installation"? > I just built Python 2.5.1 with Tk 8.5 on Debian unstable, and it works > fine. OK, that's good to know. I'm using the precompiled Mac OS X build of 2.5.1 from pytho

Re: Build Python 2.5 against Tk 8.5

2007-10-16 Thread Martin v. Löwis
> It's been a while, but when I've tried to run my Tkinter app against Tk > 8.5 with a stock Python installation, I get an error message saying that > Tk 8.4.x is required. Can you please clarify what you mean by "stock Python installation"? I just built Pytho

Re: Build Python 2.5 against Tk 8.5

2007-10-16 Thread Russell E. Owen
In article <[EMAIL PROTECTED]>, Kevin Walzer <[EMAIL PROTECTED]> wrote: > Martin v. Löwis wrote: > >> I'd like to experiment with Tk 8.5 (now in beta) in my Python > >> application, but Python 2.5 requires Tk 8.4.x. > > > > Why do you say that?

Re: Build Python 2.5 against Tk 8.5

2007-10-16 Thread Kevin Walzer
Martin v. Löwis wrote: >> I'd like to experiment with Tk 8.5 (now in beta) in my Python >> application, but Python 2.5 requires Tk 8.4.x. > > Why do you say that? AFAIK, that's not the case. It's been a while, but when I've tried to run my Tkinter a

Re: Build Python 2.5 against Tk 8.5

2007-10-16 Thread Martin v. Löwis
> I'd like to experiment with Tk 8.5 (now in beta) in my Python > application, but Python 2.5 requires Tk 8.4.x. Why do you say that? AFAIK, that's not the case. Regards, Martin -- http://mail.python.org/mailman/listinfo/python-list

Build Python 2.5 against Tk 8.5

2007-10-16 Thread Kevin Walzer
I'd like to experiment with Tk 8.5 (now in beta) in my Python application, but Python 2.5 requires Tk 8.4.x. What would I need to patch in the Python sources or build scripts to get it built against Tk 8.5? -- Kevin Walzer Code by Kevin http://www.codebykevin.com -- http://mail.pytho

Re: Tkinter / Tk 8.5

2007-09-27 Thread Kevin Walzer
Eric Brunel wrote: > On Thu, 27 Sep 2007 04:41:48 +0200, Scott David Daniels > <[EMAIL PROTECTED]> wrote: > >> Michal Bozon wrote: >>> Today has been released a first beta of Tk 8.5, including a Ttk >>> (tile) style engine, which makes possible the na

Re: Tkinter / Tk 8.5

2007-09-27 Thread Kevin Walzer
Michal Bozon wrote: > Today has been released a first beta of Tk 8.5, including a Ttk > (tile) style engine, which makes possible the native look > of widgets on MS > platform, without having to install any extension. > > http://wiki.tcl.tk/11075 > http://sourceforge.net/ma

Re: Tkinter / Tk 8.5

2007-09-27 Thread Eric Brunel
On Thu, 27 Sep 2007 04:41:48 +0200, Scott David Daniels <[EMAIL PROTECTED]> wrote: > Michal Bozon wrote: >> Today has been released a first beta of Tk 8.5, including a Ttk >> (tile) style engine, which makes possible the native look >> of widgets on MS platform, wi

Re: Tkinter / Tk 8.5

2007-09-26 Thread Scott David Daniels
Michal Bozon wrote: > Today has been released a first beta of Tk 8.5, including a Ttk > (tile) style engine, which makes possible the native look > of widgets on MS platform, without having to install any extension. > > Is there a chance it will be included in 2.5.x, 2.6 or 3.0 ?

Tkinter / Tk 8.5

2007-09-26 Thread Michal Bozon
Today has been released a first beta of Tk 8.5, including a Ttk (tile) style engine, which makes possible the native look of widgets on MS platform, without having to install any extension. http://wiki.tcl.tk/11075 http://sourceforge.net/mailarchive/message.php?msg_name=1190813039.46fa5d6f6a06b

Re: Tcl-tk 8.5?

2007-05-04 Thread Kevin Walzer
James Stroud wrote: > Méta-MCI wrote: >> Any plan to integrate Tcl 8.5 in standard Python? >> > > Better would be to outegrate it and instead use another gui kit as the > standard. > This statement puzzles me, as you are something of a Tkinter expert (you have helped me with some Tk issues). W

Re: Tcl-tk 8.5?

2007-05-02 Thread Martin v. Löwis
> Any plan to integrate Tcl 8.5 in standard Python? Sure: once Tcl 8.5 is released, it will be integrated with the next major version of Python. That might be Python 2.6, 3.0, 3.1,... depending on how long it takes to release Tcl 8.5. In any case, "integration" is necessary only for binary releas

Re: Tcl-tk 8.5?

2007-05-02 Thread Russell E. Owen
In article <[EMAIL PROTECTED]>, "Méta-MCI" <[EMAIL PROTECTED]> wrote: > Hi! > > > See http://wiki.tcl.tk/10630 > > Any plan to integrate Tcl 8.5 in standard Python? I'm curious about the plans, also. But I can say this much...Tcl/Tk 8.5 is st

Re: Tcl-tk 8.5?

2007-05-02 Thread James Stroud
Méta-MCI wrote: > Hi! > > > See http://wiki.tcl.tk/10630 > > Any plan to integrate Tcl 8.5 in standard Python? > > > > @+ > > MCI > Better would be to outegrate it and instead use another gui kit as the standard. James -- http://mail.python.org/mailman/listinfo/python-list

Tcl-tk 8.5?

2007-05-01 Thread M�ta-MCI
Hi! See http://wiki.tcl.tk/10630 Any plan to integrate Tcl 8.5 in standard Python? @+ MCI -- http://mail.python.org/mailman/listinfo/python-list