forked from AuroraMiddleware/gtk
scrollbar: Add property annotations
Connect properties, getters, and setters with annotations.
This commit is contained in:
parent
0559e9e763
commit
e78302c4e5
@ -215,7 +215,7 @@ gtk_scrollbar_class_init (GtkScrollbarClass *class)
|
||||
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.
|
||||
*/
|
||||
@ -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`
|
||||
* @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`
|
||||
*
|
||||
* Returns the scrollbar's adjustment.
|
||||
|
Loading…
Reference in New Issue
Block a user