mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-02 09:16:17 +01:00
Fix a typo
This commit is contained in:
parent
d2a2fe96a3
commit
54e474931e
@ -46,6 +46,11 @@ G_DEFINE_TYPE (GApplicationCommandLine, g_application_command_line, G_TYPE_OBJEC
|
|||||||
* invocation) or remote (ie: some other process forwarded the
|
* invocation) or remote (ie: some other process forwarded the
|
||||||
* commandline to this process).
|
* commandline to this process).
|
||||||
*
|
*
|
||||||
|
* The GApplicationCommandLine object can provide the @argc and @argv
|
||||||
|
* parameters for use with the #GOptionContext command-line parsing API,
|
||||||
|
* with the g_application_command_line_get_arguments() function. See
|
||||||
|
* <xref linkend="gapplication-example-cmdline3"> for an example.
|
||||||
|
*
|
||||||
* The exit status of the originally-invoked process may be set and
|
* The exit status of the originally-invoked process may be set and
|
||||||
* messages can be printed to stdout or stderr of that process. The
|
* messages can be printed to stdout or stderr of that process. The
|
||||||
* lifecycle of the originally-invoked process is tied to the lifecycle
|
* lifecycle of the originally-invoked process is tied to the lifecycle
|
||||||
@ -97,6 +102,10 @@ G_DEFINE_TYPE (GApplicationCommandLine, g_application_command_line, G_TYPE_OBJEC
|
|||||||
* (in this example, in an idle). Note that it is necessary to hold the
|
* (in this example, in an idle). Note that it is necessary to hold the
|
||||||
* application until you are done with the commandline.
|
* application until you are done with the commandline.
|
||||||
* </para>
|
* </para>
|
||||||
|
* <para>
|
||||||
|
* This example also shows how to use #GOptionContext for parsing the
|
||||||
|
* commandline arguments.
|
||||||
|
* </para>
|
||||||
* <programlisting>
|
* <programlisting>
|
||||||
* <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" href="../../../../gio/tests/gapplication-example-cmdline3.c">
|
* <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" href="../../../../gio/tests/gapplication-example-cmdline3.c">
|
||||||
* <xi:fallback>FIXME: MISSING XINCLUDE CONTENT</xi:fallback>
|
* <xi:fallback>FIXME: MISSING XINCLUDE CONTENT</xi:fallback>
|
||||||
|
@ -1256,7 +1256,7 @@ typedef enum
|
|||||||
* launching process to the primary instance. Set this flag if your
|
* launching process to the primary instance. Set this flag if your
|
||||||
* application is expected to behave differently depending on certain
|
* application is expected to behave differently depending on certain
|
||||||
* environment variables. For instance, an editor might be expected
|
* environment variables. For instance, an editor might be expected
|
||||||
* to use the <envvar>GIT_COMMITTER_NAME</envvar> environment variable
|
* to use the <envar>GIT_COMMITTER_NAME</envar> environment variable
|
||||||
* when editing a git commit message.
|
* when editing a git commit message.
|
||||||
*
|
*
|
||||||
* Flags used to define the behaviour of a #GApplication.
|
* Flags used to define the behaviour of a #GApplication.
|
||||||
|
@ -6,22 +6,52 @@ static gboolean
|
|||||||
my_cmdline_handler (gpointer data)
|
my_cmdline_handler (gpointer data)
|
||||||
{
|
{
|
||||||
GApplicationCommandLine *cmdline = data;
|
GApplicationCommandLine *cmdline = data;
|
||||||
|
gchar **args;
|
||||||
gchar **argv;
|
gchar **argv;
|
||||||
gint argc;
|
gint argc;
|
||||||
|
gint arg1;
|
||||||
|
gboolean arg2;
|
||||||
|
GOptionContext *context;
|
||||||
|
GOptionEntry entries[] = {
|
||||||
|
{ "arg1", 0, 0, G_OPTION_ARG_INT, &arg1, NULL, NULL },
|
||||||
|
{ "arg2", 0, 0, G_OPTION_ARG_NONE, &arg2, NULL, NULL },
|
||||||
|
{ NULL }
|
||||||
|
};
|
||||||
|
GError *error;
|
||||||
gint i;
|
gint i;
|
||||||
|
|
||||||
argv = g_application_command_line_get_arguments (cmdline, &argc);
|
args = g_application_command_line_get_arguments (cmdline, &argc);
|
||||||
|
|
||||||
g_application_command_line_print (cmdline,
|
/* We have to make an extra copy of the array, since g_option_context_parse()
|
||||||
"This text is written back\n"
|
* assumes that it can remove strings from the array without freeing them.
|
||||||
"to stdout of the caller\n");
|
*/
|
||||||
|
argv = g_new (gchar*, argc + 1);
|
||||||
|
for (i = 0; i <= argc; i++)
|
||||||
|
argv[i] = args[i];
|
||||||
|
|
||||||
for (i = 0; i < argc; i++)
|
context = g_option_context_new (NULL);
|
||||||
g_print ("argument %d: %s\n", i, argv[i]);
|
g_option_context_add_main_entries (context, entries, NULL);
|
||||||
|
|
||||||
g_strfreev (argv);
|
arg1 = 0;
|
||||||
|
arg2 = FALSE;
|
||||||
|
error = NULL;
|
||||||
|
if (!g_option_context_parse (context, &argc, &argv, &error))
|
||||||
|
{
|
||||||
|
g_application_command_line_printerr (cmdline, "%s\n", error->message);
|
||||||
|
g_error_free (error);
|
||||||
|
g_application_command_line_set_exit_status (cmdline, 1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
g_application_command_line_print (cmdline, "arg1 is %d and arg2 is %s\n",
|
||||||
|
arg1, arg2 ? "TRUE" : "FALSE");
|
||||||
|
g_application_command_line_set_exit_status (cmdline, 0);
|
||||||
|
}
|
||||||
|
|
||||||
g_application_command_line_set_exit_status (cmdline, 1);
|
g_free (argv);
|
||||||
|
g_strfreev (args);
|
||||||
|
|
||||||
|
g_option_context_free (context);
|
||||||
|
|
||||||
/* we are done handling this commandline */
|
/* we are done handling this commandline */
|
||||||
g_object_unref (cmdline);
|
g_object_unref (cmdline);
|
||||||
|
Loading…
Reference in New Issue
Block a user