i want to t know the way to know when text has been changed in a text view widget in the gtk3 framework. i think there must be a signal associated with it, but could not find it. for example, there is a ontextchanged signal in qt4, so a similar signal in gtk will do the same. am trying the code using python.

link|improve this question

14% accept rate
feedback

1 Answer

Every TextView widget is associated to a TextBuffer object. The signal you are looking for is changed but of the associated text buffer. If you create a TextView without an associated buffer, a default one is created for you and you can retrieve it with textview.get_buffer()

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.