forked from AuroraMiddleware/gtk
Document the arguments of the ::move-cursor signal. (#142725)
2004-05-18 Matthias Clasen <mclasen@redhat.com> * gtk/gtktextview.c (gtk_text_view_class_init): Document the arguments of the ::move-cursor signal. (#142725)
This commit is contained in:
parent
a455537074
commit
d9ee96cfce
@ -1,6 +1,11 @@
|
||||
2004-05-18 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktextview.c (gtk_text_view_class_init): Document the
|
||||
arguments of the ::move-cursor signal. (#142725)
|
||||
|
||||
2004-05-17 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Mreged from 2.4:
|
||||
Merged from 2.4:
|
||||
|
||||
* gtk/gtkbutton.c (gtk_button_size_request)
|
||||
(gtk_button_size_allocate, _gtk_button_paint): Allocate
|
||||
|
@ -1,6 +1,11 @@
|
||||
2004-05-18 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktextview.c (gtk_text_view_class_init): Document the
|
||||
arguments of the ::move-cursor signal. (#142725)
|
||||
|
||||
2004-05-17 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Mreged from 2.4:
|
||||
Merged from 2.4:
|
||||
|
||||
* gtk/gtkbutton.c (gtk_button_size_request)
|
||||
(gtk_button_size_allocate, _gtk_button_paint): Allocate
|
||||
|
@ -1,6 +1,11 @@
|
||||
2004-05-18 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktextview.c (gtk_text_view_class_init): Document the
|
||||
arguments of the ::move-cursor signal. (#142725)
|
||||
|
||||
2004-05-17 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Mreged from 2.4:
|
||||
Merged from 2.4:
|
||||
|
||||
* gtk/gtkbutton.c (gtk_button_size_request)
|
||||
(gtk_button_size_allocate, _gtk_button_paint): Allocate
|
||||
|
@ -1,6 +1,11 @@
|
||||
2004-05-18 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktextview.c (gtk_text_view_class_init): Document the
|
||||
arguments of the ::move-cursor signal. (#142725)
|
||||
|
||||
2004-05-17 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Mreged from 2.4:
|
||||
Merged from 2.4:
|
||||
|
||||
* gtk/gtkbutton.c (gtk_button_size_request)
|
||||
(gtk_button_size_allocate, _gtk_button_paint): Allocate
|
||||
|
@ -691,16 +691,27 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
|
||||
* Signals
|
||||
*/
|
||||
|
||||
signals[MOVE_CURSOR] =
|
||||
/**
|
||||
* GtkTextView::move-cursor:
|
||||
* @widget: the object which received the signal
|
||||
* @step: the granularity of the move, as a #GtkMovementStep
|
||||
* @count: the number of @step units to move
|
||||
* @extend_selection: %TRUE if the move should extend the selection
|
||||
*
|
||||
* The ::move-cursor signal is a keybinding signal which gets emitted
|
||||
* when the user initiates a cursor movement. Applications should not
|
||||
* use it.
|
||||
*/
|
||||
signals[MOVE_CURSOR] =
|
||||
g_signal_new ("move_cursor",
|
||||
G_OBJECT_CLASS_TYPE (gobject_class),
|
||||
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
|
||||
G_OBJECT_CLASS_TYPE (gobject_class),
|
||||
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
|
||||
G_STRUCT_OFFSET (GtkTextViewClass, move_cursor),
|
||||
NULL, NULL,
|
||||
_gtk_marshal_VOID__ENUM_INT_BOOLEAN,
|
||||
NULL, NULL,
|
||||
_gtk_marshal_VOID__ENUM_INT_BOOLEAN,
|
||||
G_TYPE_NONE, 3,
|
||||
GTK_TYPE_MOVEMENT_STEP,
|
||||
G_TYPE_INT,
|
||||
GTK_TYPE_MOVEMENT_STEP,
|
||||
G_TYPE_INT,
|
||||
G_TYPE_BOOLEAN);
|
||||
|
||||
signals[PAGE_HORIZONTALLY] =
|
||||
|
Loading…
Reference in New Issue
Block a user