Method

AdwBreakpointadd_settersv

Declaration [src]

void
adw_breakpoint_add_settersv (
  AdwBreakpoint* self,
  int n_setters,
  GObject** objects,
  const char** names,
  const GValue** values
)

Description [src]

Adds n_setters setters to self.

This is a convenience function for adding multiple setters at once.

See adw_breakpoint_add_setter().

This function is meant to be used by language bindings.

Available since:1.4

Parameters

n_setters int
 

The number of setters to add.

objects An array of GObject*
 

Setter target object.

 The length of the array is specified in the n_setters argument.
 The data is owned by the caller of the function.
names An array of char*
 

Setter target properties.

 The length of the array is specified in the n_setters argument.
 The data is owned by the caller of the function.
values An array of GValue*
 

Setter values.

 The length of the array is specified in the n_setters argument.
 The data is owned by the caller of the function.