new GApplication implementation
[platform/upstream/glib.git] / gio / gapplication.h
1 /*
2  * Copyright © 2010 Codethink Limited
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License as published
6  * by the Free Software Foundation; either version 2 of the licence or (at
7  * your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General
15  * Public License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17  * Boston, MA 02111-1307, USA.
18  *
19  * Authors: Ryan Lortie <desrt@desrt.ca>
20  */
21
22 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
23 #error "Only <gio/gio.h> can be included directly."
24 #endif
25
26 #ifndef __G_APPLICATION_H__
27 #define __G_APPLICATION_H__
28
29 #include <gio/giotypes.h>
30
31 G_BEGIN_DECLS
32
33 #define G_TYPE_APPLICATION                                  (g_application_get_type ())
34 #define G_APPLICATION(inst)                                 (G_TYPE_CHECK_INSTANCE_CAST ((inst),                     \
35                                                              G_TYPE_APPLICATION, GApplication))
36 #define G_APPLICATION_CLASS(class)                          (G_TYPE_CHECK_CLASS_CAST ((class),                       \
37                                                              G_TYPE_APPLICATION, GApplicationClass))
38 #define G_IS_APPLICATION(inst)                              (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_APPLICATION))
39 #define G_IS_APPLICATION_CLASS(class)                       (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_APPLICATION))
40 #define G_APPLICATION_GET_CLASS(inst)                       (G_TYPE_INSTANCE_GET_CLASS ((inst),                      \
41                                                              G_TYPE_APPLICATION, GApplicationClass))
42
43 typedef struct _GApplicationPrivate                         GApplicationPrivate;
44 typedef struct _GApplicationClass                           GApplicationClass;
45
46 /**
47  * GApplication:
48  *
49  * The <structname>GApplication</structname> structure contains private
50  * data and should only be accessed using the provided API
51  *
52  * Since: 2.26
53  */
54 struct _GApplication
55 {
56   /*< private >*/
57   GObject parent_instance;
58
59   GApplicationPrivate *priv;
60 };
61
62 /**
63  * GApplicationClass:
64  * @startup: invoked on the primary instance immediately after registration
65  * @activate: invoked on the primary instance when an activation occurs
66  * @open: invoked on the primary instance when there are files to open
67  * @local_command_line: invoked (locally) when the process has been invoked via commandline execution.  The
68  *   virtual function has the chance to inspect (and possibly replace) the list of command line arguments.  See
69  *   g_application_run() for more information.
70  * @before_emit: invoked on the primary instance before 'activate', 'open' or any action invocation
71  * @after_emit: invoked on the primary instance after 'activate', 'open' or any action invocation
72  * @add_platform_data: invoked (locally) to add 'platform data' to be sent to the primary instance when
73  *   activating, opening or invoking actions
74  * @quit_mainloop: invoked on the primary instance when the use count of the application drops to zero (and
75  *   after any inactivity timeout, if requested)
76  * @run_mainloop: invoked on the primary instance from g_application_run() if the use-count is non-zero
77  *
78  * Since: 2.26
79  */
80 struct _GApplicationClass
81 {
82   /*< private >*/
83   GObjectClass parent_class;
84
85   /*< public >*/
86   /* signals */
87   void                      (* startup)             (GApplication             *application);
88
89   void                      (* activate)            (GApplication             *application);
90
91   void                      (* open)                (GApplication             *application,
92                                                      GFile                   **files,
93                                                      gint                      n_files,
94                                                      const gchar              *hint);
95
96   gpointer _reserved_1;
97
98   /* vfuncs */
99   gboolean                  (* local_command_line)  (GApplication             *application,
100                                                      GVariant                **arguments,
101                                                      int                      *exit_status);
102
103   gpointer _reserved_2;
104
105   void                      (* before_emit)         (GApplication             *application,
106                                                      GVariant                 *platform_data);
107   void                      (* after_emit)          (GApplication             *application,
108                                                      GVariant                 *platform_data);
109   void                      (* add_platform_data)   (GApplication             *application,
110                                                      GVariantBuilder          *builder);
111   void                      (* quit_mainloop)       (GApplication             *application);
112   void                      (* run_mainloop)        (GApplication             *application);
113
114   /*< private >*/
115   gpointer padding[12];
116 };
117
118 GType                   g_application_get_type                          (void) G_GNUC_CONST;
119
120 gboolean                g_application_id_is_valid                       (const gchar              *application_id);
121
122 GApplication *          g_application_new                               (const gchar              *application_id,
123                                                                          GApplicationFlags         flags);
124
125 const gchar *           g_application_get_application_id                (GApplication             *application);
126 void                    g_application_set_application_id                (GApplication             *application,
127                                                                          const gchar              *application_id);
128
129 guint                   g_application_get_inactivity_timeout            (GApplication             *application);
130 void                    g_application_set_inactivity_timeout            (GApplication             *application,
131                                                                          guint                     inactivity_timeout);
132
133 GApplicationFlags       g_application_get_flags                         (GApplication             *application);
134 void                    g_application_set_flags                         (GApplication             *application,
135                                                                          GApplicationFlags         flags);
136
137 gboolean                g_application_get_is_registered                 (GApplication             *application);
138 gboolean                g_application_get_is_remote                     (GApplication             *application);
139
140 gboolean                g_application_register                          (GApplication             *application,
141                                                                          GCancellable             *cancellable,
142                                                                          GError                  **error);
143
144 void                    g_application_hold                              (GApplication             *application);
145 void                    g_application_release                           (GApplication             *application);
146
147 void                    g_application_activate                          (GApplication             *application);
148
149 void                    g_application_open                              (GApplication             *application,
150                                                                          GFile                   **file,
151                                                                          gint                      n_files,
152                                                                          const gchar              *hint);
153
154 int                     g_application_run                               (GApplication             *application,
155                                                                          int                       argc,
156                                                                          char                    **argv);
157 int                     g_application_run_with_arguments                (GApplication             *application,
158                                                                          GVariant                 *arguments);
159
160 G_END_DECLS
161
162 #endif /* __G_APPLICATION_H__ */