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 strange highlighting that comes up on my combobox selections. i've googled over and over, but can't seem to find anything that works. (i did use a ttk "style", but it only changed the colors of the combobox background, entries, etc., not this highlighting) (also tried changing openbox/gtk themes...)

what the farad

what's seen there on the text "microfarads (uF)".

it'd be fine if it highlighted the entire box, but i'd rather have it gone completely.

can anyone tell me how to control that?

# what the farad?
# thomas kirkpatrick (jtkiv)

from tkinter import *
from tkinter import ttk

# ze la programma.
def conversion(*args):
# this is the numerical value
inV = float(inValue.get())
# these two are the unit (farads, microfarads, etc.) values
inU = inUnitsValue.current()
outU = outUnitsValue.current()

# "mltplr" is multiplied times inValue (inV)
if inU == outU:
    mltplr = 1
else:
    mltplr = 10**((outU - inU)*3)
outValue.set(inV*mltplr)

# start of GUI code
root = Tk()
root.title("What the Farad?")

# frame
mainFrame = ttk.Frame(root, width="364", padding="4 4 8 8")
mainFrame.grid(column=0, row=0)

# input entry
inValue = StringVar()
inValueEntry = ttk.Entry(mainFrame, width="20", justify="right", textvariable=inValue)
inValueEntry.grid(column=1, row=1, sticky="W")

# input unit combobox
inUnitsValue = ttk.Combobox(mainFrame)
inUnitsValue['values'] = ('kilofarads (kF)', 'farads (F)', 'millifarads (mF)', 'microfarads (uF)', 'nanofarads (nF)', 'picofarads (pF)')
inUnitsValue.grid(column=2, row=1, sticky="e")
inUnitsValue.state(['readonly'])
inUnitsValue.bind('<<ComboboxSelected>>', conversion)

# result label
outValue = StringVar()
resultLabel = ttk.Label(mainFrame, textvariable=outValue)
resultLabel.grid(column=1, row=2, sticky="e")

# output unit combobox
outUnitsValue = ttk.Combobox(mainFrame)
outUnitsValue['values'] = ('kilofarads (kF)', 'farads (F)', 'millifarads (mF)', 'microfarads (uF)', 'nanofarads (nF)', 'picofarads (pF)')
outUnitsValue.grid(column=2, row=2, sticky="e")
outUnitsValue.state(['readonly'])
outUnitsValue.bind('<<ComboboxSelected>>', conversion)

# padding for widgets
for child in mainFrame.winfo_children(): child.grid_configure(padx=4, pady=4)

# focus
inValueEntry.focus()

# bind keys to convert (auto-update, no button)
root.bind('<KeyRelease>', conversion)

root.mainloop()

any other suggestions on the code would be appreciated also.

link|improve this question
feedback

2 Answers

You can use the command inUnitsValue.selection_clear() to clear the selection whenever you want.

link|improve this answer
i dont want to clear it, just clear the highlighting if you know what i mean. see how in this pic: i.imgur.com/SX1S2.png , the combobox selection is gray (the "nanofarads (nF)" to the right of the "47" in the entry box)? thats the way i want it. it will switch randomly to that. – jtkiv Mar 8 '11 at 18:56
@jtkiv: when I say 'clear' in this context I mean it removes the selection highlighting. The value stays the same. – Bryan Oakley Mar 10 '11 at 17:29
ah. works great! anyway to clear all selection? (program is bigger now) – jtkiv Mar 10 '11 at 22:02
feedback

Could it be that with a readonly combobox the problem is not the selection but the relatively strong focus-indicator?

With this workarround you lose the ability to control your program by keyboard. To do it right you would have to change the style of the focus-highlighting.

from tkinter import *
from ttk import *

def defocus(event):
    event.widget.master.focus_set()

root = Tk()

comboBox = Combobox(root, state="readonly", values=("a", "b", "c"))
comboBox.grid()
comboBox.set("a")
comboBox.bind("<FocusIn>", defocus)

mainloop()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.