forked from AuroraMiddleware/gtk
Document the "set-scroll-adjustments" signal
2008-12-11 Sven Herzberg <sven@imendio.com> Document the "set-scroll-adjustments" signal Reviewed by Kristian Rietveld. * gtk/gtkiconview.c, * gtk/gtklayout.c, * gtk/gtktextview.c, * gtk/gtktreeview.c, * gtk/gtkviewport.c: added proper documentation for the signal svn path=/trunk/; revision=21871
This commit is contained in:
parent
0bf3652e1d
commit
2b31f26827
12
ChangeLog
12
ChangeLog
@ -1,3 +1,15 @@
|
||||
2008-12-11 Sven Herzberg <sven@imendio.com>
|
||||
|
||||
Document the "set-scroll-adjustments" signal
|
||||
|
||||
Reviewed by Kristian Rietveld.
|
||||
|
||||
* gtk/gtkiconview.c,
|
||||
* gtk/gtklayout.c,
|
||||
* gtk/gtktextview.c,
|
||||
* gtk/gtktreeview.c,
|
||||
* gtk/gtkviewport.c: added proper documentation for the signal
|
||||
|
||||
2008-12-11 Daniel Elstner <danielk@openismus.com>
|
||||
|
||||
Bug 563994 – Input method module interface not documented
|
||||
|
@ -777,6 +777,15 @@ gtk_icon_view_class_init (GtkIconViewClass *klass)
|
||||
GTK_PARAM_READABLE));
|
||||
|
||||
/* Signals */
|
||||
/**
|
||||
* GtkIconView::set-scroll-adjustments
|
||||
* @horizontal: the horizontal #GtkAdjustment
|
||||
* @vertical: the vertical #GtkAdjustment
|
||||
*
|
||||
* Set the scroll adjustments for the icon view. Usually scrolled containers
|
||||
* like #GtkScrolledWindow will emit this signal to connect two instances
|
||||
* of #GtkScrollbar to the scroll directions of the #GtkIconView.
|
||||
*/
|
||||
widget_class->set_scroll_adjustments_signal =
|
||||
g_signal_new (I_("set-scroll-adjustments"),
|
||||
G_TYPE_FROM_CLASS (gobject_class),
|
||||
|
@ -658,6 +658,15 @@ gtk_layout_class_init (GtkLayoutClass *class)
|
||||
|
||||
class->set_scroll_adjustments = gtk_layout_set_adjustments;
|
||||
|
||||
/**
|
||||
* GtkLayout::set-scroll-adjustments
|
||||
* @horizontal: the horizontal #GtkAdjustment
|
||||
* @vertical: the vertical #GtkAdjustment
|
||||
*
|
||||
* Set the scroll adjustments for the layout. Usually scrolled containers
|
||||
* like #GtkScrolledWindow will emit this signal to connect two instances
|
||||
* of #GtkScrollbar to the scroll directions of the #GtkLayout.
|
||||
*/
|
||||
widget_class->set_scroll_adjustments_signal =
|
||||
g_signal_new (I_("set-scroll-adjustments"),
|
||||
G_OBJECT_CLASS_TYPE (gobject_class),
|
||||
|
@ -913,6 +913,15 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
|
||||
_gtk_marshal_VOID__VOID,
|
||||
G_TYPE_NONE, 0);
|
||||
|
||||
/**
|
||||
* GtkTextView::set-scroll-adjustments
|
||||
* @horizontal: the horizontal #GtkAdjustment
|
||||
* @vertical: the vertical #GtkAdjustment
|
||||
*
|
||||
* Set the scroll adjustments for the text view. Usually scrolled containers
|
||||
* like #GtkScrolledWindow will emit this signal to connect two instances
|
||||
* of #GtkScrollbar to the scroll directions of the #GtkTextView.
|
||||
*/
|
||||
signals[SET_SCROLL_ADJUSTMENTS] =
|
||||
g_signal_new (I_("set-scroll-adjustments"),
|
||||
G_OBJECT_CLASS_TYPE (gobject_class),
|
||||
|
@ -869,6 +869,15 @@ gtk_tree_view_class_init (GtkTreeViewClass *class)
|
||||
GTK_PARAM_READABLE));
|
||||
|
||||
/* Signals */
|
||||
/**
|
||||
* GtkTreeView::set-scroll-adjustments
|
||||
* @horizontal: the horizontal #GtkAdjustment
|
||||
* @vertical: the vertical #GtkAdjustment
|
||||
*
|
||||
* Set the scroll adjustments for the tree view. Usually scrolled containers
|
||||
* like #GtkScrolledWindow will emit this signal to connect two instances
|
||||
* of #GtkScrollbar to the scroll directions of the #GtkTreeView.
|
||||
*/
|
||||
widget_class->set_scroll_adjustments_signal =
|
||||
g_signal_new (I_("set-scroll-adjustments"),
|
||||
G_TYPE_FROM_CLASS (o_class),
|
||||
|
@ -125,6 +125,15 @@ gtk_viewport_class_init (GtkViewportClass *class)
|
||||
GTK_SHADOW_IN,
|
||||
GTK_PARAM_READWRITE));
|
||||
|
||||
/**
|
||||
* GtkViewport::set-scroll-adjustments
|
||||
* @horizontal: the horizontal #GtkAdjustment
|
||||
* @vertical: the vertical #GtkAdjustment
|
||||
*
|
||||
* Set the scroll adjustments for the viewport. Usually scrolled containers
|
||||
* like #GtkScrolledWindow will emit this signal to connect two instances
|
||||
* of #GtkScrollbar to the scroll directions of the #GtkViewport.
|
||||
*/
|
||||
widget_class->set_scroll_adjustments_signal =
|
||||
g_signal_new (I_("set-scroll-adjustments"),
|
||||
G_OBJECT_CLASS_TYPE (gobject_class),
|
||||
|
Loading…
Reference in New Issue
Block a user