aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-08-03 15:47:08 +0800
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-08-04 17:10:19 +0800
commit1cffe8f59e31c60f69369f7a636757c3d7fabeca (patch)
tree7fccd5960b89068dede625c411ef82a40a8b1180 /src
parent4f8ce5f258a290f00fc0ebbf13f5e3db3b0b45bd (diff)
downloadgsoc2013-empathy-1cffe8f59e31c60f69369f7a636757c3d7fabeca.tar
gsoc2013-empathy-1cffe8f59e31c60f69369f7a636757c3d7fabeca.tar.gz
gsoc2013-empathy-1cffe8f59e31c60f69369f7a636757c3d7fabeca.tar.bz2
gsoc2013-empathy-1cffe8f59e31c60f69369f7a636757c3d7fabeca.tar.lz
gsoc2013-empathy-1cffe8f59e31c60f69369f7a636757c3d7fabeca.tar.xz
gsoc2013-empathy-1cffe8f59e31c60f69369f7a636757c3d7fabeca.tar.zst
gsoc2013-empathy-1cffe8f59e31c60f69369f7a636757c3d7fabeca.zip
Add a command line option to Empathy to show the preferences
https://bugzilla.gnome.org/show_bug.cgi?id=655884
Diffstat (limited to 'src')
-rw-r--r--src/empathy.c42
1 files changed, 39 insertions, 3 deletions
diff --git a/src/empathy.c b/src/empathy.c
index 6e2b165dc..8ac944d07 100644
--- a/src/empathy.c
+++ b/src/empathy.c
@@ -106,6 +106,7 @@ struct _EmpathyApp
/* Properties */
gboolean no_connect;
gboolean start_hidden;
+ gboolean show_preferences;
gboolean activated;
@@ -230,11 +231,31 @@ new_ft_handler_cb (EmpathyFTFactory *factory,
g_object_unref (handler);
}
+static gboolean
+empathy_app_local_command_line (GApplication *app,
+ gchar ***arguments,
+ gint *exit_status);
+
static int
empathy_app_command_line (GApplication *app,
GApplicationCommandLine *cmdline)
{
EmpathyApp *self = (EmpathyApp *) app;
+ gchar **args, **argv;
+ gint argc, exit_status, i;
+
+ args = g_application_command_line_get_arguments (cmdline, &argc);
+ /* We have to make an extra copy of the array, since g_option_context_parse()
+ * assumes that it can remove strings from the array without freeing them. */
+ argv = g_new (gchar*, argc + 1);
+ for (i = 0; i <= argc; i++)
+ argv[i] = args[i];
+
+ if (empathy_app_local_command_line (app, &argv, &exit_status))
+ DEBUG ("failed to parse command line!");
+
+ g_free (argv);
+ g_strfreev (args);
if (!self->activated)
{
@@ -273,6 +294,9 @@ empathy_app_command_line (GApplication *app,
self->start_hidden = FALSE;
}
+ if (self->show_preferences)
+ empathy_main_window_show_preferences (EMPATHY_MAIN_WINDOW (self->window));
+
if (!self->start_hidden)
empathy_window_present (GTK_WINDOW (self->window));
@@ -301,6 +325,7 @@ empathy_app_local_command_line (GApplication *app,
gboolean retval = FALSE;
GError *error = NULL;
gboolean no_connect = FALSE, start_hidden = FALSE;
+ gboolean show_preferences = FALSE;
GOptionContext *optcontext;
GOptionEntry options[] = {
@@ -312,6 +337,9 @@ empathy_app_local_command_line (GApplication *app,
0, G_OPTION_ARG_NONE, &start_hidden,
N_("Don't display the contact list or any other dialogs on startup"),
NULL },
+ { "show-preferences", 'p',
+ 0, G_OPTION_ARG_NONE, &show_preferences,
+ NULL, NULL },
{ "version", 'v',
G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb,
NULL, NULL },
@@ -322,9 +350,14 @@ empathy_app_local_command_line (GApplication *app,
g_option_context_add_group (optcontext, gtk_get_option_group (TRUE));
g_option_context_add_main_entries (optcontext, options, GETTEXT_PACKAGE);
- argv = *arguments;
- for (i = 0; argv[i] != NULL; i++)
- argc++;
+ argc = g_strv_length (*arguments);
+
+ /* We dup the args because g_option_context_parse() sets things to NULL,
+ * but we want to parse all the command line to the primary instance
+ * if necessary. */
+ argv = g_new (gchar*, argc + 1);
+ for (i = 0; i <= argc; i++)
+ argv[i] = (*arguments)[i];
if (!g_option_context_parse (optcontext, &argc, &argv, &error))
{
@@ -337,10 +370,13 @@ empathy_app_local_command_line (GApplication *app,
retval = TRUE;
}
+ g_free (argv);
+
g_option_context_free (optcontext);
self->no_connect = no_connect;
self->start_hidden = start_hidden;
+ self->show_preferences = show_preferences;
return retval;
}