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