1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright © 2010 Red Hat, Inc
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 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, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Authors: Colin Walters <walters@verbum.org>
21 * Emmanuele Bassi <ebassi@linux.intel.com>
29 #include <gobject/gvaluecollector.h>
31 #include "gapplication.h"
32 #include "gio-marshal.h"
37 #include "gdbusconnection.h"
38 #include "gdbusintrospection.h"
39 #include "gdbusmethodinvocation.h"
44 * SECTION: gapplication
45 * @title: GApplication
46 * @short_description: Core application class
48 * A #GApplication is the foundation of an application, unique for
49 * a given application identifier. The #GApplication wraps some
50 * low-level platform-specific services; it's expected that most
51 * software will use a higher-level application class such as
52 * #GtkApplication or #MxApplication.
54 * In addition to single-instance-ness, #GApplication provides support
55 * for 'actions', which can be presented to the user in a platform-specific
56 * way (e.g. Windows 7 jump lists). Note that these are just simple actions
57 * without parameters. For more flexible scriptability, implementing a
58 * a separate D-Bus interface is recommended, see e.g.
59 * <xref linkend="gdbus-convenience"/>.
61 * Before using #GApplication, you must choose an "application identifier".
62 * The expected form of an application identifier is very close to that of
63 * of a <ulink url="http://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-names-interface">DBus bus name</ulink>.
64 * Examples include: "com.example.MyApp" "org.example.internal-apps.Calculator"
65 * For convenience, the restrictions on application identifiers are reproduced
68 * <listitem>Application identifiers must contain only the ASCII characters "[A-Z][a-z][0-9]_-" and must not begin with a digit.</listitem>
69 * <listitem>Application identifiers must contain at least one '.' (period) character (and thus at least two elements).</listitem>
70 * <listitem>Application identifiers must not begin with a '.' (period) character.</listitem>
71 * <listitem>Application identifiers must not exceed 255 characters.</listitem>
74 * <refsect2><title>D-Bus implementation</title>
76 * On UNIX systems using D-Bus, #GApplication is implemented by claiming the
77 * application identifier as a bus name on the session bus. The implementation
78 * exports an object at the object path that is created by replacing '.' with
79 * '/' in the application identifier (e.g. the object path for the
80 * application id 'org.gtk.TestApp' is '/org/gtk/TestApp'). The object
81 * implements the org.gtk.Application interface.
83 * <classsynopsis class="interface">
84 * <ooclass><interfacename>org.gtk.Application</interfacename></ooclass>
87 * <methodname>Activate</methodname>
88 * <methodparam><modifier>in</modifier><type>aay</type><parameter>arguments</parameter></methodparam>
89 * <methodparam><modifier>in</modifier><type>a{sv}</type><parameter>data</parameter></methodparam>
93 * <methodname>InvokeAction</methodname>
94 * <methodparam><modifier>in</modifier><type>s</type><parameter>action</parameter></methodparam>
95 * <methodparam><modifier>in</modifier><type>u</type><parameter>timestamp</parameter></methodparam>
98 * <type>a{s(sb)}</type>
99 * <methodname>ListActions</methodname>
104 * <methodname>Quit</methodname>
105 * <methodparam><modifier>in</modifier><type>u</type><parameter>timestamp</parameter></methodparam>
108 * <modifier>Signal</modifier>
110 * <methodname>ActionsChanged</methodname>
115 * The <methodname>Activate</methodname> function is called on the existing
116 * application instance when a second instance fails to take the bus name.
117 * @arguments contains the commandline arguments given to the second instance
118 * and @data contains platform-specific additional data, see
119 * g_application_format_activation_data().
122 * The <methodname>InvokeAction</methodname> function can be called to invoke
123 * one of the actions exported by the application. The @timestamp parameter
124 * should be taken from the user event that triggered the method call (e.g.
125 * a button press event).
128 * The <methodname>ListActions</methodname> function returns a dictionary
129 * with the exported actions of the application. The keys of the dictionary
130 * are the action names, and the values are structs containing the description
131 * for the action and a boolean that represents if the action is enabled or not.
134 * The <methodname>Quit</methodname> function can be called to terminate
135 * the application. The @timestamp parameter should be taken from the user
136 * event that triggered the method call (e.g. a button press event).
139 * The <methodname>ActionsChanged</methodname> signal is emitted when the
140 * exported actions change (i.e. an action is added, removed, enabled,
141 * disabled, or otherwise changed).
144 * #GApplication is supported since Gio 2.26.
149 G_DEFINE_TYPE (GApplication, g_application, G_TYPE_OBJECT);
169 static guint application_signals[LAST_SIGNAL] = { 0 };
175 } GApplicationAction;
177 struct _GApplicationPrivate
180 GHashTable *actions; /* name -> GApplicationAction */
183 guint default_quit : 1;
186 guint actions_changed_id;
190 GDBusConnection *session_bus;
194 static GApplication *primary_application = NULL;
195 static GHashTable *instances_for_appid = NULL;
197 static void _g_application_platform_init (GApplication *app);
198 static gboolean _g_application_platform_acquire_single_instance (GApplication *app,
200 static void _g_application_platform_remote_invoke_action (GApplication *app,
203 static void _g_application_platform_remote_quit (GApplication *app,
205 static void _g_application_platform_activate (GApplication *app,
206 GVariant *data) G_GNUC_NORETURN;
207 static void _g_application_platform_on_actions_changed (GApplication *app);
210 #include "gdbusapplication.c"
212 #include "gnullapplication.c"
216 _g_application_validate_id (const char *id)
220 if (strlen (id) > 255)
223 if (!g_ascii_isalpha (*id))
230 if (g_ascii_isalnum (*id) || (*id == '-') || (*id == '_'))
232 else if (allow_dot && *id == '.')
241 init_appid_statics (gpointer data)
243 instances_for_appid = g_hash_table_new (g_str_hash, g_str_equal);
247 static GApplication *
248 application_for_appid (const char *appid)
250 static GOnce appid_once = G_ONCE_INIT;
252 g_once (&appid_once, init_appid_statics, NULL);
254 return g_hash_table_lookup (instances_for_appid, appid);
258 g_application_default_quit (GApplication *application,
261 g_return_val_if_fail (application->priv->mainloop != NULL, FALSE);
262 g_main_loop_quit (application->priv->mainloop);
268 g_application_default_run (GApplication *application)
270 if (application->priv->mainloop == NULL)
271 application->priv->mainloop = g_main_loop_new (NULL, TRUE);
273 g_main_loop_run (application->priv->mainloop);
277 _g_application_handle_activation (GApplication *app,
280 GVariant *platform_data)
282 GVariantBuilder builder;
286 g_variant_builder_init (&builder, G_VARIANT_TYPE ("(aaya{sv})"));
287 g_variant_builder_open (&builder, G_VARIANT_TYPE ("aay"));
289 for (i = 1; i < argc; i++)
294 g_variant_builder_open (&builder, G_VARIANT_TYPE ("ay"));
296 argv_bytes = (guint8*) argv[i];
297 for (j = 0; argv_bytes[j]; j++)
298 g_variant_builder_add_value (&builder,
299 g_variant_new_byte (argv_bytes[j]));
300 g_variant_builder_close (&builder);
302 g_variant_builder_close (&builder);
305 g_variant_builder_add (&builder, "@a{sv}", platform_data);
308 g_variant_builder_open (&builder, G_VARIANT_TYPE ("a{sv}"));
309 g_variant_builder_close (&builder);
312 message = g_variant_builder_end (&builder);
313 _g_application_platform_activate (app, message);
314 g_variant_unref (message);
318 timeout_handle_actions_changed (gpointer user_data)
320 GApplication *application = user_data;
322 application->priv->actions_changed_id = 0;
324 _g_application_platform_on_actions_changed (application);
330 queue_actions_change_notification (GApplication *application)
332 GApplicationPrivate *priv = application->priv;
334 if (priv->actions_changed_id == 0)
335 priv->actions_changed_id = g_timeout_add (0, timeout_handle_actions_changed, application);
339 g_application_action_free (gpointer data)
341 if (G_LIKELY (data != NULL))
343 GApplicationAction *action = data;
345 g_free (action->name);
346 g_free (action->description);
348 g_slice_free (GApplicationAction, action);
355 * @appid: System-dependent application identifier
357 * Create a new #GApplication. The application is initially in
358 * "remote" mode. Almost certainly, you want to call
359 * g_application_register() immediately after this function, which
360 * will finish initialization.
362 * As a convenience, this function is defined to call g_type_init() as
363 * its very first action.
365 * Returns: (transfer full): An application instance
370 g_application_new (const gchar *appid)
374 return G_APPLICATION (g_object_new (G_TYPE_APPLICATION, "application-id", appid, NULL));
378 * g_application_register_with_data:
379 * @application: A #GApplication
380 * @argc: System argument count
381 * @argv: (array length=argc): System argument vector
382 * @platform_data: (allow-none): Arbitrary platform-specific data, must have signature "a{sv}"
384 * Ensure the current process is the unique owner of the application.
385 * If successful, the #GApplication:is-remote property will be changed
386 * to %FALSE, and it is safe to continue creating other resources
387 * such as graphics windows.
389 * If the given @appid is already running in another process, the
390 * #GApplication:default-exit property will be evaluated. If it's
391 * %TRUE, then a platform-specific action such as bringing any
392 * graphics windows associated with the application to the foreground
393 * may be initiated. After that, the current process will terminate.
394 * If %FALSE, then the application remains in the #GApplication:is-remote
395 * state, and you can e.g. call g_application_invoke_action().
397 * This function may do synchronous I/O to obtain unique ownership
398 * of the application id, and will block the calling thread in this
402 g_application_register_with_data (GApplication *application,
405 GVariant *platform_data)
407 g_return_if_fail (application->priv->appid != NULL);
408 g_return_if_fail (application->priv->is_remote);
409 g_return_if_fail (platform_data == NULL
410 || g_variant_is_of_type (platform_data, G_VARIANT_TYPE ("a{sv}")) == 0);
412 if (!_g_application_platform_acquire_single_instance (application, NULL))
414 if (application->priv->default_quit)
415 _g_application_handle_activation (application, argc, argv, platform_data);
420 application->priv->is_remote = FALSE;
422 _g_application_platform_init (application);
426 * g_application_new_and_register:
427 * @appid: An application identifier
428 * @argc: System argument count
429 * @argv: (array length=argc): System argument vector
431 * This is a convenience function which combines g_application_new()
432 * with g_application_register_with_data(). Therefore, it may block
433 * the calling thread just like g_application_register_with_data().
436 g_application_new_and_register (const gchar *appid,
440 GApplication *app = g_application_new (appid);
441 g_application_register_with_data (app, argc, argv, NULL);
446 * g_application_add_action:
447 * @application: a #GApplication
448 * @name: the action name
449 * @description: the action description; can be a translatable
452 * Adds an action @name to the list of exported actions of @application.
454 * It is an error to call this function if @application is a proxy for
455 * a remote application.
457 * You can invoke an action using g_application_invoke_action().
459 * The newly added action is enabled by default; you can call
460 * g_application_set_action_enabled() to disable it.
465 g_application_add_action (GApplication *application,
467 const gchar *description)
469 GApplicationPrivate *priv;
470 GApplicationAction *action;
472 g_return_if_fail (G_IS_APPLICATION (application));
473 g_return_if_fail (name != NULL && *name != '\0');
474 g_return_if_fail (!application->priv->is_remote);
476 priv = application->priv;
478 g_return_if_fail (g_hash_table_lookup (priv->actions, name) == NULL);
480 action = g_slice_new (GApplicationAction);
481 action->name = g_strdup (name);
482 action->description = g_strdup (description);
483 action->enabled = TRUE;
485 g_hash_table_insert (priv->actions, action->name, action);
486 queue_actions_change_notification (application);
490 * g_application_remove_action:
491 * @application: a #GApplication
492 * @name: the name of the action to remove
494 * Removes the action @name from the list of exported actions of @application.
496 * It is an error to call this function if @application is a proxy for
497 * a remote application.
502 g_application_remove_action (GApplication *application,
505 GApplicationPrivate *priv;
507 g_return_if_fail (G_IS_APPLICATION (application));
508 g_return_if_fail (name != NULL && *name != '\0');
509 g_return_if_fail (!application->priv->is_remote);
511 priv = application->priv;
513 g_return_if_fail (g_hash_table_lookup (priv->actions, name) != NULL);
515 g_hash_table_remove (priv->actions, name);
516 queue_actions_change_notification (application);
520 * g_application_invoke_action:
521 * @application: a #GApplication
522 * @name: the name of the action to invoke
523 * @timestamp: the timestamp that is going to be passed to
524 * the #GApplication::action signal
526 * Invokes the action @name of the passed #GApplication.
528 * This function has different behavior depending on whether @application
529 * is acting as a proxy for another process. In the normal case where
530 * the current process is hosting the application, and the specified
531 * action exists and is enabled, the #GApplication::action signal will
534 * If @application is a proxy, then the specified action will be invoked
535 * in the remote process. It is not necessary to call
536 * g_application_add_action() in the current process in order to invoke
542 g_application_invoke_action (GApplication *application,
546 GApplicationPrivate *priv;
547 GApplicationAction *action;
549 g_return_if_fail (G_IS_APPLICATION (application));
550 g_return_if_fail (name != NULL);
552 priv = application->priv;
556 _g_application_platform_remote_invoke_action (application, name, timestamp);
560 action = g_hash_table_lookup (priv->actions, name);
561 g_return_if_fail (action != NULL);
562 if (!action->enabled)
565 g_signal_emit (application, application_signals[ACTION],
566 g_quark_from_string (name),
572 * g_application_list_actions:
573 * @application: a #GApplication
575 * Retrieves the list of action names currently exported by @application.
577 * It is an error to call this function if @application is a proxy for
578 * a remote application.
580 * Return value: (transfer full): a newly allocation, %NULL-terminated array
581 * of strings containing action names; use g_strfreev() to free the
582 * resources used by the returned array
587 g_application_list_actions (GApplication *application)
589 GApplicationPrivate *priv;
595 g_return_val_if_fail (G_IS_APPLICATION (application), NULL);
596 g_return_val_if_fail (!application->priv->is_remote, NULL);
598 priv = application->priv;
600 retval = g_new (gchar*, g_hash_table_size (priv->actions));
603 g_hash_table_iter_init (&iter, priv->actions);
604 while (g_hash_table_iter_next (&iter, &key, NULL))
605 retval[i++] = g_strdup (key);
613 * g_application_set_action_enabled:
614 * @application: a #GApplication
615 * @name: the name of the application
616 * @enabled: whether to enable or disable the action @name
618 * Sets whether the action @name inside @application should be enabled
621 * It is an error to call this function if @application is a proxy for
622 * a remote application.
624 * Invoking a disabled action will not result in the #GApplication::action
625 * signal being emitted.
630 g_application_set_action_enabled (GApplication *application,
634 GApplicationAction *action;
636 g_return_if_fail (G_IS_APPLICATION (application));
637 g_return_if_fail (name != NULL);
638 g_return_if_fail (!application->priv->is_remote);
642 action = g_hash_table_lookup (application->priv->actions, name);
643 g_return_if_fail (action != NULL);
644 if (action->enabled == enabled)
647 action->enabled = enabled;
649 queue_actions_change_notification (application);
654 * g_application_get_action_description:
655 * @application: a #GApplication
658 * Gets the description of the action @name.
660 * It is an error to call this function if @application is a proxy for
661 * a remote application.
663 * Returns: Description for the given action named @name
667 G_CONST_RETURN gchar *
668 g_application_get_action_description (GApplication *application,
671 GApplicationAction *action;
673 g_return_val_if_fail (G_IS_APPLICATION (application), NULL);
674 g_return_val_if_fail (name != NULL, NULL);
675 g_return_val_if_fail (!application->priv->is_remote, NULL);
677 action = g_hash_table_lookup (application->priv->actions, name);
678 g_return_val_if_fail (action != NULL, NULL);
680 return action->description;
685 * g_application_get_action_enabled:
686 * @application: a #GApplication
687 * @name: the name of the action
689 * Retrieves whether the action @name is enabled or not.
691 * See g_application_set_action_enabled().
693 * It is an error to call this function if @application is a proxy for
694 * a remote application.
696 * Return value: %TRUE if the action was enabled, and %FALSE otherwise
701 g_application_get_action_enabled (GApplication *application,
704 GApplicationAction *action;
706 g_return_val_if_fail (G_IS_APPLICATION (application), FALSE);
707 g_return_val_if_fail (name != NULL, FALSE);
708 g_return_val_if_fail (!application->priv->is_remote, FALSE);
710 action = g_hash_table_lookup (application->priv->actions, name);
711 g_return_val_if_fail (action != NULL, FALSE);
713 return action->enabled;
718 * @application: a #GApplication
720 * Starts the application.
722 * The default implementation of this virtual function will simply run
725 * It is an error to call this function if @application is a proxy for
726 * a remote application.
731 g_application_run (GApplication *application)
733 g_return_if_fail (G_IS_APPLICATION (application));
734 g_return_if_fail (!application->priv->is_remote);
736 G_APPLICATION_GET_CLASS (application)->run (application);
740 * g_application_quit:
741 * @application: a #GApplication
742 * @timestamp: Platform-specific event timestamp, may be 0 for default
744 * Request that the application quits.
746 * This function has different behavior depending on whether @application
747 * is acting as a proxy for another process. In the normal case where
748 * the current process is hosting the application, the default
749 * implementation will quit the main loop created by g_application_run().
751 * If @application is a proxy, then the remote process will be asked
754 * Returns: %TRUE if the application accepted the request, %FALSE otherwise
759 g_application_quit (GApplication *application,
762 gboolean retval = FALSE;
764 g_return_val_if_fail (G_IS_APPLICATION (application), FALSE);
766 if (application->priv->is_remote)
768 _g_application_platform_remote_quit (application, timestamp);
772 g_signal_emit (application, application_signals[QUIT], 0, timestamp, &retval);
778 * g_application_get_instance:
780 * In the normal case where there is exactly one #GApplication instance
781 * in this process, return that instance. If there are multiple, the
782 * first one created will be returned. Otherwise, return %NULL.
784 * Returns: (transfer none): The primary instance of #GApplication,
785 * or %NULL if none is set
790 g_application_get_instance (void)
792 return primary_application;
796 * g_application_get_id:
797 * @application: a #GApplication
799 * Retrieves the platform-specific identifier for the #GApplication.
801 * Return value: The platform-specific identifier. The returned string
802 * is owned by the #GApplication instance and it should never be
807 G_CONST_RETURN gchar *
808 g_application_get_id (GApplication *application)
810 g_return_val_if_fail (G_IS_APPLICATION (application), NULL);
812 return application->priv->appid;
816 * g_application_is_remote:
817 * @application: a #GApplication
819 * Returns: %TRUE if this object represents a proxy for a remote application.
822 g_application_is_remote (GApplication *application)
824 g_return_val_if_fail (G_IS_APPLICATION (application), FALSE);
826 return application->priv->is_remote;
830 g_application_init (GApplication *app)
832 app->priv = G_TYPE_INSTANCE_GET_PRIVATE (app,
834 GApplicationPrivate);
836 app->priv->actions = g_hash_table_new_full (g_str_hash, g_str_equal,
838 g_application_action_free);
839 app->priv->default_quit = TRUE;
840 app->priv->is_remote = TRUE;
844 g_application_get_property (GObject *object,
849 GApplication *app = G_APPLICATION (object);
853 case PROP_APPLICATION_ID:
854 g_value_set_string (value, g_application_get_id (app));
857 case PROP_DEFAULT_QUIT:
858 g_value_set_boolean (value, app->priv->default_quit);
862 g_value_set_boolean (value, g_application_is_remote (app));
866 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
871 g_application_set_property (GObject *object,
876 GApplication *app = G_APPLICATION (object);
880 case PROP_APPLICATION_ID:
881 g_return_if_fail (_g_application_validate_id (g_value_get_string (value)));
882 app->priv->appid = g_value_dup_string (value);
885 case PROP_DEFAULT_QUIT:
886 app->priv->default_quit = g_value_get_boolean (value);
890 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
895 g_application_constructor (GType type,
896 guint n_construct_properties,
897 GObjectConstructParam *construct_params)
901 const char *appid = NULL;
904 for (i = 0; i < n_construct_properties; i++)
906 GObjectConstructParam *param = &construct_params[i];
907 if (strcmp (param->pspec->name, "application-id") == 0)
908 appid = g_value_get_string (param->value);
911 g_return_val_if_fail (appid != NULL, NULL);
913 app = application_for_appid (appid);
915 return g_object_ref (app);
917 object = (* G_OBJECT_CLASS (g_application_parent_class)->constructor) (type,
918 n_construct_properties,
920 app = G_APPLICATION (object);
922 if (primary_application == NULL)
923 primary_application = app;
924 g_hash_table_insert (instances_for_appid, g_strdup (appid), app);
930 g_application_finalize (GObject *object)
932 GApplication *app = G_APPLICATION (object);
934 g_free (app->priv->appid);
935 if (app->priv->actions)
936 g_hash_table_unref (app->priv->actions);
937 if (app->priv->actions_changed_id)
938 g_source_remove (app->priv->actions_changed_id);
939 if (app->priv->mainloop)
940 g_main_loop_unref (app->priv->mainloop);
943 g_free (app->priv->dbus_path);
944 if (app->priv->session_bus)
945 g_object_unref (app->priv->session_bus);
948 G_OBJECT_CLASS (g_application_parent_class)->finalize (object);
952 g_application_class_init (GApplicationClass *klass)
954 GObjectClass *gobject_class G_GNUC_UNUSED = G_OBJECT_CLASS (klass);
956 g_type_class_add_private (klass, sizeof (GApplicationPrivate));
958 gobject_class->constructor = g_application_constructor;
959 gobject_class->set_property = g_application_set_property;
960 gobject_class->get_property = g_application_get_property;
962 gobject_class->finalize = g_application_finalize;
964 klass->run = g_application_default_run;
965 klass->quit = g_application_default_quit;
968 * GApplication::quit:
969 * @application: the object on which the signal is emitted
970 * @timestamp: Platform-specific event timestamp, may be 0 for default
972 * This signal is emitted when the Quit action is invoked on the
975 * The default handler for this signal exits the mainloop of the
978 * Returns: %TRUE if the signal has been handled, %FALSE to continue
981 application_signals[QUIT] =
982 g_signal_new (g_intern_static_string ("quit"),
983 G_OBJECT_CLASS_TYPE (klass),
985 G_STRUCT_OFFSET (GApplicationClass, quit),
986 g_signal_accumulator_true_handled, NULL,
987 _gio_marshal_BOOLEAN__UINT,
992 * GApplication::action:
993 * @application: the object on which the signal is emitted
994 * @name: The name of the activated action
995 * @timestamp: Platform-specific event timestamp, may be 0 for default
997 * This signal is emitted when an action is activated. The action name
998 * is passed as the first argument, but also as signal detail, so it
999 * is possible to connect to this signal for individual actions.
1001 * The signal is never emitted for disabled actions.
1003 application_signals[ACTION] =
1004 g_signal_new (g_intern_static_string ("action"),
1005 G_OBJECT_CLASS_TYPE (klass),
1006 G_SIGNAL_RUN_FIRST | G_SIGNAL_NO_RECURSE | G_SIGNAL_DETAILED,
1007 G_STRUCT_OFFSET (GApplicationClass, action),
1009 _gio_marshal_VOID__STRING_UINT,
1015 * GApplication::prepare-activation:
1016 * @application: the object on which the signal is emitted
1017 * @arguments: A #GVariant with the signature "aay"
1018 * @platform_data: A #GVariant with the signature "a{sv}"
1020 * This signal is emitted when a non-primary process for a given
1021 * application is invoked while your application is running; for
1022 * example, when a file browser launches your program to open a
1023 * file. The raw operating system arguments are passed in the
1024 * @arguments variant. Additional platform-dependent data is
1025 * stored in @platform_data.
1027 application_signals[PREPARE_ACTIVATION] =
1028 g_signal_new (g_intern_static_string ("prepare-activation"),
1029 G_OBJECT_CLASS_TYPE (klass),
1031 G_STRUCT_OFFSET (GApplicationClass, prepare_activation),
1033 _gio_marshal_VOID__BOXED_BOXED,
1039 * GApplication:application-id:
1041 * The unique identifier for this application. See the documentation for
1042 * #GApplication for more information about this property.
1045 g_object_class_install_property (gobject_class,
1046 PROP_APPLICATION_ID,
1047 g_param_spec_string ("application-id",
1048 P_("Application ID"),
1049 P_("Identifier for this application"),
1052 G_PARAM_CONSTRUCT_ONLY |
1053 G_PARAM_STATIC_STRINGS));
1056 * GApplication:default-quit:
1058 * By default, if a different process is running this application, the
1059 * process will be exited. Set this property to %FALSE to allow custom
1060 * interaction with the remote process.
1063 g_object_class_install_property (gobject_class,
1065 g_param_spec_boolean ("default-quit",
1067 P_("Exit the process by default"),
1070 G_PARAM_CONSTRUCT_ONLY |
1071 G_PARAM_STATIC_STRINGS));
1075 * GApplication:is-remote:
1077 * This property is %TRUE if this application instance represents a proxy
1078 * to the instance of this application in another process.
1081 g_object_class_install_property (gobject_class,
1083 g_param_spec_boolean ("is-remote",
1085 P_("Whether this application is a proxy for another process"),
1087 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
1090 #define __G_APPLICATION_C__
1091 #include "gioaliasdef.c"