[PyGTK] forbid focus of TreeView columns

F

Franck Pommereau

Hi all,

I'm building a PyGTK interface in which I would like that no widget
would be able to get the focus (and so to be activated by pressing the
Return key). For this purpose, for each widget, I do:

widget.set_property("can-focus", gtk.FALSE)

My problem is a TreeView which has a clickable column, it get the
default focus and I did not find how to forbid that.

I tried:

def focus (widget, *args) :
try :
widget.set_property("can-focus", gtk.FALSE)
except :
pass
try :
widget.set_property("can-default", gtk.FALSE)
except :
pass
win.forall(focus)

where win is my application window (I also tried on the TreeView) but it
doesn't work. :-(
I also tried with widget.unset_flags, same result. :-((

If I choose another widget and give it the default focus
(widget.grab_default and widget.grab_focus) it's OK until I click on the
column which then keeps the focus. :-(((

I'm sure I could capture the Return key but I don't want to have this
dashed line around the focused widget...

I think that this column has somewhere an associated widget but I could
not find it anywhere (and neither could win.forall).

I'm using PyGTK-2.0.0 and cannot use another version.

Thanks in advance for any idea!
Franck
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,535
Members
45,008
Latest member
obedient dusk

Latest Threads

Top