Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
gapplicationcommandline.h File Reference
#include <gio/giotypes.h>

Go to the source code of this file.

Data Structures

struct  _GApplicationCommandLine
 
struct  _GApplicationCommandLineClass
 

Macros

#define G_TYPE_APPLICATION_COMMAND_LINE   (g_application_command_line_get_type ())
 
#define G_APPLICATION_COMMAND_LINE(inst)
 
#define G_APPLICATION_COMMAND_LINE_CLASS(class)
 
#define G_IS_APPLICATION_COMMAND_LINE(inst)
 
#define G_IS_APPLICATION_COMMAND_LINE_CLASS(class)
 
#define G_APPLICATION_COMMAND_LINE_GET_CLASS(inst)
 

Typedefs

typedef struct _GApplicationCommandLinePrivate GApplicationCommandLinePrivate
 
typedef struct _GApplicationCommandLineClass GApplicationCommandLineClass
 

Functions

GIO_AVAILABLE_IN_ALL GType g_application_command_line_get_type (void) G_GNUC_CONST
 
GIO_AVAILABLE_IN_ALL gchar ** g_application_command_line_get_arguments (GApplicationCommandLine *cmdline, int *argc)
 
GIO_AVAILABLE_IN_2_40 GVariantDictg_application_command_line_get_options_dict (GApplicationCommandLine *cmdline)
 
GIO_AVAILABLE_IN_2_36 GInputStreamg_application_command_line_get_stdin (GApplicationCommandLine *cmdline)
 
GIO_AVAILABLE_IN_ALL const gchar *const * g_application_command_line_get_environ (GApplicationCommandLine *cmdline)
 
GIO_AVAILABLE_IN_ALL const gcharg_application_command_line_getenv (GApplicationCommandLine *cmdline, const gchar *name)
 
GIO_AVAILABLE_IN_ALL const gcharg_application_command_line_get_cwd (GApplicationCommandLine *cmdline)
 
GIO_AVAILABLE_IN_ALL gboolean g_application_command_line_get_is_remote (GApplicationCommandLine *cmdline)
 
GIO_AVAILABLE_IN_2_80 void g_application_command_line_print_literal (GApplicationCommandLine *cmdline, const gchar *message)
 
GIO_AVAILABLE_IN_2_80 void g_application_command_line_printerr_literal (GApplicationCommandLine *cmdline, const gchar *message)
 
GIO_AVAILABLE_IN_ALL void g_application_command_line_print (GApplicationCommandLine *cmdline, const gchar *format,...) G_GNUC_PRINTF(2
 
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 void GIO_AVAILABLE_IN_ALL void GIO_AVAILABLE_IN_ALL int g_application_command_line_get_exit_status (GApplicationCommandLine *cmdline)
 
GIO_AVAILABLE_IN_ALL void g_application_command_line_set_exit_status (GApplicationCommandLine *cmdline, int exit_status)
 
GIO_AVAILABLE_IN_ALL GVariantg_application_command_line_get_platform_data (GApplicationCommandLine *cmdline)
 
GIO_AVAILABLE_IN_2_36 GFileg_application_command_line_create_file_for_arg (GApplicationCommandLine *cmdline, const gchar *arg)
 
GIO_AVAILABLE_IN_2_80 void g_application_command_line_done (GApplicationCommandLine *cmdline)
 

Macro Definition Documentation

◆ G_APPLICATION_COMMAND_LINE

#define G_APPLICATION_COMMAND_LINE ( inst)
Value:
#define G_TYPE_APPLICATION_COMMAND_LINE
#define G_TYPE_CHECK_INSTANCE_CAST(instance, g_type, c_type)
Definition gtype.h:528

Definition at line 35 of file gapplicationcommandline.h.

35#define G_APPLICATION_COMMAND_LINE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
36 G_TYPE_APPLICATION_COMMAND_LINE, \
37 GApplicationCommandLine))

◆ G_APPLICATION_COMMAND_LINE_CLASS

#define G_APPLICATION_COMMAND_LINE_CLASS ( class)
Value:

Definition at line 38 of file gapplicationcommandline.h.

38#define G_APPLICATION_COMMAND_LINE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
39 G_TYPE_APPLICATION_COMMAND_LINE, \
40 GApplicationCommandLineClass))

◆ G_APPLICATION_COMMAND_LINE_GET_CLASS

#define G_APPLICATION_COMMAND_LINE_GET_CLASS ( inst)
Value:
#define G_TYPE_INSTANCE_GET_CLASS(instance, g_type, c_type)
Definition gtype.h:571

Definition at line 45 of file gapplicationcommandline.h.

45#define G_APPLICATION_COMMAND_LINE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
46 G_TYPE_APPLICATION_COMMAND_LINE, \
47 GApplicationCommandLineClass))

