X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgioenums.h;h=d534eed140e72be87a23250a6b119838c3b2b00f;hb=71088701af6ff0658313069219565923d5a03280;hp=98551cca4521532c662f7943fc6ed19572a3b4e4;hpb=3e6eee806cdddd651bc15da9117adae1c3f97e6a;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gioenums.h b/gio/gioenums.h index 98551cc..d534eed 100644 --- a/gio/gioenums.h +++ b/gio/gioenums.h @@ -1157,6 +1157,9 @@ typedef enum /** * GDBusSignalFlags: * @G_DBUS_SIGNAL_FLAGS_NONE: No flags set. + * @G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE: Don't actually send the AddMatch + * DBus call for this signal subscription. This gives you more control + * over which match rules you add (but you must add them manually). * * Flags used when subscribing to signals via g_dbus_connection_signal_subscribe(). * @@ -1164,7 +1167,8 @@ typedef enum */ typedef enum /*< flags >*/ { - G_DBUS_SIGNAL_FLAGS_NONE = 0 + G_DBUS_SIGNAL_FLAGS_NONE = 0, + G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE = (1<<0) } GDBusSignalFlags; /** @@ -1219,7 +1223,16 @@ typedef enum /** * GApplicationFlags: * @G_APPLICATION_FLAGS_NONE: Default - * @G_APPLICATION_FLAGS_HANDLE_OPEN: This application handles opening files. + * @G_APPLICATION_IS_SERVICE: Run as a service. In this mode, registration + * fails if the service is already running, and the application will + * stay around for a while when the use count falls to zero. + * @G_APPLICATION_IS_LAUNCHER: Don't try to become the primary instance. + * @G_APPLICATION_HANDLES_OPEN: This application handles opening files (in the + * primary instance) + * @G_APPLICATION_HANDLES_COMMAND_LINE: This application handles command line + * arguments (in the primary instance) + * @G_APPLICATION_SEND_ENVIRONMENT: Send the environment of the + * launching process to the primary instance * * Flags used to define the behaviour of a #GApplication. * @@ -1232,7 +1245,8 @@ typedef enum G_APPLICATION_IS_LAUNCHER = (1 << 1), G_APPLICATION_HANDLES_OPEN = (1 << 2), - G_APPLICATION_HANDLES_COMMAND_LINE = (1 << 3) + G_APPLICATION_HANDLES_COMMAND_LINE = (1 << 3), + G_APPLICATION_SEND_ENVIRONMENT = (1 << 4) } GApplicationFlags; G_END_DECLS