forked from AuroraMiddleware/gtk
Small doc fixes
svn path=/trunk/; revision=18451
This commit is contained in:
parent
167acf1286
commit
6608fbfd36
@ -1,3 +1,9 @@
|
||||
2007-07-11 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkrange.c:
|
||||
* gtk/gtkbindings.c:
|
||||
* gtk/gtkscalebutton.c: Small doc fixes.
|
||||
|
||||
2007-07-11 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkplug.c:
|
||||
|
@ -565,7 +565,7 @@ gtk_binding_entry_activate (GtkBindingEntry *entry,
|
||||
* gtk_binding_set_new:
|
||||
* @set_name: unique name of this binding set
|
||||
*
|
||||
* Gtk+ maintains a global list of binding sets. Each binding set has
|
||||
* GTK+ maintains a global list of binding sets. Each binding set has
|
||||
* a unique name which needs to be specified upon creation.
|
||||
*
|
||||
* Return value: new binding set
|
||||
|
@ -251,6 +251,12 @@ gtk_range_class_init (GtkRangeClass *class)
|
||||
class->slider_detail = "slider";
|
||||
class->stepper_detail = "stepper";
|
||||
|
||||
/**
|
||||
* GtkRange::value-changed:
|
||||
* @range: the #GtkRange
|
||||
*
|
||||
* Emitted when the range value changes.
|
||||
*/
|
||||
signals[VALUE_CHANGED] =
|
||||
g_signal_new (I_("value_changed"),
|
||||
G_TYPE_FROM_CLASS (gobject_class),
|
||||
@ -270,6 +276,13 @@ gtk_range_class_init (GtkRangeClass *class)
|
||||
G_TYPE_NONE, 1,
|
||||
G_TYPE_DOUBLE);
|
||||
|
||||
/**
|
||||
* GtkRange::move-slider:
|
||||
* @range: the #GtkRange
|
||||
* @step: how to move the slider
|
||||
*
|
||||
* Virtual function that moves the slider. Used for keybindings.
|
||||
*/
|
||||
signals[MOVE_SLIDER] =
|
||||
g_signal_new (I_("move_slider"),
|
||||
G_TYPE_FROM_CLASS (gobject_class),
|
||||
|
@ -233,6 +233,7 @@ gtk_scale_button_class_init (GtkScaleButtonClass *klass)
|
||||
/**
|
||||
* GtkScaleButton::value-changed:
|
||||
* @button: the object that received the signal
|
||||
* @value: The new value
|
||||
*
|
||||
* Emitted when the value field has changed.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user