◆ G_IS_APPLICATION_COMMAND_LINE

#define G_IS_APPLICATION_COMMAND_LINE ( inst)
Value:
#define G_TYPE_CHECK_INSTANCE_TYPE(instance, g_type)
Definition gtype.h:541

Definition at line 41 of file gapplicationcommandline.h.

41#define G_IS_APPLICATION_COMMAND_LINE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
42 G_TYPE_APPLICATION_COMMAND_LINE))

◆ G_IS_APPLICATION_COMMAND_LINE_CLASS

#define G_IS_APPLICATION_COMMAND_LINE_CLASS ( class)
Value:
#define G_TYPE_CHECK_CLASS_TYPE(g_class, g_type)
Definition gtype.h:610

Definition at line 43 of file gapplicationcommandline.h.

43#define G_IS_APPLICATION_COMMAND_LINE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
44 G_TYPE_APPLICATION_COMMAND_LINE))

◆ G_TYPE_APPLICATION_COMMAND_LINE

#define G_TYPE_APPLICATION_COMMAND_LINE   (g_application_command_line_get_type ())

Definition at line 34 of file gapplicationcommandline.h.

Typedef Documentation

◆ GApplicationCommandLineClass

◆ GApplicationCommandLinePrivate

typedef struct _GApplicationCommandLinePrivate GApplicationCommandLinePrivate

Definition at line 49 of file gapplicationcommandline.h.

Function Documentation

◆ g_application_command_line_create_file_for_arg()

GIO_AVAILABLE_IN_2_36 GFile * g_application_command_line_create_file_for_arg ( GApplicationCommandLine * cmdline,
const gchar * arg )

◆ g_application_command_line_done()

GIO_AVAILABLE_IN_2_80 void g_application_command_line_done ( GApplicationCommandLine * cmdline)

◆ g_application_command_line_get_arguments()

GIO_AVAILABLE_IN_ALL gchar ** g_application_command_line_get_arguments ( GApplicationCommandLine * cmdline,
int * argc )

◆ g_application_command_line_get_cwd()

GIO_AVAILABLE_IN_ALL const gchar * g_application_command_line_get_cwd ( GApplicationCommandLine * cmdline)

◆ g_application_command_line_get_environ()

GIO_AVAILABLE_IN_ALL const gchar *const * g_application_command_line_get_environ ( GApplicationCommandLine * cmdline)

◆ g_application_command_line_get_exit_status()

GIO_AVAILABLE_IN_ALL void GIO_AVAILABLE_IN_ALL void GIO_AVAILABLE_IN_ALL int g_application_command_line_get_exit_status ( GApplicationCommandLine * cmdline)

◆ g_application_command_line_get_is_remote()

GIO_AVAILABLE_IN_ALL gboolean g_application_command_line_get_is_remote ( GApplicationCommandLine * cmdline)

◆ g_application_command_line_get_options_dict()

GIO_AVAILABLE_IN_2_40 GVariantDict * g_application_command_line_get_options_dict ( GApplicationCommandLine * cmdline)

◆ g_application_command_line_get_platform_data()

GIO_AVAILABLE_IN_ALL GVariant * g_application_command_line_get_platform_data ( GApplicationCommandLine * cmdline)

◆ g_application_command_line_get_stdin()

GIO_AVAILABLE_IN_2_36 GInputStream * g_application_command_line_get_stdin ( GApplicationCommandLine * cmdline)

◆ g_application_command_line_get_type()

GIO_AVAILABLE_IN_ALL GType g_application_command_line_get_type ( void )

◆ g_application_command_line_getenv()

GIO_AVAILABLE_IN_ALL const gchar * g_application_command_line_getenv ( GApplicationCommandLine * cmdline,
const gchar * name )

◆ g_application_command_line_print()

GIO_AVAILABLE_IN_ALL void g_application_command_line_print ( GApplicationCommandLine * cmdline,
const gchar * format,
... )

◆ g_application_command_line_print_literal()

GIO_AVAILABLE_IN_2_80 void g_application_command_line_print_literal ( GApplicationCommandLine * cmdline,
const gchar * message )

◆ g_application_command_line_printerr()

GIO_AVAILABLE_IN_ALL void GIO_AVAILABLE_IN_ALL void g_application_command_line_printerr ( GApplicationCommandLine * cmdline,
const gchar * format,
... )

◆ g_application_command_line_printerr_literal()

GIO_AVAILABLE_IN_2_80 void g_application_command_line_printerr_literal ( GApplicationCommandLine * cmdline,
const gchar * message )

◆ g_application_command_line_set_exit_status()

GIO_AVAILABLE_IN_ALL void g_application_command_line_set_exit_status ( GApplicationCommandLine * cmdline,
int exit_status )