GtkArgFlags

Warning GtkArgFlags is deprecated and should not be used in newly-written code. Use corresponding GParamSpec features instead Possible flags indicating how an argument should be treated. GTK_ARG_READABLE the argument is readable. (i.e. can be queried) GTK_ARG_WRITABLE the argument is writable. (i.e. settable) GTK_ARG_CONSTRUCT the argument needs construction. GTK_ARG_CONSTRUCT_ONLY the argument needs construction (and will be set once during object creation), but is otherwise cannot be set. Hence this flag is not allowed with GTK_ARG_WRITABLE, and is redundant with GTK_ARG_CONSTRUCT. GTK_ARG_CHILD_ARG an argument type that applies to (and may be different for) each child. Used by GtkContainer.

Values

ValueMeaning
READABLEcast(int)ParamFlags.READABLE
WRITABLEcast(int)ParamFlags.WRITABLE
CONSTRUCTcast(int)ParamFlags.CONSTRUCT
CONSTRUCT_ONLYcast(int)ParamFlags.CONSTRUCT_ONLY
CHILD_ARG1 << 4

Meta