diff options
author | Bill Haneman <billh@src.gnome.org> | 2001-05-14 16:48:51 +0000 |
---|---|---|
committer | Bill Haneman <billh@src.gnome.org> | 2001-05-14 16:48:51 +0000 |
commit | f7cb92b7ed8b83e58e3abf9d0ca6bfa6f02d7675 (patch) | |
tree | c2866a0099a22e563c93a147037097d2724f1c17 /atk/atktext.h | |
parent | 623b2b9ae5f05776950877f5ad7233947f31845c (diff) | |
download | atk-f7cb92b7ed8b83e58e3abf9d0ca6bfa6f02d7675.tar.gz |
Moved caret_moved and text_changed signals from AtkEditableText to AtkText.
Also un-commented the signal registration, and added default handlers for AtkText.
Diffstat (limited to 'atk/atktext.h')
-rwxr-xr-x | atk/atktext.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/atk/atktext.h b/atk/atktext.h index 5387593..92be3a3 100755 --- a/atk/atktext.h +++ b/atk/atktext.h @@ -96,6 +96,9 @@ struct _AtkTextIface gint end_offset); gboolean (* set_caret_offset) (AtkText *text, gint offset); + void (* text_changed) (AtkText *text); + void (* caret_changed) (AtkText *text, + gint location); }; GType atk_text_get_type (void); |