1/* GIO - GLib Input, Output and Streaming Library
2 *
3 * Copyright © 2010 Codethink Limited
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
17 *
18 * Authors: Ryan Lortie <desrt@desrt.ca>
19 */
20
21#ifndef __G_APPLICATION_COMMAND_LINE_H__
22#define __G_APPLICATION_COMMAND_LINE_H__
23
24#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
25#error "Only <gio/gio.h> can be included directly."
26#endif
27
28#include <gio/giotypes.h>
29
30G_BEGIN_DECLS
31
32#define G_TYPE_APPLICATION_COMMAND_LINE (g_application_command_line_get_type ())
33#define G_APPLICATION_COMMAND_LINE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
34 G_TYPE_APPLICATION_COMMAND_LINE, \
35 GApplicationCommandLine))
36#define G_APPLICATION_COMMAND_LINE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
37 G_TYPE_APPLICATION_COMMAND_LINE, \
38 GApplicationCommandLineClass))
39#define G_IS_APPLICATION_COMMAND_LINE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
40 G_TYPE_APPLICATION_COMMAND_LINE))
41#define G_IS_APPLICATION_COMMAND_LINE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
42 G_TYPE_APPLICATION_COMMAND_LINE))
43#define G_APPLICATION_COMMAND_LINE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
44 G_TYPE_APPLICATION_COMMAND_LINE, \
45 GApplicationCommandLineClass))
46
47typedef struct _GApplicationCommandLinePrivate GApplicationCommandLinePrivate;
48typedef struct _GApplicationCommandLineClass GApplicationCommandLineClass;
49
50struct _GApplicationCommandLine
51{
52 /*< private >*/
53 GObject parent_instance;
54
55 GApplicationCommandLinePrivate *priv;
56};
57
58struct _GApplicationCommandLineClass
59{
60 /*< private >*/
61 GObjectClass parent_class;
62
63 void (* print_literal) (GApplicationCommandLine *cmdline,
64 const gchar *message);
65 void (* printerr_literal) (GApplicationCommandLine *cmdline,
66 const gchar *message);
67 GInputStream * (* get_stdin) (GApplicationCommandLine *cmdline);
68
69 gpointer padding[11];
70};
71
72GLIB_AVAILABLE_IN_ALL
73GType g_application_command_line_get_type (void) G_GNUC_CONST;
74
75GLIB_AVAILABLE_IN_ALL
76gchar ** g_application_command_line_get_arguments (GApplicationCommandLine *cmdline,
77 int *argc);
78
79GLIB_AVAILABLE_IN_2_40
80GVariantDict * g_application_command_line_get_options_dict (GApplicationCommandLine *cmdline);
81
82GLIB_AVAILABLE_IN_2_36
83GInputStream * g_application_command_line_get_stdin (GApplicationCommandLine *cmdline);
84
85GLIB_AVAILABLE_IN_ALL
86const gchar * const * g_application_command_line_get_environ (GApplicationCommandLine *cmdline);
87
88GLIB_AVAILABLE_IN_ALL
89const gchar * g_application_command_line_getenv (GApplicationCommandLine *cmdline,
90 const gchar *name);
91
92GLIB_AVAILABLE_IN_ALL
93const gchar * g_application_command_line_get_cwd (GApplicationCommandLine *cmdline);
94
95GLIB_AVAILABLE_IN_ALL
96gboolean g_application_command_line_get_is_remote (GApplicationCommandLine *cmdline);
97
98GLIB_AVAILABLE_IN_ALL
99void g_application_command_line_print (GApplicationCommandLine *cmdline,
100 const gchar *format,
101 ...) G_GNUC_PRINTF(2, 3);
102GLIB_AVAILABLE_IN_ALL
103void g_application_command_line_printerr (GApplicationCommandLine *cmdline,
104 const gchar *format,
105 ...) G_GNUC_PRINTF(2, 3);
106
107GLIB_AVAILABLE_IN_ALL
108int g_application_command_line_get_exit_status (GApplicationCommandLine *cmdline);
109GLIB_AVAILABLE_IN_ALL
110void g_application_command_line_set_exit_status (GApplicationCommandLine *cmdline,
111 int exit_status);
112
113GLIB_AVAILABLE_IN_ALL
114GVariant * g_application_command_line_get_platform_data (GApplicationCommandLine *cmdline);
115
116GLIB_AVAILABLE_IN_2_36
117GFile * g_application_command_line_create_file_for_arg (GApplicationCommandLine *cmdline,
118 const gchar *arg);
119
120G_END_DECLS
121
122#endif /* __G_APPLICATION_COMMAND_LINE_H__ */
123

source code of gtk/subprojects/glib/gio/gapplicationcommandline.h