scrollbar: Add property annotations

Connect properties, getters, and setters with annotations.
This commit is contained in:
Matthias Clasen 2021-02-24 21:58:11 -05:00 committed by Emmanuele Bassi
parent 0559e9e763
commit e78302c4e5

View File

@ -215,7 +215,7 @@ gtk_scrollbar_class_init (GtkScrollbarClass *class)
object_class->dispose = gtk_scrollbar_dispose; object_class->dispose = gtk_scrollbar_dispose;
/** /**
* GtkScrollbar:adjustment: * GtkScrollbar:adjustment: (attributes org.gtk.Property.get=gtk_scrollbar_get_adjustment org.gtk.Property.set=gtk_scrollbar_set_adjustment)
* *
* The `GtkAdjustment` controlled by this scrollbar. * The `GtkAdjustment` controlled by this scrollbar.
*/ */
@ -299,7 +299,7 @@ gtk_scrollbar_adjustment_value_changed (GtkAdjustment *adjustment,
} }
/** /**
* gtk_scrollbar_set_adjustment: * gtk_scrollbar_set_adjustment: (attributes org.gtk.Method.set_property=adjustment)
* @self: a `GtkScrollbar` * @self: a `GtkScrollbar`
* @adjustment: (nullable): the adjustment to set * @adjustment: (nullable): the adjustment to set
* *
@ -342,7 +342,7 @@ gtk_scrollbar_set_adjustment (GtkScrollbar *self,
} }
/** /**
* gtk_scrollbar_get_adjustment: * gtk_scrollbar_get_adjustment: (attributes org.gtk.Method.get_property=adjustment)
* @self: a `GtkScrollbar` * @self: a `GtkScrollbar`
* *
* Returns the scrollbar's adjustment. * Returns the scrollbar's adjustment.