[Tkinter-discuss] Change ttk.Notebook tab's font or font height?

2010-12-14 Thread python
Is there a way to change the ttk.Notebook tab's font or font height? Use case: I would like to use a named font object for my tab captions so a user can change the height of the named font and have the font sizes of all the widgets on a page increase in size (including the ttk.Notebook tab caption

[Tkinter-discuss] Ideas for user interface to allow users to change order of ttk.Notebook pages/tabs?

2010-12-14 Thread python
I'm using the ttk.Notebook widget to manage a list of open files. I create and destroy tabs as a user opens and closes files. I would like to offer my users a way to change the order of the notebook tabs. Ideally I would like my users to be able to drag and drop tabs like they do in Firefox, but I

Re: [Tkinter-discuss] Border color ttk.Entry

2010-12-14 Thread Michael Lange
Hi, Thus spoketh craf unto us on Mon, 13 Dec 2010 13:05:07 -0300: > Hi. > > There any way to change the border color of a control ttk.Entry through > options or style? > if you mean the 1- or 2-pixel border used to (typically) draw the "sunken" "3D" effect, then I don't think so. I believe t

Re: [Tkinter-discuss] [solved] ssh login through Tkinter - problem on windows

2010-12-14 Thread Michael Lange
Thus spoketh Michael Lange unto us on Tue, 14 Dec 2010 17:33:15 +0100: Ok, I can confirm now it was a problem with the ssh install; I tried cygwin's ssh as replacement for Copssh, which then complained "unable to create directory /home/klappnase/.ssh" , obviously because there was no /home/klapp

Re: [Tkinter-discuss] ssh login through Tkinter - problem on windows

2010-12-14 Thread Michael Lange
Hi, Thus spoketh pyt...@bdurham.com unto us on Tue, 14 Dec 2010 09:53:14 -0500: > Michael, > > > pipe = subprocess.Popen(args, stdout=subprocess.PIPE, > > stderr=subprocess.STDOUT, shell=False) > > What happens when you try shell=True? > > Also, is there a way to run ssh unbuffered? > > What

Re: [Tkinter-discuss] ssh login through Tkinter - problem on windows

2010-12-14 Thread python
Michael, > pipe = subprocess.Popen(args, stdout=subprocess.PIPE, > stderr=subprocess.STDOUT, shell=False) What happens when you try shell=True? Also, is there a way to run ssh unbuffered? What happens when you exit root.mainloop()? Can you try a root.after( 1000, root.quit ) to see if your exa

[Tkinter-discuss] ssh login through Tkinter - problem on windows

2010-12-14 Thread Michael Lange
Hi, I am writing a small Tkinter app that collects information about incoming and outgoing phone calls from my router and displays them in a Tkinter gui. The point is that I want to do a passwordless login via ssh to be able to see the list of phone calls without having to log into the router. Th