diff options
Diffstat (limited to 'gtk/gtktextview.h')
-rw-r--r-- | gtk/gtktextview.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/gtk/gtktextview.h b/gtk/gtktextview.h index b52ca6d12b..df8abe7802 100644 --- a/gtk/gtktextview.h +++ b/gtk/gtktextview.h @@ -168,6 +168,15 @@ struct _GtkTextViewClass GtkMovementStep step, gint count, gboolean extend_selection); + + /* FIXME should be deprecated in favor of adding GTK_MOVEMENT_HORIZONTAL_PAGES + * or something in GTK 2.2, was put in to avoid adding enum values during + * the freeze. + */ + void (* page_horizontally) (GtkTextView *text_view, + gint count, + gboolean extend_selection); + /* move the "anchor" (what Emacs calls the mark) to the cursor position */ void (* set_anchor) (GtkTextView *text_view); @@ -187,7 +196,8 @@ struct _GtkTextViewClass /* propagates to GtkWindow move_focus */ void (* move_focus) (GtkTextView *text_view, - GtkDirectionType direction); + GtkDirectionType direction); + GtkFunction pad1; GtkFunction pad2; |