Ttk is the themed widget set for the Tk toolkit.
0
votes
1answer
27 views
Python 2.6 -> Python 3.1 (for using ttk)
I want to use ttk as part of tkinter but I had Python 2.6 on my Mac. Therefore I went and installed Python 3.1, which has ttk come with it, and it did not overwrite the previous version. Therefore I ...
1
vote
1answer
26 views
How to get a value for “foreground” in tkinter/ttk python?
I have a label object, that I am going to be changing the background colour of, and I would like to have a way to check what the background colour is at a given time. For example:
root=Tk()
...
0
votes
2answers
52 views
When importing modules written with tkinter and ttk, stuff doesn't work
I'm new to programming, Python, this website, and actually using these kinds of websites in general, so hear me out.
I've been writing a module for a larger program using the tkinter module and ttk ...
1
vote
1answer
71 views
Python tkinter with ttk calendar
I am using this code to create a simple calendar on my Tkinter. When i put a calendar on my main root window, the calendar appear just fine. So, i decided to put another button that will create a ...
1
vote
1answer
60 views
Progressbar (ttk.Progressbar) with python in tkinter not showing
Using the ttk.Progressbar in Python (in a tkinter GUI), I'm trying to have a progressbar appear when I press a button. Clicking the "Analyse" button on the gui calls the function analyze in the ...
1
vote
2answers
80 views
Python: How to get progressbar start() info from one window (class) to other
There is a main window with menu and the progressbar. A correspondence window with OK button opens upon menu command and the OK button starts the process (here: 3 sec. sleep).
The correspondence ...
0
votes
2answers
57 views
Python ttk progress bar appears after process, why?
I want to create a large text upon Tkinter menu command and provide visual support by a progress bar. Altough the progress bar is meant to start before the subsequent time-consuming loop, the progress ...
0
votes
2answers
30 views
Real-time Tkinter/ttk Entry widget update: thread+queue or .after(1)?
I have a Tkinter/ttk app that analyzes packets arriving every 10-25 ms. My present implementation uses a thread that updates 30 StringVars after every socket read, then calls update_idletasks() to ...
0
votes
1answer
33 views
Changing ttk widget text color
I've searched all over, but have yet to find a simple example showing how to change a minor element of a ttk widget style and applying it dynamically (after widget creation).
I have some ttk ...
0
votes
1answer
39 views
Global name error
I am still pretty new to Python, so I'm sorry if my question is trivial or even stupid. I am trying to build a little module that reacts on a callback of a Button (which isn't in the code). The ...
1
vote
3answers
60 views
Python-Tkinter, for-loop to create pictured button
I'm still quiet new to programming, so maybe my question in pretty easy or even stupid. As said in the title I'm trying to programm a for loop, which creates a pictured button widget for each picuture ...
0
votes
1answer
38 views
Can ttk radiobuttons be made to have style Toolbutton by default?
I can set Toolbutton style for individual radiobuttons:
#!/bin/sh
# \
exec /usr/bin/wish "$0" "$@"
set X11 /usr/X11/include/X11/bitmaps
image create bitmap LeftImage -file "$X11/left_ptr"
image ...
2
votes
1answer
42 views
Set maximum length of data in ttk.entry and limit to interger only
I am wondering how you can set the maximum amount of characters allowed into a TTK entry field. I also want to limit the entry to type integer only, seem to not be finding much online. Anyways here is ...
1
vote
1answer
170 views
Python tkinter.ttk combobox throws exception on quit
In my Python 3.3 code I use some comboboxes from the ttk library, and they function fine, but if I use any of them, I got an exception when I close the window with the X button. This is an example:
...
0
votes
2answers
68 views
Class Variable Retrieval in Python
This is a GUI I’ve been writing for a script I already have working. What I’m struggling with here is retrieving the information in the textboxes.
Under the definition generate I am able to pop a ...
-1
votes
1answer
54 views
Tkinter bad child window
I have problems with child window:
If i start only child() the fonts are ok
If i start main() and than go in child() the fonts are BAD???
MANUALS:
1.Click exit on "child"
2.Click button on main and ...
0
votes
1answer
52 views
Tk basic label placement
Why, in this really basic code snippet, the data label (lb_data) is not appearing in its parent widget (fr_body), and instead appears in fr_header?
(The heights, widths and reliefs are just there to ...
0
votes
0answers
35 views
How can i style tkSimpleDialog's
I'm tying to learn Tkinter and ttk. And I want to change the style of buttons of tkSimpleDialog.askstring()
how can i do that?
0
votes
1answer
77 views
python ttk.Entry how to center the input
Here is a screenshot of a program I am writing using Python Tkinter. I use ttk.Entry widget to get the user input.
I would like to know how to center the input in the Entry (as you can see, the ...
2
votes
1answer
182 views
Horizontal scrolling won't activate for ttk Treeview widget
I'm using the ttk Treeview widget to implement a folder/path selection dialog. It's all working as expected except that my horizontal scrollbar won't activate. No matter how wide the folder path ...
0
votes
1answer
140 views
Python/ttk/tKinter - getting the value of a Checkbox
Following the TkDocs Tutorial (http://www.tkdocs.com/tutorial/widgets.html#checkbutton) I am trying to set up a check box, but I can't follow exactly what I should be doing to 'get' the toggled value. ...
0
votes
1answer
140 views
Python/tKinter/ttk - passing an object on button click
TOP LEVEL EDIT: this question has in principle been answered in the original thread - however, there are some fundamental questions that I would like to learn more about. Please don't bust a gut ...
0
votes
1answer
114 views
Python/ttk/tKinter - passing an argument with a button click func?
I'm trying to pass an argument to a button click func and encountering an issues.
In short, I am trying to get a button press to pop up out the askColor() method, and return that colour value as ...
2
votes
2answers
201 views
Finding the currently selected tab of Ttk Notebook
I have a Ttk Notebook widget containing 8 Frames - so, 8 tabs. Each frame contains a Text widget. I have a button outside the Notebook widget, and I want to insert text into the current tabs Text ...
1
vote
1answer
287 views
Python & ttk Using labelFrames to clean up a frame
I'm trying to build a basic GUI using ttk / Tkinter.
I have a plotted out a basic GUI that has the right basic components, but when I try and prettify it / space it out, I'm reach my limit of ...
1
vote
1answer
121 views
Progressbar and combinations in Python
I am using itertools.combinations module to find a large number of combinations. While my program finds all its combinations (a lot of them) it checks for sum of every combination to be some number ...
0
votes
1answer
128 views
How to change ttk.progressBar color in python
Does anyone know how I can change the color of my ttk.progressBar? It now shows a green color, and I would love to have it blue.
import ttk
self.progressBar = ttk.Progressbar(frame3, length=560, ...
1
vote
1answer
124 views
tkinter ttk Entry widget -disabledforeground
I was trying to change the color of the words in my ttk.Entr widget when I set the state to disabled, I looked up the manual, there's an option called disabledforeground, so I wrote a test snippet as ...
-2
votes
1answer
95 views
what's the comfortable practice in python for simple ui? ttk? [closed]
Gui in python is always disappointing. The built-in tkinter is forbidden ugly. And when you go to wxpython and Qt4 for a little better looking, extra workload and dist issue are introduced, pissed off ...
1
vote
0answers
573 views
Using ttk.Treeview, how can I get horizontal scrolling to work as expected?
Using this Python script, which is my first attempt to learn how ttk.Treeview works (the extra copy of autoscroll is just to split the horizontal and vertical callbacks):
import Tkinter as tk
import ...
1
vote
1answer
273 views
changing colour of ttk.Progressbar elements in the xpnative theme - python
I'm using python 2.7 and TK to make a gui which accesses text files and uses data in them to do many things, but the one relevant here is sending a gchat message.
Currently, I have everything working, ...
4
votes
2answers
430 views
Expandable/Collapsible frame in python, tkinter
Does anyone know if there is already a widget/class to handle expanding/contracting a frame based on a toggled button (checkbutton) in tkinter/ttk?
This question stems from my attempt to clean up a ...
2
votes
2answers
409 views
Tkinter and ttk python2.7
i found this code online and i wanted to try it out because im trying to figure out how to have my label to change while i type things into my messagebox. I tried the getmethod but i have been ...
2
votes
2answers
362 views
Two tabs using ttk notebook, but separate functions for the two?
I current am making a GUI using tk, I have implemented a ttk notebook to have two separate tabs, each of these tabs hold data but call the same functions to interact with this data, is that a sane way ...
1
vote
1answer
825 views
Python 2.7: Tkinter/ttk Linked ComboBoxes
I've made a simple GUI using a GUI editor called PAGE. It contains two Tkinter.ttk combo boxes. My first combo box gets its values as column names from a connected sqlite database table. When I choose ...
0
votes
1answer
51 views
Binding a twisted matrix remote call to a ttk button results in the remote call running on client launch
Im using python and twisted to write a snmp management program, part of it requires some buttons on the client side to be bound to a remote snmp set method, this is being handled with a perspective ...
0
votes
1answer
97 views
Tkinter.Entry() passes up/down keys to trace… Is there a way to do this with ttk.Entry()?
Using this code fragment, up and down keys (u"uf700", u"uf701") pass through to the trace:
import Tkinter as tk
import ttk
def tracesv(var):
print var
class foo()
def __init__(self, ...
1
vote
1answer
417 views
ttk: how to make a frame look like a labelframe?
Python ttk gui creating is easy and has mostly native look and feel (win7). I am having a slight problem, though:
I would like to have a frame that looks like ttk.LabelFrame but without label. Just ...
1
vote
1answer
204 views
ttk.Entry not behaving the same way that tk.Entry does
I'm switching over a small app (Python 2.7.3/32 on Win 7/64) to use ttk and I'm having trouble making ttk.Entry work the way tk.Entry does; ttk.Entry isn't updating the displayed entry box when I set ...
0
votes
1answer
210 views
What is ttk's tkinter default color style for MAC OSX
I'm looking for either the exact colour name for ttk frames or for a way to dynamically retrieve that information. My problem is that the tkinter
root = tk()
and
button = ttk.Button()
give me ...
1
vote
1answer
165 views
tkinter scale with two sliders?
Does anyone know if it is possible to have a single scale widget with two "sliders" in tkinter (python)? Or anyway to fake it?
Such as (edited with gimp):
I am thinking placing one scale on top of ...
2
votes
1answer
362 views
Why does my ttk.Treeview click handler return the wrong item on tree.focus() (off by one)?
I have a simple script using a ttk.Treeview instance that I'm populating with the contents of a file system tree. I want to perform a certain operation when (leaf) items are clicked so I configured a ...
2
votes
1answer
200 views
Python3: How to dynamically resize button text in tkinter/ttk?
I want to know how to arrange for the text on a ttk widget (a label or button, say) to resize automatically.
Changing the size of the text is easy, it is just a matter of changing the font in the ...
1
vote
1answer
193 views
Can you retrieve/set the ttk.Treeview widget's margin value?
import Tkinter, ttk
root = Tkinter.Tk()
tree_view = ttk.Treeview(root)
tree_view.pack()
test_id = tree_view.insert('', 0, text = "test")
root.mainloop()
This displays a window:
Notice the margin ...
0
votes
0answers
150 views
ttk treeview tag_has
I am working on a project using Python with Tkinter as a GUI. My design makes use of the ttk Treeview widget. One of my functions calls the included tree view method 'tag_has' (documented here: ...
2
votes
1answer
816 views
How can I display an image in Python 3 using tkinter/ttk?
The nub of the matter is, what am I doing wrong in the following code snippet?
from tkinter import *
from tkinter.ttk import *
root = Tk()
myButton = Button(root)
myImage = ...
0
votes
2answers
233 views
Get values from Entry widgets and create list of variables Tkinter
I have the following code which works and gives me each value. I can't seem to create a list of all the values once they are collected. I'm currently getting one value at a time..! I've tried the two ...
0
votes
2answers
132 views
Callback and n Entry box widgets not functioning Tkinter
In the code below I need to return all values returned (but for each row separately) but I have tried lambda and failed and I'm not getting anywhere AGAIN.
I also have the callback definition where ...
0
votes
1answer
267 views
Changing textvariable for single OptionMenu in loop Tkinter
The following code shows my two option menus and the callback function 'VarMenu'. This all works all well and good except as I created several of the same option menus in the loop for each row. When ...
0
votes
2answers
178 views
Determining row number of chosen OptionMenu but possibility to create within same variable - Tkinter
I have the following code where I ask the user to open a text which can include several rows within a section of data.
I then require for each row an OptionMenu to be created. My problem is that I ...

