Function
Gdkproperty_change
Declaration [src]
void
gdk_property_change (
GdkWindow* window,
GdkAtom property,
GdkAtom type,
gint format,
GdkPropMode mode,
const guchar* data,
gint nelements
)
Description [src]
Changes the contents of a property on a window.
This function is not directly available to language bindings.
Parameters
window-
Type:
GdkWindowA
GdkWindow.The data is owned by the caller of the function. property-
Type:
GdkAtomThe property to change.
type-
Type:
GdkAtomThe new type for the property. If
modeisGDK_PROP_MODE_PREPENDorGDK_PROP_MODE_APPEND, then this must match the existing type or an error will occur. format-
Type:
gintThe new format for the property. If
modeisGDK_PROP_MODE_PREPENDorGDK_PROP_MODE_APPEND, then this must match the existing format or an error will occur. mode-
Type:
GdkPropModeA value describing how the new data is to be combined with the current data.
data-
Type:
const guchar*The data (a
guchar *gushort *, orgulong *, depending onformat), cast to aguchar *.The data is owned by the caller of the function. nelements-
Type:
gintThe number of elements of size determined by the format, contained in
data.