Lines Matching full:value
121 * @value: a valid #GValue structure
127 #define G_VALUE_HOLDS_ENUM(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_ENUM))
130 * @value: a valid #GValue structure
136 #define G_VALUE_HOLDS_FLAGS(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_FLAGS))
148 * @minimum: the smallest possible value.
149 * @maximum: the largest possible value.
189 * @value: the enum value
190 * @value_name: the name of the value
191 * @value_nick: the nickname of the value
193 * A structure which contains a single enum value, its name, and its
198 gint value;
204 * @value: the flags value
205 * @value_name: the name of the value
206 * @value_nick: the nickname of the value
208 * A structure which contains a single flags value, its name, and its
213 guint value;
221 gint value);
227 guint value);
232 void g_value_set_enum (GValue *value,
234 gint g_value_get_enum (const GValue *value);
235 void g_value_set_flags (GValue *value,
237 guint g_value_get_flags (const GValue *value);