More clearly define 'named menu' in the XML parser
[glib.git] / gio / gapplication.h
blob76fcf935f01d89504a4eeebd6987cbace58130d3
1 /*
2 * Copyright © 2010 Codethink Limited
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.
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.
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.
19 * Authors: Ryan Lortie <desrt@desrt.ca>
22 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
23 #error "Only <gio/gio.h> can be included directly."
24 #endif
26 #ifndef __G_APPLICATION_H__
27 #define __G_APPLICATION_H__
29 #include <gio/giotypes.h>
31 G_BEGIN_DECLS
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))
43 typedef struct _GApplicationPrivate GApplicationPrivate;
44 typedef struct _GApplicationClass GApplicationClass;
46 /**
47 * GApplication:
49 * Since: 2.28
51 struct _GApplication
53 /*< private >*/
54 GObject parent_instance;
56 GApplicationPrivate *priv;
59 struct _GApplicationClass
61 /*< private >*/
62 GObjectClass parent_class;
64 /*< public >*/
65 /* signals */
66 void (* startup) (GApplication *application);
68 void (* activate) (GApplication *application);
70 void (* open) (GApplication *application,
71 GFile **files,
72 gint n_files,
73 const gchar *hint);
75 int (* command_line) (GApplication *application,
76 GApplicationCommandLine *command_line);
78 /* vfuncs */
79 gboolean (* local_command_line) (GApplication *application,
80 gchar ***arguments,
81 int *exit_status);
83 void (* before_emit) (GApplication *application,
84 GVariant *platform_data);
85 void (* after_emit) (GApplication *application,
86 GVariant *platform_data);
87 void (* add_platform_data) (GApplication *application,
88 GVariantBuilder *builder);
89 void (* quit_mainloop) (GApplication *application);
90 void (* run_mainloop) (GApplication *application);
91 void (* shutdown) (GApplication *application);
93 /*< private >*/
94 gpointer padding[11];
97 GType g_application_get_type (void) G_GNUC_CONST;
99 gboolean g_application_id_is_valid (const gchar *application_id);
101 GApplication * g_application_new (const gchar *application_id,
102 GApplicationFlags flags);
104 const gchar * g_application_get_application_id (GApplication *application);
105 void g_application_set_application_id (GApplication *application,
106 const gchar *application_id);
108 guint g_application_get_inactivity_timeout (GApplication *application);
109 void g_application_set_inactivity_timeout (GApplication *application,
110 guint inactivity_timeout);
112 GApplicationFlags g_application_get_flags (GApplication *application);
113 void g_application_set_flags (GApplication *application,
114 GApplicationFlags flags);
116 GLIB_DEPRECATED
117 void g_application_set_action_group (GApplication *application,
118 GActionGroup *action_group);
120 void g_application_set_app_menu (GApplication *application,
121 GMenuModel *app_menu);
122 GMenuModel *g_application_get_app_menu (GApplication *application);
124 void g_application_set_menubar (GApplication *application,
125 GMenuModel *menubar);
126 GMenuModel * g_application_get_menubar (GApplication *application);
128 gboolean g_application_get_is_registered (GApplication *application);
129 gboolean g_application_get_is_remote (GApplication *application);
131 gboolean g_application_register (GApplication *application,
132 GCancellable *cancellable,
133 GError **error);
135 void g_application_hold (GApplication *application);
136 void g_application_release (GApplication *application);
138 void g_application_activate (GApplication *application);
140 void g_application_open (GApplication *application,
141 GFile **files,
142 gint n_files,
143 const gchar *hint);
145 int g_application_run (GApplication *application,
146 int argc,
147 char **argv);
149 GApplication * g_application_get_default (void);
150 void g_application_set_default (GApplication *application);
152 G_END_DECLS
154 #endif /* __G_APPLICATION_H__ */