diff options
author | Havoc Pennington <hp@redhat.com> | 2000-10-30 17:14:55 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2000-10-30 17:14:55 +0000 |
commit | 94110facb27ae0d7518516b229925f977489b0df (patch) | |
tree | bb785b1d8561499e9f707f38d1bff8bf20c7377e /gtk/gtktextview.h | |
parent | 5190c7397c407f07d14989d32e711131aa57d39b (diff) | |
download | gtk+-94110facb27ae0d7518516b229925f977489b0df.tar.gz |
Rename delete_at_cursor delete_from_cursor, and move to move_cursor.
2000-10-30 Havoc Pennington <hp@redhat.com>
* gtk/gtktextview.h, gtk/gtktextview.c:
Rename delete_at_cursor delete_from_cursor, and
move to move_cursor.
Diffstat (limited to 'gtk/gtktextview.h')
-rw-r--r-- | gtk/gtktextview.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/gtk/gtktextview.h b/gtk/gtktextview.h index 23a855986f..f2a7cdfa5d 100644 --- a/gtk/gtktextview.h +++ b/gtk/gtktextview.h @@ -125,13 +125,19 @@ struct _GtkTextViewClass { /* These are all RUN_ACTION signals for keybindings */ /* move insertion point */ - void (* move) (GtkTextView *text_view, GtkMovementStep step, gint count, gboolean extend_selection); + void (* move_cursor) (GtkTextView *text_view, + GtkMovementStep step, + gint count, + gboolean extend_selection); /* move the "anchor" (what Emacs calls the mark) to the cursor position */ - void (* set_anchor) (GtkTextView *text_view); + void (* set_anchor) (GtkTextView *text_view); /* Edits */ - void (* insert_at_cursor) (GtkTextView *text_view, const gchar *str); - void (* delete_at_cursor) (GtkTextView *text_view, GtkDeleteType type, gint count); + void (* insert_at_cursor) (GtkTextView *text_view, + const gchar *str); + void (* delete_from_cursor) (GtkTextView *text_view, + GtkDeleteType type, + gint count); /* cut copy paste */ void (* cut_clipboard) (GtkTextView *text_view); |