OptionContext

Description The GOption commandline parser is intended to be a simpler replacement for the popt library. It supports short and long commandline options, as shown in the following example: testtreemodel -r 1 --max-size 20 --rand --display=:1.0 -vb -- file1 file2 The example demonstrates a number of features of the GOption commandline parser Options can be single letters, prefixed by a single dash. Multiple short options can be grouped behind a single dash. Long options are prefixed by two consecutive dashes. Options can have an extra argument, which can be a number, a string or a filename. For long options, the extra argument can be appended with an equals sign after the option name, which is useful if the extra argument starts with a dash, which would otherwise cause it to be interpreted as another option. Non-option arguments are returned to the application as rest arguments. An argument consisting solely of two dashes turns off further parsing, any remaining arguments (even those starting with a dash) are returned to the application as rest arguments. Another important feature of GOption is that it can automatically generate nicely formatted help output. Unless it is explicitly turned off with g_option_context_set_help_enabled(), GOption will recognize the --help, -?, --help-all and --help-groupname options (where groupname is the name of a GOptionGroup) and write a text similar to the one shown in the following example to stdout. GOption groups options in GOptionGroups, which makes it easy to incorporate options from multiple sources. The intended use for this is to let applications collect option groups from the libraries it uses, add them to their GOptionContext, and parse all options by a single call to g_option_context_parse(). See gtk_get_option_group() for an example. If an option is declared to be of type string or filename, GOption takes care of converting it to the right encoding; strings are returned in UTF-8, filenames are returned in the GLib filename encoding. Note that this only works if setlocale() has been called before g_option_context_parse(). Here is a complete example of setting up GOption to parse the example commandline above and produce the example help output.

Constructors

this
this(GOptionContext* gOptionContext)

Sets our main struct and passes it to the parent class

this
this(string parameterString)

Creates a new option context. The parameter_string can serve multiple purposes. It can be used to add descriptions for "rest" arguments, which are not parsed by the GOptionContext, typically something like "FILES" or "FILE1 FILE2...". If you are using G_OPTION_REMAINING for collecting "rest" arguments, GLib handles this automatically by using the arg_description of the corresponding GOptionEntry in the usage summary. Another usage is to give a short summary of the program functionality, like " - frob the strings", which will be displayed in the same line as the usage. For a longer description of the program functionality that should be displayed as a paragraph below the usage line, use g_option_context_set_summary(). Note that the parameter_string is translated using the function set with g_option_context_set_translate_func(), so it should normally be passed untranslated. Since 2.6

Members

Functions

addGroup
void addGroup(OptionGroup group)

Adds a GOptionGroup to the context, so that parsing with context will recognize the options in the group. Note that the group will be freed together with the context when g_option_context_free() is called, so you must not free the group yourself after adding it to a context. Since 2.6

addMainEntries
void addMainEntries(GOptionEntry* entries, string translationDomain)

A convenience function which creates a main group if it doesn't exist, adds the entries to it and sets the translation domain. Since 2.6

free
void free()

Frees context and all the groups which have been added to it. Please note that parsed arguments need to be freed separately (see GOptionEntry). Since 2.6

getDescription
string getDescription()

Returns the description. See g_option_context_set_description(). Since 2.12

getHelp
string getHelp(int mainHelp, OptionGroup group)

Returns a formatted, translated help text for the given context. To obtain the text produced by --help, call g_option_context_get_help (context, TRUE, NULL). To obtain the text produced by --help-all, call g_option_context_get_help (context, FALSE, NULL). To obtain the help text for an option group, call g_option_context_get_help (context, FALSE, group). Since 2.14

getHelpEnabled
int getHelpEnabled()

Returns whether automatic --help generation is turned on for context. See g_option_context_set_help_enabled(). Since 2.6

getIgnoreUnknownOptions
int getIgnoreUnknownOptions()

Returns whether unknown options are ignored or not. See g_option_context_set_ignore_unknown_options(). Since 2.6

getMainGroup
OptionGroup getMainGroup()

Returns a pointer to the main group of context. Since 2.6

getOptionContextStruct
GOptionContext* getOptionContextStruct()
Undocumented in source. Be warned that the author may not have intended to support it.
getStruct
void* getStruct()

the main Gtk struct as a void*

getSummary
string getSummary()

Returns the summary. See g_option_context_set_summary(). Since 2.12

parse
int parse(int argc, string[] argv)

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 --help 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). Note that function depends on the current locale for automatic character set conversion of string and filename arguments. Since 2.6

setDescription
void setDescription(string description)

Adds a string to be displayed in --help output after the list of options. This text often includes a bug reporting address. Note that the summary is translated (see g_option_context_set_translate_func()). Since 2.12

setHelpEnabled
void setHelpEnabled(int helpEnabled)

Enables or disables automatic generation of --help output. By default, g_option_context_parse() recognizes --help, -h, -?, --help-all and --help-groupname and creates suitable output to stdout. Since 2.6

setIgnoreUnknownOptions
void setIgnoreUnknownOptions(int ignoreUnknown)

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. Since 2.6

setMainGroup
void setMainGroup(OptionGroup group)

Sets a GOptionGroup as main group of the context. This has the same effect as calling g_option_context_add_group(), the only difference is that the options in the main group are treated differently when generating --help output. Since 2.6

setSummary
void setSummary(string summary)

Adds a string to be displayed in --help output before the list of options. This is typically a summary of the program functionality. Note that the summary is translated (see g_option_context_set_translate_func() and g_option_context_set_translation_domain()). Since 2.12

setTranslateFunc
void setTranslateFunc(GTranslateFunc func, void* data, GDestroyNotify destroyNotify)

Sets the function which is used to translate the contexts user-visible strings, for --help output. If func is NULL, strings are not translated. Note that option groups have their own translation functions, this function only affects the parameter_string (see g_option_context_new()), the summary (see g_option_context_set_summary()) and the description (see g_option_context_set_description()). If you are using gettext(), you only need to set the translation domain, see g_option_context_set_translation_domain(). Since 2.12

setTranslationDomain
void setTranslationDomain(string domain)

A convenience function to use gettext() for translating user-visible strings. Since 2.12

Variables

gOptionContext
GOptionContext* gOptionContext;

the main Gtk struct

Meta