Lines Matching defs:choice
72 int choice;
169 g_value_set_int (value, priv->choice);
272 * @choices: an array of strings for each possible choice.
402 * GMountOperation:choice:
404 * The index of the user's choice when a question is asked during the
409 g_param_spec_int ("choice",
410 P_("Choice"),
411 P_("The users choice"),
616 * Gets a choice from the mount operation.
618 * Returns: an integer containing an index of the user's choice from
619 * the choice's list, or %0.
625 return op->priv->choice;
631 * @choice: an integer.
633 * Sets a default choice for the mount operation.
637 int choice)
642 if (priv->choice != choice)
644 priv->choice = choice;
645 g_object_notify (G_OBJECT (op), "choice");