Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
gapplicationcommandline.h
Go to the documentation of this file.
1/* GIO - GLib Input, Output and Streaming Library
2 *
3 * Copyright © 2010 Codethink Limited
4 *
5 * SPDX-License-Identifier: LGPL-2.1-or-later
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General
18 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 *
20 * Authors: Ryan Lortie <desrt@desrt.ca>
21 */
22
23#ifndef __G_APPLICATION_COMMAND_LINE_H__
24#define __G_APPLICATION_COMMAND_LINE_H__
25
26#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
27#error "Only <gio/gio.h> can be included directly."
28#endif
29
30#include <gio/giotypes.h>
31
33
34#define G_TYPE_APPLICATION_COMMAND_LINE (g_application_command_line_get_type ())
35#define G_APPLICATION_COMMAND_LINE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
36 G_TYPE_APPLICATION_COMMAND_LINE, \
37 GApplicationCommandLine))
38#define G_APPLICATION_COMMAND_LINE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
39 G_TYPE_APPLICATION_COMMAND_LINE, \
40 GApplicationCommandLineClass))
41#define G_IS_APPLICATION_COMMAND_LINE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
42 G_TYPE_APPLICATION_COMMAND_LINE))
43#define G_IS_APPLICATION_COMMAND_LINE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
44 G_TYPE_APPLICATION_COMMAND_LINE))
45#define G_APPLICATION_COMMAND_LINE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
46 G_TYPE_APPLICATION_COMMAND_LINE, \
47 GApplicationCommandLineClass))
48
49typedef struct _GApplicationCommandLinePrivate GApplicationCommandLinePrivate;
51
59
61{
62 /*< private >*/
64
66 const gchar *message);
68 const gchar *message);
69 GInputStream * (* get_stdin) (GApplicationCommandLine *cmdline);
70 void (* done) (GApplicationCommandLine *cmdline);
71
73};
74
77
80 int *argc);
81
84
87
90
93 const gchar *name);
94
97
100
103 const gchar *message);
106 const gchar *message);
107
110 const gchar *format,
111 ...) G_GNUC_PRINTF(2, 3);
114 const gchar *format,
115 ...) G_GNUC_PRINTF(2, 3);
116
121 int exit_status);
122
125
128 const gchar *arg);
129
132
134
135#endif /* __G_APPLICATION_COMMAND_LINE_H__ */
CURL_EXTERN int void * arg
Definition curl.h:2622
GIO_AVAILABLE_IN_ALL void g_application_command_line_set_exit_status(GApplicationCommandLine *cmdline, int exit_status)
GIO_AVAILABLE_IN_2_36 GFile * g_application_command_line_create_file_for_arg(GApplicationCommandLine *cmdline, const gchar *arg)
GIO_AVAILABLE_IN_ALL const gchar * g_application_command_line_getenv(GApplicationCommandLine *cmdline, const gchar *name)
GIO_AVAILABLE_IN_ALL const gchar *const * g_application_command_line_get_environ(GApplicationCommandLine *cmdline)
GIO_AVAILABLE_IN_2_80 void g_application_command_line_done(GApplicationCommandLine *cmdline)
GIO_AVAILABLE_IN_ALL void GIO_AVAILABLE_IN_ALL void g_application_command_line_printerr(GApplicationCommandLine *cmdline, const gchar *format,...) G_GNUC_PRINTF(2
GIO_AVAILABLE_IN_ALL GType g_application_command_line_get_type(void) G_GNUC_CONST
GIO_AVAILABLE_IN_2_36 GInputStream * g_application_command_line_get_stdin(GApplicationCommandLine *cmdline)
GIO_AVAILABLE_IN_ALL void GIO_AVAILABLE_IN_ALL void GIO_AVAILABLE_IN_ALL int g_application_command_line_get_exit_status(GApplicationCommandLine *cmdline)
GIO_AVAILABLE_IN_ALL gboolean g_application_command_line_get_is_remote(GApplicationCommandLine *cmdline)
struct _GApplicationCommandLinePrivate GApplicationCommandLinePrivate
GIO_AVAILABLE_IN_ALL gchar ** g_application_command_line_get_arguments(GApplicationCommandLine *cmdline, int *argc)
GIO_AVAILABLE_IN_2_40 GVariantDict * g_application_command_line_get_options_dict(GApplicationCommandLine *cmdline)
GIO_AVAILABLE_IN_ALL GVariant * g_application_command_line_get_platform_data(GApplicationCommandLine *cmdline)
GIO_AVAILABLE_IN_ALL void g_application_command_line_print(GApplicationCommandLine *cmdline, const gchar *format,...) G_GNUC_PRINTF(2
GIO_AVAILABLE_IN_2_80 void g_application_command_line_print_literal(GApplicationCommandLine *cmdline, const gchar *message)
GIO_AVAILABLE_IN_ALL const gchar * g_application_command_line_get_cwd(GApplicationCommandLine *cmdline)
GIO_AVAILABLE_IN_2_80 void g_application_command_line_printerr_literal(GApplicationCommandLine *cmdline, const gchar *message)
#define GIO_AVAILABLE_IN_ALL
#define GIO_AVAILABLE_IN_2_36
#define GIO_AVAILABLE_IN_2_40
#define GIO_AVAILABLE_IN_2_80
struct _GFile GFile
Definition giotypes.h:74
#define G_END_DECLS
Definition gmacros.h:910
#define G_GNUC_PRINTF(format_idx, arg_idx)
Definition gmacros.h:608
#define G_BEGIN_DECLS
Definition gmacros.h:909
#define G_GNUC_CONST
Definition gmacros.h:637
gsize GType
Definition gtype.h:427
gint gboolean
Definition gtypes.h:56
G_BEGIN_DECLS typedef char gchar
Definition gtypes.h:52
void * gpointer
Definition gtypes.h:109
typedefG_BEGIN_DECLS struct _GVariant GVariant
Definition gvariant.h:36
json_t format(printf, 1, 2)))
const char * name
Definition lsqlite3.c:2154
void(* print_literal)(GApplicationCommandLine *cmdline, const gchar *message)
void(* printerr_literal)(GApplicationCommandLine *cmdline, const gchar *message)
void(* done)(GApplicationCommandLine *cmdline)
GApplicationCommandLinePrivate * priv