Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
122 views

Popup Dialog in Tkinter/Python

I need to add a popup dialog box on my GUI. So, when ever I hover my mouse over a label, it should be able to show a popup( Like the type we get while hovering over a file in windows). It should also ...
3
votes
2answers
802 views

Fresh tutorial on Tkinter and ttk (Python 3)

Where can I find the most modern tutorial that teaches tkinter together with ttk? tkinter seems the only way to go in Python 3 (don't suggest Python 2), and ttk gave me hope for good-looking GUI.
3
votes
1answer
381 views

Python 2.7/Windows: How to control position of Tkinter common dialogs?

Python 2.7 under Windows: How can we control the position of Tkinter's common dialogs? Here's what we've discovered: Certain common dialogs always open up relative to their parent window Certain ...
2
votes
1answer
173 views

ttk treeview: selected color

The selected row of my ttk treeview shows as a dark blue background with the text white. If I set the color of the row with a tag, for example: self.tree.item(item, tags=('oddrow')) and configure ...
2
votes
2answers
778 views

How to create a tree view with checkboxes in Python

I've been using Tkinter and Tix to write a small program. I'm at a point where I need a tree view with checkboxes (checkbuttons) so I can select items from the tree view. Is there an easy way to do ...
2
votes
2answers
500 views

How do I make my ttk widgets look modern?

I am having a problem with tkinter.ttk on mac. I am using macports and python3.1. When I try to use tkinter.ttk I get very old looking gui elements. eg: I get this Instead of this: The code I ...
2
votes
3answers
374 views

Python/Tkinter: Recommendations on when to use pack vs. grid layouts?

Are there any best practice tips regarding when one should use pack vs. grid for their layouts? From what I've been reading via google, the concencus seems to be that grid can handle any pack ...
2
votes
1answer
1k views

Python/Tkinter: Possible to set the min/max height or width of a Tkinter or ttk Frame?

The size of Tkinter windows can be controlled via the following methods: .minsize() .maxsize() .resizable() Are there equivalent ways to control the size of Tkinter or ttk Frames? @Bryan: I ...
2
votes
2answers
810 views

Python 2.7/Windows: tkinter/ttk widgets with transparent backgrounds, ttk frame background colors

Is it possible to configure tkinter or ttk widgets (Label, Entry, Text) with a transparent background so that they can be placed in containers with custom background colors or on top of canvas ...
2
votes
1answer
640 views

Python 2.7: Themed “common dialog” tkinter interfaces via Ttk?

Python 2.7 (32-bit) Windows: We're experimenting with Python 2.7's support for themed Tkinter (ttk) for simple GUI's and have come away very impressed!! The one area where the new theme support seems ...
1
vote
0answers
53 views

Python : Display a Dict of Dicts using a UI Tree for the keys and any other widget for the values

I have three dicts, one providing a list of all the available options, and two providing a subset of choices (one set for defaults and one for user choices). I get the three dicts using python's built ...
1
vote
1answer
44 views

python ttk: force screen update

How can I force ttk to update the screen? I'm running a long loop and would like to display some interim results, but ttk waits until it finishes the loop to update the screen. I tried inserting ...
1
vote
1answer
158 views

ttk treeview: alternate row colors

How can I set a style for treeview widgets so that alternate rows have different color backgrounds, for example, rows 1,3,5 have white backgrounds and rows 2,4,6 have light blue-grey backgrounds? I'd ...
1
vote
2answers
402 views

python, tkinter: how to select an item in ttk.Combobox

I'm using Python 3.2.1 in Arch Linux x86_64. This one is really driving me crazy: I just want to have a default, preselected value for a ttk.Combobox as soon as I grid it. This is my code: from ...
1
vote
1answer
196 views

can't set background color ttk python os x using styles

With this code fragment, I would expect the label to have a background color red. def createWidgets(self): style = ttk.Style() style.configure("Red.TLabel", foreground="green", ...
1
vote
1answer
51 views

Tkinter button appears below other objects

I am very sorry if this is a horribly newbie question, but again, I'm very new to tkinter... When I use the place manager to put a button on the frame, it appears on top of the listbox, but when it ...
1
vote
3answers
439 views

python: complete tkinter reference?

Can somebody point me to a complete online reference for Python's tkinter module? Of course I've tried to find one by myself, but for some reason I can't, maybe I'm using the wrong keywords? I'm not ...
1
vote
1answer
115 views

How to enable the use of the gui resources on mac

I am having a problem with tkinter.ttk on mac. I am using macports and python3.1. When I try to use tkinter.ttk I get very old looking gui elements. eg: I get this Instead of this: The code I ...
1
vote
1answer
446 views

Python/Tkinter: Using the new ttk.Notebook widget (custom font, trapping tab focus/mouseover)

I'm using the new ttk.Notebook widget available in Python 2.7 and Python 3.1. I'm struggling with the following tasks: How to change the font associated with notebook tab captions. I want to use a ...
1
vote
1answer
392 views

Python/Tkinter/Ttk: on-value-change type of event for widgets or use .trace_variable() technique?

Is there an on-value-change type of event for data input widgets like Entry, Text, Spinner, Checkbutton, Radiobutton? By on-value-change, I mean the ability to detect when the value of a widget has ...
1
vote
1answer
164 views

High(er) level frameworks that wrap Tkinter/ttk

Curious if there are any higher level frameworks that attempt to wrap Tkinter? For example, wxPython is wrapped by the Dabo framework (http://dabodev.com/) and PythonCard. Motivation: We've recently ...
1
vote
1answer
465 views

Python 2.7/Windows: Create resizable, multiline tkinter/ttk labels with word wrap

Is it possible to create a multi-line label with word wrap that resizes in sync with the width of its parent? In other words the wordwrap behavior of Notepad as you change the width of the NotePad ...
1
vote
1answer
788 views

Python 2.7/Windows: ttk combobox dropdown shows up underneath topmost root window

I'm experimenting with the new ttk Tile enhancements that ship with Python 2.7. Windows 7: The code below demonstrates how the combobox dropdown shows up BEHIND our root window when the root window ...
1
vote
3answers
462 views

Frame resizing issue in Tk/ttk python

I'm creating a GUI using Tkinter/ttk in Python 2.7, and I'm having an issue where a Frame will resize itself once a widget is placed inside of it. I am new to Python and haven't used Tkinter before. ...
1
vote
2answers
466 views

Using the ttk (tk 8.5) Notebook widget effectively (scrolling of tabs)

I'm working on a project using Tkinter and Python. In order to have native theming and to take advantage of the new widgets I'm using ttk in Python 2.6. My problem is how to allow the user to scroll ...
1
vote
1answer
273 views

Python ttk.Button -command, runs without button being pressed

I'm making a small script in python with ttk and I have a problem where a function runs where it shouldn't. The button code looks as follows: btReload = ttk.Button(treeBottomUI, text="Reload", ...
1
vote
2answers
267 views

How to change the font and font size in ttk::button (themed widgets)?

How do you change the font and font size in the themed button widget (ttk::button)? ttk::button .x.buttonTEST -text "TEST" -font ?? # the -font option is not valid with ttk::button
0
votes
0answers
14 views

how to I make the ttk processbar keep increasing to the maximum lenght before calling the stop method

here's is my code from Tkinter import * import ttk root = Tk() progressbar = ttk.Progressbar(orient=HORIZONTAL, length=200, mode='determinate') progressbar.pack(side="bottom") progressbar.start() ...
0
votes
1answer
54 views

Change padding color of Label widget in ttk / python

I am trying to display an image with ttk/tkinter in python. The image has a white border, and I want to display this image on a larger white background - so it has lots of white space around. For ...
0
votes
2answers
35 views

Conditional disabling of widget

In the following code, I have been trying to disable the entry1 widget every time I select 1 in the combobox and disable entry2 when i select 2 in combobox. this is my code: from Tkinter import * ...
0
votes
0answers
41 views

Python3 ttk tree widget bindings

I have a program with a treeview. When a tree item is double clicked I bind a function to open an Entry field. What is the best way of getting the Entry field value? I can't help but think there is a ...
0
votes
1answer
124 views

python ttk treeview: how to select and set focus on a row?

I have a ttk.Treeview widget with some rows of data. How do I set the focus to and select (highlight) a specified item? tree.focus_set() does nothing tree.selection_set(0) complains that: Item ...
0
votes
0answers
77 views

ttk treeview grid lines?

I would like to have both horizontal and vertical grid lines in my treeview widget between the items. I have searched on this but I haven't found anything specific for a ttk widget. Is there a style I ...
0
votes
0answers
44 views

py2app os x 10.7 ttk app starts X11 and doesn't look aqua

I have a fairly simple python ttk app developed on my mac. I use python from macports. When I run the script it works as expected, using aqua themed widgets. But when I turn it into an app with ...
0
votes
1answer
242 views

python3 - ttk treeview… extract values from specific column into a function

I'm very new to programming and I just can't figure out how to make this work for me... I'm just trying to figure out how to extract the values from the treeview's col4 into a function that would ...
0
votes
1answer
76 views

TTK error in programms with LTK

After upgrade of the system from Ubuntu 10.10 to Ubuntu 11.04, have a problem with LTK. Programs with LTK load successful, but after loading the function I had an error "Can't find TTK package". As I ...
0
votes
1answer
191 views

a downloading progress bar in ttk

I want to show a progress bar while downloading a file from the web using the urllib.urlretrive method. So how do i use the ttk.Progressbar method to do this task, i read the documentation but i ...
0
votes
1answer
323 views

Python ttk.Progressbar

I am having trouble with getting the progressbar to start. I have scoured the internet for answers, and have tried multiple ways for hours, but have been rewarded with errors such as: TypeError: ...
0
votes
2answers
714 views

ttk tkinter python3 multiple frames/windows

The following application I have created is used to demonstrate multiple windows in tkinter. The main problem is that none of the Entry controls, neither in the bmi-calculator or the converter, accept ...
0
votes
2answers
933 views

tkinter combobox selection highlighting (python 3)

i wrote a small farad converter in python to use as a "learn GUI programming" kinda thing. anyhow, it works great, looks fine-ish. only problem is i can't seem to figure out how to control this ...
0
votes
1answer
144 views

Python/Tkinter: pack equivalent of grid_remove(), eg. pack_remove()?

Is there a pack equivalent of the grid_remove() method where a widget's original pack() settings are restored on a re-pack()? Use case: When I show a packed widget that has been hidden via ...
0
votes
1answer
231 views

Possible to create single pixel wide horizontal/vertical ttk.Separator's?

Is there a way to create single pixel wide horizontal and vertical ttk.Separator()'s? Python 2.7/Windows: When I magnify the ttk Separators they are built as 2 parallel lines - one line gray and one ...
0
votes
2answers
311 views

tkinter python: How do remove the input cursor from a ttk.Entry?

I have an instance of ttk.Entry. The user clicks it. I have the event bound. Depending on some condition, I either want the input cursor to appear and allow typing or I essentially want to ignore the ...
0
votes
1answer
415 views

Python/Tkinter: Listbox separators, disabled items, keyboard navigation?

I'm studying the Tkinter Listbox widget and have been unable to find solutions for the following functionality: How can I create non-selectable horizontal separator items, eg. separators equivalent ...
0
votes
1answer
477 views

Python 2.7/Windows resizable ttk progressbar?

I'm experimenting with Python 2.7's new Tkinter Tile support (ttk). Is there a way to make the ttk.Progressbar() control auto-resize in proportion to its parent container? In reading the documentation ...
0
votes
2answers
235 views

How to create a status line with ttk?

How do you create your status line at the bottom of your window? An inactive entry does not look very nice. What other options are there? Is possible to integrate a progress bar which is visible only ...
0
votes
1answer
203 views

ttk.Button returns None

I am trying to use the invoke method of a ttk.Button, as shown at TkDocs (look at "The Command Callback"), but I keep getting this error: AttributeError: 'NoneType' object has no attribute ...