[brasero] Improve libunique use by presenting the window whenever the user starts another instance
- From: Philippe Rouquier <philippr src gnome org>
- To: svn-commits-list gnome org
- Subject: [brasero] Improve libunique use by presenting the window whenever the user starts another instance
- Date: Sun, 17 May 2009 12:26:02 -0400 (EDT)
commit 19c27cd56998b07339ba4910c86791d8dfc6fb74
Author: Philippe Rouquier <bonfire-app wanadoo fr>
Date: Sun May 17 08:36:40 2009 +0200
Improve libunique use by presenting the window whenever the user starts another instance
---
src/brasero-app.c | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/src/brasero-app.c b/src/brasero-app.c
index a60f7dd..218fa42 100644
--- a/src/brasero-app.c
+++ b/src/brasero-app.c
@@ -1434,6 +1434,24 @@ brasero_app_create_mainwin (BraseroApp *app)
brasero_app_load_window_state (app);
}
+static UniqueResponse
+brasero_app_unique_message (UniqueApp *uapp,
+ gint command,
+ UniqueMessageData *message_data,
+ guint time,
+ BraseroApp *app)
+{
+ BraseroAppPrivate *priv;
+
+ priv = BRASERO_APP_PRIVATE (app);
+ if (command == UNIQUE_ACTIVATE) {
+ if (priv->mainwin_running)
+ gtk_window_present (GTK_WINDOW (priv->mainwin));
+ }
+
+ return UNIQUE_RESPONSE_OK;
+}
+
gboolean
brasero_app_run_mainwin (BraseroApp *app)
{
@@ -1446,6 +1464,10 @@ brasero_app_run_mainwin (BraseroApp *app)
gtk_widget_show (GTK_WIDGET (priv->mainwin));
uapp = unique_app_new ("org.gnome.Brasero", NULL);
+ g_signal_connect (uapp,
+ "message-received",
+ G_CALLBACK (brasero_app_unique_message),
+ app);
if (unique_app_is_running (uapp))
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]