Package ch.bailu.gtk.gobject
Interface ParamFlags
public interface ParamFlags
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
the parameter will be set upon object constructionstatic final int
the parameter can only be set upon object constructionstatic final int
calls to g_object_set_property() for this
property will not automatically result in a "notify" signal being
emitted: the implementation must call g_object_notify() themselves
in case the property actually changes.static final int
upon parameter conversion (see g_param_value_convert())
strict validation is not requiredstatic final int
internalstatic final int
the parameter is readablestatic final int
alias for %G_PARAM_READABLE | %G_PARAM_WRITABLEstatic final int
the string used as blurb when constructing the
parameter is guaranteed to remain valid and
unmodified for the lifetime of the parameter.static final int
the string used as name when constructing the
parameter is guaranteed to remain valid and
unmodified for the lifetime of the parameter.static final int
the string used as nick when constructing the
parameter is guaranteed to remain valid and
unmmodified for the lifetime of the parameter.static final int
the parameter is writable
-
Field Details
-
READABLE
static final int READABLEthe parameter is readable- See Also:
-
WRITABLE
static final int WRITABLEthe parameter is writable- See Also:
-
READWRITE
static final int READWRITEalias for %G_PARAM_READABLE | %G_PARAM_WRITABLE- See Also:
-
CONSTRUCT
static final int CONSTRUCTthe parameter will be set upon object construction- See Also:
-
CONSTRUCT_ONLY
static final int CONSTRUCT_ONLYthe parameter can only be set upon object construction- See Also:
-
LAX_VALIDATION
static final int LAX_VALIDATIONupon parameter conversion (see g_param_value_convert())
strict validation is not required- See Also:
-
STATIC_NAME
static final int STATIC_NAMEthe string used as name when constructing the
parameter is guaranteed to remain valid and
unmodified for the lifetime of the parameter.
Since 2.8- See Also:
-
PRIVATE
static final int PRIVATEinternal- See Also:
-
STATIC_NICK
static final int STATIC_NICKthe string used as nick when constructing the
parameter is guaranteed to remain valid and
unmmodified for the lifetime of the parameter.
Since 2.8- See Also:
-
STATIC_BLURB
static final int STATIC_BLURBthe string used as blurb when constructing the
parameter is guaranteed to remain valid and
unmodified for the lifetime of the parameter.
Since 2.8- See Also:
-
EXPLICIT_NOTIFY
static final int EXPLICIT_NOTIFYcalls to g_object_set_property() for this
property will not automatically result in a "notify" signal being
emitted: the implementation must call g_object_notify() themselves
in case the property actually changes. Since: 2.42.- See Also:
-