gapplicationcommandline.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /* GIO - GLib Input, Output and Streaming Library
  2. *
  3. * Copyright © 2010 Codethink Limited
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License as published
  7. * by the Free Software Foundation; either version 2 of the licence or (at
  8. * 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. #ifndef __G_APPLICATION_COMMAND_LINE_H__
  21. #define __G_APPLICATION_COMMAND_LINE_H__
  22. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  23. #error "Only <gio/gio.h> can be included directly."
  24. #endif
  25. #include <gio/giotypes.h>
  26. G_BEGIN_DECLS
  27. #define G_TYPE_APPLICATION_COMMAND_LINE (g_application_command_line_get_type ())
  28. #define G_APPLICATION_COMMAND_LINE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
  29. G_TYPE_APPLICATION_COMMAND_LINE, \
  30. GApplicationCommandLine))
  31. #define G_APPLICATION_COMMAND_LINE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
  32. G_TYPE_APPLICATION_COMMAND_LINE, \
  33. GApplicationCommandLineClass))
  34. #define G_IS_APPLICATION_COMMAND_LINE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
  35. G_TYPE_APPLICATION_COMMAND_LINE))
  36. #define G_IS_APPLICATION_COMMAND_LINE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
  37. G_TYPE_APPLICATION_COMMAND_LINE))
  38. #define G_APPLICATION_COMMAND_LINE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
  39. G_TYPE_APPLICATION_COMMAND_LINE, \
  40. GApplicationCommandLineClass))
  41. typedef struct _GApplicationCommandLinePrivate GApplicationCommandLinePrivate;
  42. typedef struct _GApplicationCommandLineClass GApplicationCommandLineClass;
  43. struct _GApplicationCommandLine
  44. {
  45. /*< private >*/
  46. GObject parent_instance;
  47. GApplicationCommandLinePrivate *priv;
  48. };
  49. struct _GApplicationCommandLineClass
  50. {
  51. /*< private >*/
  52. GObjectClass parent_class;
  53. void (* print_literal) (GApplicationCommandLine *cmdline,
  54. const gchar *message);
  55. void (* printerr_literal) (GApplicationCommandLine *cmdline,
  56. const gchar *message);
  57. GInputStream * (* get_stdin) (GApplicationCommandLine *cmdline);
  58. gpointer padding[11];
  59. };
  60. GLIB_AVAILABLE_IN_ALL
  61. GType g_application_command_line_get_type (void) G_GNUC_CONST;
  62. GLIB_AVAILABLE_IN_ALL
  63. gchar ** g_application_command_line_get_arguments (GApplicationCommandLine *cmdline,
  64. int *argc);
  65. GLIB_AVAILABLE_IN_2_40
  66. GVariantDict * g_application_command_line_get_options_dict (GApplicationCommandLine *cmdline);
  67. GLIB_AVAILABLE_IN_2_36
  68. GInputStream * g_application_command_line_get_stdin (GApplicationCommandLine *cmdline);
  69. GLIB_AVAILABLE_IN_ALL
  70. const gchar * const * g_application_command_line_get_environ (GApplicationCommandLine *cmdline);
  71. GLIB_AVAILABLE_IN_ALL
  72. const gchar * g_application_command_line_getenv (GApplicationCommandLine *cmdline,
  73. const gchar *name);
  74. GLIB_AVAILABLE_IN_ALL
  75. const gchar * g_application_command_line_get_cwd (GApplicationCommandLine *cmdline);
  76. GLIB_AVAILABLE_IN_ALL
  77. gboolean g_application_command_line_get_is_remote (GApplicationCommandLine *cmdline);
  78. GLIB_AVAILABLE_IN_ALL
  79. void g_application_command_line_print (GApplicationCommandLine *cmdline,
  80. const gchar *format,
  81. ...) G_GNUC_PRINTF(2, 3);
  82. GLIB_AVAILABLE_IN_ALL
  83. void g_application_command_line_printerr (GApplicationCommandLine *cmdline,
  84. const gchar *format,
  85. ...) G_GNUC_PRINTF(2, 3);
  86. GLIB_AVAILABLE_IN_ALL
  87. int g_application_command_line_get_exit_status (GApplicationCommandLine *cmdline);
  88. GLIB_AVAILABLE_IN_ALL
  89. void g_application_command_line_set_exit_status (GApplicationCommandLine *cmdline,
  90. int exit_status);
  91. GLIB_AVAILABLE_IN_ALL
  92. GVariant * g_application_command_line_get_platform_data (GApplicationCommandLine *cmdline);
  93. GLIB_AVAILABLE_IN_2_36
  94. GFile * g_application_command_line_create_file_for_arg (GApplicationCommandLine *cmdline,
  95. const gchar *arg);
  96. G_END_DECLS
  97. #endif /* __G_APPLICATION_COMMAND_LINE_H__ */