]> git.0d.be Git - empathy.git/blob - src/empathy-debugger.c
Merge branch 'log-window-webview'
[empathy.git] / src / empathy-debugger.c
1 /*
2  * Copyright (C) 2005-2007 Imendio AB
3  * Copyright (C) 2007-2010 Collabora Ltd.
4  *
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.1 of the License, or (at your option) any later version.
9  *
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.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  */
19
20 #include <config.h>
21
22 #include <gtk/gtk.h>
23 #include <glib/gi18n.h>
24
25 #include <libempathy/empathy-utils.h>
26 #include <libempathy-gtk/empathy-ui-utils.h>
27
28 #include "empathy-debug-window.h"
29
30 #define EMPATHY_DEBUGGER_DBUS_NAME "org.gnome.Empathy.Debugger"
31
32 static GtkWidget *window = NULL;
33 static gchar *service = NULL;
34
35 static void
36 activate_cb (GApplication *app)
37 {
38   if (window == NULL)
39     {
40       window = empathy_debug_window_new (NULL);
41       g_signal_connect (window, "destroy", gtk_main_quit, NULL);
42
43       /* don't let this application exit automatically */
44       g_application_hold (G_APPLICATION (app));
45     }
46   else
47     {
48       gtk_window_present (GTK_WINDOW (window));
49     }
50
51   if (service != NULL)
52     empathy_debug_window_show (EMPATHY_DEBUG_WINDOW (window),
53         service);
54 }
55
56 static gint
57 command_line_cb (GApplication *application,
58     GApplicationCommandLine *command_line,
59     gpointer user_data)
60 {
61   GError *error = NULL;
62   gchar **argv;
63   gint argc;
64   gint retval = 0;
65
66   GOptionContext *optcontext;
67   GOptionEntry options[] = {
68       { "show-service", 's',
69         0, G_OPTION_ARG_STRING, &service,
70         N_("Show a particular service"),
71         NULL },
72       { NULL }
73   };
74
75   optcontext = g_option_context_new (N_("- Empathy Debugger"));
76   g_option_context_add_group (optcontext, gtk_get_option_group (TRUE));
77   g_option_context_add_main_entries (optcontext, options, GETTEXT_PACKAGE);
78
79   argv = g_application_command_line_get_arguments (command_line, &argc);
80
81   if (!g_option_context_parse (optcontext, &argc, &argv, &error))
82     {
83       g_print ("%s\nRun '%s --help' to see a full list of available command "
84           "line options.\n",
85           error->message, argv[0]);
86
87       retval = 1;
88     }
89
90   g_option_context_free (optcontext);
91   g_strfreev (argv);
92
93   g_application_activate (application);
94
95   return retval;
96 }
97
98 int
99 main (int argc,
100     char **argv)
101 {
102   GtkApplication *app;
103   gint retval;
104
105   g_thread_init (NULL);
106   gtk_init (&argc, &argv);
107   empathy_gtk_init ();
108
109   app = gtk_application_new (EMPATHY_DEBUGGER_DBUS_NAME,
110       G_APPLICATION_HANDLES_COMMAND_LINE);
111   g_signal_connect (app, "activate", G_CALLBACK (activate_cb), NULL);
112   g_signal_connect (app, "command-line", G_CALLBACK (command_line_cb), NULL);
113
114   g_set_application_name (_("Empathy Debugger"));
115
116   /* Make empathy and empathy-debugger appear as the same app in gnome-shell */
117   gdk_set_program_class ("Empathy");
118   gtk_window_set_default_icon_name ("empathy");
119   textdomain (GETTEXT_PACKAGE);
120
121   retval = g_application_run (G_APPLICATION (app), argc, argv);
122
123   g_object_unref (app);
124
125   return retval;
126 }