Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GTK entry typing signal

Tags:

c

gtk

What is the name of the signal that gets emitted when a user types some text at a gtk+ entry?

I am using GTK+ 2.24 in c.

like image 415
Rrjrjtlokrthjji Avatar asked Sep 17 '25 05:09

Rrjrjtlokrthjji


1 Answers

A GtkEntry is an instance of a GtkEditable which has three signals:

  1. The changed signal is emitted at the end of a single user-visible operation
  2. The delete-text signal is emitted when text is deleted from the widget by the user
  3. The insert-text signal is emitted when text is inserted into the widget by the user

I assume you want the insert-text signal in your case.

like image 157
Neil Avatar answered Sep 19 '25 03:09

Neil