ObjectG.setQdataFull

This function works like g_object_set_qdata(), but in addition, a void (*destroy) (gpointer) function may be specified which is called with @data as argument when the @object is finalized, or the data is being overwritten by a call to g_object_set_qdata() with the same @quark.

class ObjectG
void
setQdataFull
(
GQuark quark
,
void* data
,
GDestroyNotify destroy
)

Parameters

quark GQuark

A #GQuark, naming the user data pointer

data void*

An opaque user data pointer

destroy GDestroyNotify

Function to invoke with @data as argument, when @data needs to be freed

Meta