gresourcefile: simplify path canonicalization
[glib.git] / gio / gapplicationcommandline.h
blob6610e86bd21d8fc9060084da694925b804972040
1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright © 2010 Codethink Limited
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.
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.
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/>.
18 * Authors: Ryan Lortie <desrt@desrt.ca>
21 #ifndef __G_APPLICATION_COMMAND_LINE_H__
22 #define __G_APPLICATION_COMMAND_LINE_H__
24 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
25 #error "Only <gio/gio.h> can be included directly."
26 #endif
28 #include <gio/giotypes.h>
30 G_BEGIN_DECLS
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))
47 typedef struct _GApplicationCommandLinePrivate GApplicationCommandLinePrivate;
48 typedef struct _GApplicationCommandLineClass GApplicationCommandLineClass;
50 struct _GApplicationCommandLine
52 /*< private >*/
53 GObject parent_instance;
55 GApplicationCommandLinePrivate *priv;
58 struct _GApplicationCommandLineClass
60 /*< private >*/
61 GObjectClass parent_class;
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);
69 gpointer padding[11];
72 GLIB_AVAILABLE_IN_ALL
73 GType g_application_command_line_get_type (void) G_GNUC_CONST;
75 GLIB_AVAILABLE_IN_ALL
76 gchar ** g_application_command_line_get_arguments (GApplicationCommandLine *cmdline,
77 int *argc);
79 GLIB_AVAILABLE_IN_2_40
80 GVariantDict * g_application_command_line_get_options_dict (GApplicationCommandLine *cmdline);
82 GLIB_AVAILABLE_IN_2_36
83 GInputStream * g_application_command_line_get_stdin (GApplicationCommandLine *cmdline);
85 GLIB_AVAILABLE_IN_ALL
86 const gchar * const * g_application_command_line_get_environ (GApplicationCommandLine *cmdline);
88 GLIB_AVAILABLE_IN_ALL
89 const gchar * g_application_command_line_getenv (GApplicationCommandLine *cmdline,
90 const gchar *name);
92 GLIB_AVAILABLE_IN_ALL
93 const gchar * g_application_command_line_get_cwd (GApplicationCommandLine *cmdline);
95 GLIB_AVAILABLE_IN_ALL
96 gboolean g_application_command_line_get_is_remote (GApplicationCommandLine *cmdline);
98 GLIB_AVAILABLE_IN_ALL
99 void g_application_command_line_print (GApplicationCommandLine *cmdline,
100 const gchar *format,
101 ...) G_GNUC_PRINTF(2, 3);
102 GLIB_AVAILABLE_IN_ALL
103 void g_application_command_line_printerr (GApplicationCommandLine *cmdline,
104 const gchar *format,
105 ...) G_GNUC_PRINTF(2, 3);
107 GLIB_AVAILABLE_IN_ALL
108 int g_application_command_line_get_exit_status (GApplicationCommandLine *cmdline);
109 GLIB_AVAILABLE_IN_ALL
110 void g_application_command_line_set_exit_status (GApplicationCommandLine *cmdline,
111 int exit_status);
113 GLIB_AVAILABLE_IN_ALL
114 GVariant * g_application_command_line_get_platform_data (GApplicationCommandLine *cmdline);
116 GLIB_AVAILABLE_IN_2_36
117 GFile * g_application_command_line_create_file_for_arg (GApplicationCommandLine *cmdline,
118 const gchar *arg);
120 G_END_DECLS
122 #endif /* __G_APPLICATION_COMMAND_LINE_H__ */