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 click and not have the input cursor appear in the ttk.Entry. I don't want to have to use the readonly or disabled states.

Manipulating focus has not effect.

link|improve this question
1  
Why don't you "want to have to use the readonly or disabled states"? Knowing this may help us give a better answer. – Steven Rumbalski Nov 17 '10 at 15:35
They change the appearance of the widget - which is not acceptable for my purposes :-( – sjjg Nov 17 '10 at 15:37
2  
@sjjg: Entry.config(state=DISABLED) doesn't have to change the appearance of your widget. Just set the colors of disabledbackground and disabledforground to match the colors of background and forground. – Steven Rumbalski Nov 17 '10 at 15:53
By “cursor”, do you mean the marker used to indicate where insertion will happen or the pointer that is coupled to the mouse? – Donal Fellows Nov 17 '10 at 16:26
@Donal: from context I believe he means the former. – Steven Rumbalski Nov 17 '10 at 16:30
show 1 more comment
feedback

2 Answers

Here is a class that does what you ask.

class MyEntry(Entry):

    def disable(self):
        self.__old_insertontime = self.cget('insertontime')
        self.config(insertontime=0)
        self.bind('<Key>', lambda e: 'break')

    def enable(self):
        self.unbind('<Key>')
        if self.cget('insertontime') == 0:
            self.config(insertontime=self.__old_insertontime)

However, since your real concern is that you don't want a disabled Entry to look disabled, just set the colors of disabledbackground and disabledforground to match the colors of background and forground. If you need this rolled into a class, do it like this:

class MyEntry(Entry):
    def __init__(self, *args, **kwds):
        Entry.__init__(self, *args, **kwds)
        self.config(disabledbackground=self.cget('background'))
        self.config(disabledforeground=self.cget('foreground'))

And use it like this:

e = MyEntry(root)
e.config(state=DISABLED) # or state=NORMAL

Note. Be careful when reinventing gui conventions. Having something that looks enabled act disabled can be confusing for users. So don't change this unless you have good reason.

link|improve this answer
I'm using tkinter.ttk.Entry rather than tkinter.Entry, so the solution is not exactly this. You were correct with modifying the disabled state of the widget though - thanks! – sjjg Nov 17 '10 at 22:07
I'm investigating UI issues, so being able to play with them is very useful. – sjjg Nov 17 '10 at 22:10
feedback
up vote 0 down vote accepted

After trawling the ttk documentation, this does the trick:

    ttk.Style().map("TEntry",
                    foreground=[('disabled', 'black')],
                    fieldbackground=[('disabled','white')]
                    )
    widget['state'] = 'disabled'
link|improve this answer
Which is documented quite nicely here: docs.python.org/py3k/library/tkinter.ttk.html – sjjg Nov 17 '10 at 22:14
feedback

Your Answer

 
or
required, but never shown

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