![]() |
![]() |
Public Member Functions | |
OptionContext (const Glib::ustring& parameter_string=Glib::ustring()) | |
Creates a new option context. | |
OptionContext (GOptionContext* castitem, bool take_ownership=false) | |
virtual | ~OptionContext () |
void | set_help_enabled (bool help_enabled=true) |
Enables or disables automatic generation of <option>--help</option> output. | |
bool | get_help_enabled () const |
Returns whether automatic <option>--help</option> generation is turned on for context . | |
void | set_ignore_unknown_options (bool ignore_unknown=true) |
Sets whether to ignore unknown options or not. | |
bool | get_ignore_unknown_options () const |
Returns whether unknown options are ignored or not. | |
bool | parse (int& argc, char**& argv, std::auto_ptr<Glib::Error>& error) |
Parses the command line arguments, recognizing options which have been added to context . | |
void | add_group (OptionGroup& group) |
Adds an OptionGroup to the context, so that parsing with context will recognize the options in the group. | |
void | set_main_group (OptionGroup& group) |
Sets an OptionGroup as the main group of the context. | |
GOptionContext* | gobj () |
const GOptionContext* | gobj () const |
Protected Attributes | |
GOptionContext* | gobject_ |
bool | has_ownership_ |
Glib::OptionContext::OptionContext | ( | const Glib::ustring& | parameter_string = Glib::ustring() |
) | [explicit] |
Creates a new option context.
parameter_string | A string which is displayed in the first line of --help output, after programname [OPTION...] |
Glib::OptionContext::OptionContext | ( | GOptionContext * | castitem, | |
bool | take_ownership = false | |||
) | [explicit] |
virtual Glib::OptionContext::~OptionContext | ( | ) | [virtual] |
void Glib::OptionContext::set_help_enabled | ( | bool | help_enabled = true |
) |
Enables or disables automatic generation of <option>--help</option> output.
By default, g_option_context_parse() recognizes <option>--help</option>, <option>-?</option>, <option>--help-all</option> and <option>--help-</option><replaceable>groupname</replaceable> and creates suitable output to stdout.
help_enabled | true to enable <option>--help</option>, false to disable it. |
bool Glib::OptionContext::get_help_enabled | ( | ) | const |
Returns whether automatic <option>--help</option> generation is turned on for context .
See g_option_context_set_help_enabled().
true
if automatic help generation is turned on.void Glib::OptionContext::set_ignore_unknown_options | ( | bool | ignore_unknown = true |
) |
Sets whether to ignore unknown options or not.
If an argument is ignored, it is left in the argv array after parsing. By default, g_option_context_parse() treats unknown options as error.
This setting does not affect non-option arguments (i.e. arguments which don't start with a dash). But note that GOption cannot reliably determine whether a non-option belongs to a preceding unknown option.
ignore_unknown | true to ignore unknown options, false to produce an error when unknown options are met. |
bool Glib::OptionContext::get_ignore_unknown_options | ( | ) | const |
Returns whether unknown options are ignored or not.
See g_option_context_set_ignore_unknown_options().
true
if unknown options are ignored.bool Glib::OptionContext::parse | ( | int & | argc, | |
char **& | argv, | |||
std::auto_ptr<Glib::Error>& | error | |||
) |
Parses the command line arguments, recognizing options which have been added to context .
A side-effect of calling this function is that g_set_prgname() will be called.
If the parsing is successful, any parsed arguments are removed from the array and argc and argv are updated accordingly. A '--' option is stripped from argv unless there are unparsed options before and after it, or some of the options after it start with '-'. In case of an error, argc and argv are left unmodified.
If automatic <option>--help</option> support is enabled (see g_option_context_set_help_enabled()), and the argv array contains one of the recognized help options, this function will produce help output to stdout and call exit (0)
.
argc | A pointer to the number of command line arguments. | |
argv | A pointer to the array of command line arguments. | |
error | A return location for errors. |
true
if the parsing was successful, false
if an error occurredvoid Glib::OptionContext::add_group | ( | OptionGroup& | group | ) |
Adds an OptionGroup to the context, so that parsing with context will recognize the options in the group.
Note that the group will not be copied, so it should exist for as long as the context exists.
group | The group to add. |
void Glib::OptionContext::set_main_group | ( | OptionGroup& | group | ) |
Sets an OptionGroup as the main group of the context.
This has the same effect as calling add_group(), the only difference is that the options in the main group are treated differently when generating --help output. Note that the group will not be copied, so it should exist for as long as the context exists.
group | The group to add. |
GOptionContext* Glib::OptionContext::gobj | ( | ) | [inline] |
const GOptionContext* Glib::OptionContext::gobj | ( | ) | const [inline] |
GOptionContext* Glib::OptionContext::gobject_ [protected] |
bool Glib::OptionContext::has_ownership_ [protected] |