]> git.0d.be Git - empathy.git/blob - src/empathy.c
Do not show the main window when creating it, it will be presented if not start hidden
[empathy.git] / src / empathy.c
1 /*
2  * Copyright (C) 2007-2009 Collabora Ltd.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA  02110-1301  USA
18  *
19  * Authors: Xavier Claessens <xclaesse@gmail.com>
20  */
21
22 #include <config.h>
23
24 #include <stdlib.h>
25 #include <errno.h>
26 #include <string.h>
27
28 #include <glib.h>
29 #include <glib/gstdio.h>
30 #include <glib/gi18n.h>
31 #include <gtk/gtk.h>
32 #include <gdk/gdkx.h>
33
34 #ifdef HAVE_LIBCHAMPLAIN
35 #include <clutter-gtk/clutter-gtk.h>
36 #endif
37
38 #include <libnotify/notify.h>
39
40 #include <telepathy-glib/account-manager.h>
41 #include <telepathy-glib/dbus.h>
42 #include <telepathy-glib/debug-sender.h>
43 #include <telepathy-glib/util.h>
44 #include <telepathy-glib/connection-manager.h>
45 #include <telepathy-glib/interfaces.h>
46
47 #include <telepathy-logger/log-manager.h>
48
49 #include <libempathy/empathy-presence-manager.h>
50 #include <libempathy/empathy-utils.h>
51 #include <libempathy/empathy-chatroom-manager.h>
52 #include <libempathy/empathy-account-settings.h>
53 #include <libempathy/empathy-connectivity.h>
54 #include <libempathy/empathy-connection-managers.h>
55 #include <libempathy/empathy-request-util.h>
56 #include <libempathy/empathy-ft-factory.h>
57 #include <libempathy/empathy-gsettings.h>
58 #include <libempathy/empathy-tp-chat.h>
59
60 #include <libempathy-gtk/empathy-ui-utils.h>
61 #include <libempathy-gtk/empathy-location-manager.h>
62
63 #include "empathy-main-window.h"
64 #include "empathy-accounts-common.h"
65 #include "empathy-accounts-dialog.h"
66 #include "empathy-status-icon.h"
67 #include "empathy-ft-manager.h"
68 #include "empathy-notifications-approver.h"
69
70 #include "extensions/extensions.h"
71
72 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
73 #include <libempathy/empathy-debug.h>
74
75 #define EMPATHY_DBUS_NAME "org.gnome.Empathy"
76
77 #define EMPATHY_TYPE_APP (empathy_app_get_type ())
78 #define EMPATHY_APP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_APP, EmpathyApp))
79 #define EMPATHY_APP_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), EMPATHY_TYPE_APP, EmpathyAppClass))
80 #define EMPATHY_IS_EMPATHY_APP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_APP))
81 #define EMPATHY_IS_EMPATHY_APP_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((obj), EMPATHY_TYPE_APP))
82 #define EMPATHY_APP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_APP, EmpathyAppClass))
83
84 typedef struct _EmpathyApp EmpathyApp;
85 typedef struct _EmpathyAppClass EmpathyAppClass;
86
87 enum
88 {
89   PROP_NO_CONNECT = 1,
90   PROP_START_HIDDEN
91 };
92
93 GType empathy_app_get_type (void);
94
95 struct _EmpathyAppClass
96 {
97   GtkApplicationClass parent_class;
98 };
99
100 struct _EmpathyApp
101 {
102   GtkApplication parent;
103
104   /* Properties */
105   gboolean no_connect;
106   gboolean start_hidden;
107
108   gboolean activated;
109
110   GtkWidget *window;
111   EmpathyStatusIcon *icon;
112   TpAccountManager *account_manager;
113   TplLogManager *log_manager;
114   EmpathyChatroomManager *chatroom_manager;
115   EmpathyFTFactory  *ft_factory;
116   EmpathyPresenceManager *presence_mgr;
117   EmpathyConnectivity *connectivity;
118   GSettings *gsettings;
119   EmpathyNotificationsApprover *notifications_approver;
120 #ifdef HAVE_GEOCLUE
121   EmpathyLocationManager *location_manager;
122 #endif
123 #ifdef ENABLE_DEBUG
124   TpDebugSender *debug_sender;
125 #endif
126 };
127
128
129 G_DEFINE_TYPE(EmpathyApp, empathy_app, GTK_TYPE_APPLICATION)
130
131 static void
132 empathy_app_dispose (GObject *object)
133 {
134   EmpathyApp *self = EMPATHY_APP (object);
135   void (*dispose) (GObject *) =
136     G_OBJECT_CLASS (empathy_app_parent_class)->dispose;
137
138   if (self->presence_mgr != NULL)
139     {
140       empathy_presence_manager_set_state (self->presence_mgr,
141           TP_CONNECTION_PRESENCE_TYPE_OFFLINE);
142     }
143
144 #ifdef ENABLE_DEBUG
145   tp_clear_object (&self->debug_sender);
146 #endif
147
148   tp_clear_object (&self->presence_mgr);
149   tp_clear_object (&self->connectivity);
150   tp_clear_object (&self->icon);
151   tp_clear_object (&self->account_manager);
152   tp_clear_object (&self->log_manager);
153   tp_clear_object (&self->chatroom_manager);
154 #ifdef HAVE_GEOCLUE
155   tp_clear_object (&self->location_manager);
156 #endif
157   tp_clear_object (&self->ft_factory);
158   tp_clear_object (&self->gsettings);
159   tp_clear_object (&self->notifications_approver);
160
161   if (dispose != NULL)
162     dispose (object);
163 }
164
165 static void
166 empathy_app_finalize (GObject *object)
167 {
168   EmpathyApp *self = EMPATHY_APP (object);
169   void (*finalize) (GObject *) =
170     G_OBJECT_CLASS (empathy_app_parent_class)->finalize;
171
172   if (self->window != NULL)
173     gtk_widget_destroy (self->window);
174
175   if (finalize != NULL)
176     finalize (object);
177 }
178
179 static void account_manager_ready_cb (GObject *source_object,
180     GAsyncResult *result,
181     gpointer user_data);
182
183 static void
184 empathy_app_set_property (GObject *object,
185     guint prop_id,
186     const GValue *value,
187     GParamSpec *pspec)
188 {
189   EmpathyApp *self = EMPATHY_APP (object);
190
191   switch (prop_id)
192     {
193       case PROP_NO_CONNECT:
194         self->no_connect = g_value_get_boolean (value);
195         break;
196       case PROP_START_HIDDEN:
197         self->start_hidden = g_value_get_boolean (value);
198         break;
199       default:
200         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
201         break;
202     }
203 }
204
205 static void
206 new_incoming_transfer_cb (EmpathyFTFactory *factory,
207     EmpathyFTHandler *handler,
208     GError *error,
209     gpointer user_data)
210 {
211   if (error)
212     empathy_ft_manager_display_error (handler, error);
213   else
214     empathy_receive_file_with_file_chooser (handler);
215 }
216
217 static void
218 new_ft_handler_cb (EmpathyFTFactory *factory,
219     EmpathyFTHandler *handler,
220     GError *error,
221     gpointer user_data)
222 {
223   if (error)
224     empathy_ft_manager_display_error (handler, error);
225   else
226     empathy_ft_manager_add_handler (handler);
227
228   g_object_unref (handler);
229 }
230
231 static int
232 empathy_app_command_line (GApplication *app,
233     GApplicationCommandLine *cmdline)
234 {
235   EmpathyApp *self = (EmpathyApp *) app;
236
237   if (!self->activated)
238     {
239       GError *error = NULL;
240
241       /* Create the FT factory */
242       self->ft_factory = empathy_ft_factory_dup_singleton ();
243       g_signal_connect (self->ft_factory, "new-ft-handler",
244           G_CALLBACK (new_ft_handler_cb), NULL);
245       g_signal_connect (self->ft_factory, "new-incoming-transfer",
246           G_CALLBACK (new_incoming_transfer_cb), NULL);
247
248       if (!empathy_ft_factory_register (self->ft_factory, &error))
249         {
250           g_warning ("Failed to register FileTransfer handler: %s",
251               error->message);
252           g_error_free (error);
253         }
254
255       g_application_hold (G_APPLICATION (app));
256       self->activated = TRUE;
257
258       /* Setting up UI */
259       self->window = empathy_main_window_dup ();
260       self->icon = empathy_status_icon_new (GTK_WINDOW (self->window),
261           self->start_hidden);
262
263       self->notifications_approver =
264         empathy_notifications_approver_dup_singleton ();
265     }
266   else
267     {
268       /* We're requested to show stuff again, disable the start hidden global in
269        * case the accounts wizard wants to pop up.
270        */
271       self->start_hidden = FALSE;
272     }
273
274   if (!self->start_hidden)
275     empathy_window_present (GTK_WINDOW (self->window));
276
277   /* Display the accounts dialog if needed */
278   tp_account_manager_prepare_async (self->account_manager, NULL,
279       account_manager_ready_cb, self);
280
281   return 0;
282 }
283
284 static gboolean
285 show_version_cb (const char *option_name,
286     const char *value,
287     gpointer data,
288     GError **error);
289
290 static gboolean
291 empathy_app_local_command_line (GApplication *app,
292     gchar ***arguments,
293     gint *exit_status)
294 {
295   EmpathyApp *self = (EmpathyApp *) app;
296   gint i;
297   gchar **argv;
298   gint argc = 0;
299   gboolean retval = FALSE;
300   GError *error = NULL;
301   gboolean no_connect = FALSE, start_hidden = FALSE;
302
303   GOptionContext *optcontext;
304   GOptionEntry options[] = {
305       { "no-connect", 'n',
306         0, G_OPTION_ARG_NONE, &no_connect,
307         N_("Don't connect on startup"),
308         NULL },
309       { "start-hidden", 'h',
310         0, G_OPTION_ARG_NONE, &start_hidden,
311         N_("Don't display the contact list or any other dialogs on startup"),
312         NULL },
313       { "version", 'v',
314         G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb,
315         NULL, NULL },
316       { NULL }
317   };
318
319   optcontext = g_option_context_new (N_("- Empathy IM Client"));
320   g_option_context_add_group (optcontext, gtk_get_option_group (TRUE));
321   g_option_context_add_main_entries (optcontext, options, GETTEXT_PACKAGE);
322
323   argv = *arguments;
324   for (i = 0; argv[i] != NULL; i++)
325     argc++;
326
327   if (!g_option_context_parse (optcontext, &argc, &argv, &error))
328     {
329       g_print ("%s\nRun '%s --help' to see a full list of available command "
330           "line options.\n",
331           error->message, argv[0]);
332       g_warning ("Error in empathy init: %s", error->message);
333
334       *exit_status = EXIT_FAILURE;
335       retval = TRUE;
336     }
337
338   g_option_context_free (optcontext);
339
340   self->no_connect = no_connect;
341   self->start_hidden = start_hidden;
342
343   return retval;
344 }
345
346 static void empathy_app_constructed (GObject *object);
347
348 static void
349 empathy_app_class_init (EmpathyAppClass *klass)
350 {
351   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
352   GApplicationClass *g_app_class = G_APPLICATION_CLASS (klass);
353   GParamSpec *spec;
354
355   gobject_class->set_property = empathy_app_set_property;
356   gobject_class->constructed = empathy_app_constructed;
357   gobject_class->dispose = empathy_app_dispose;
358   gobject_class->finalize = empathy_app_finalize;
359
360   g_app_class->command_line = empathy_app_command_line;
361   g_app_class->local_command_line = empathy_app_local_command_line;
362
363   spec = g_param_spec_boolean ("no-connect", "no connect",
364       "Don't connect on startup",
365       FALSE,
366       G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
367   g_object_class_install_property (gobject_class, PROP_NO_CONNECT, spec);
368
369   spec = g_param_spec_boolean ("start-hidden", "start hidden",
370       "Don't display the contact list or any other dialogs on startup",
371       FALSE,
372       G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
373   g_object_class_install_property (gobject_class, PROP_START_HIDDEN, spec);
374 }
375
376 static void
377 empathy_app_init (EmpathyApp *self)
378 {
379 }
380
381 static void
382 use_conn_notify_cb (GSettings *gsettings,
383     const gchar *key,
384     gpointer     user_data)
385 {
386   EmpathyConnectivity *connectivity = user_data;
387
388   empathy_connectivity_set_use_conn (connectivity,
389       g_settings_get_boolean (gsettings, key));
390 }
391
392 static void
393 migrate_config_to_xdg_dir (void)
394 {
395   gchar *xdg_dir, *old_dir, *xdg_filename, *old_filename;
396   int i;
397   GFile *xdg_file, *old_file;
398   static const gchar* filenames[] = {
399     "geometry.ini",
400     "irc-networks.xml",
401     "chatrooms.xml",
402     "contact-groups.xml",
403     "status-presets.xml",
404     "accels.txt",
405     NULL
406   };
407
408   xdg_dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
409   if (g_file_test (xdg_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
410     {
411       /* xdg config dir already exists */
412       g_free (xdg_dir);
413       return;
414     }
415
416   old_dir = g_build_filename (g_get_home_dir (), ".gnome2",
417       PACKAGE_NAME, NULL);
418   if (!g_file_test (old_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
419     {
420       /* old config dir didn't exist */
421       g_free (xdg_dir);
422       g_free (old_dir);
423       return;
424     }
425
426   if (g_mkdir_with_parents (xdg_dir, (S_IRUSR | S_IWUSR | S_IXUSR)) == -1)
427     {
428       DEBUG ("Failed to create configuration directory; aborting migration");
429       g_free (xdg_dir);
430       g_free (old_dir);
431       return;
432     }
433
434   for (i = 0; filenames[i]; i++)
435     {
436       old_filename = g_build_filename (old_dir, filenames[i], NULL);
437       if (!g_file_test (old_filename, G_FILE_TEST_EXISTS))
438         {
439           g_free (old_filename);
440           continue;
441         }
442       xdg_filename = g_build_filename (xdg_dir, filenames[i], NULL);
443       old_file = g_file_new_for_path (old_filename);
444       xdg_file = g_file_new_for_path (xdg_filename);
445
446       if (!g_file_move (old_file, xdg_file, G_FILE_COPY_NONE,
447           NULL, NULL, NULL, NULL))
448         DEBUG ("Failed to migrate %s", filenames[i]);
449
450       g_free (old_filename);
451       g_free (xdg_filename);
452       g_object_unref (old_file);
453       g_object_unref (xdg_file);
454     }
455
456   g_free (xdg_dir);
457   g_free (old_dir);
458 }
459
460 static void
461 show_accounts_ui (EmpathyApp *self,
462     GdkScreen *screen,
463     gboolean if_needed)
464 {
465   empathy_accounts_dialog_show_application (screen,
466       NULL, if_needed, self->start_hidden);
467 }
468
469 static gboolean
470 show_version_cb (const char *option_name,
471     const char *value,
472     gpointer data,
473     GError **error)
474 {
475   g_print ("%s\n", PACKAGE_STRING);
476
477   exit (EXIT_SUCCESS);
478 }
479
480 static void
481 account_manager_ready_cb (GObject *source_object,
482     GAsyncResult *result,
483     gpointer user_data)
484 {
485   TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
486   EmpathyApp *self = user_data;
487   GError *error = NULL;
488   TpConnectionPresenceType presence;
489
490   if (!tp_account_manager_prepare_finish (manager, result, &error))
491     {
492       GtkWidget *dialog;
493
494       DEBUG ("Failed to prepare account manager: %s", error->message);
495
496       dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
497           GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
498           _("Error contacting the Account Manager"));
499       gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
500           _("There was an error while trying to connect to the Telepathy "
501             "Account Manager. The error was:\n\n%s"),
502           error->message);
503
504       gtk_dialog_run (GTK_DIALOG (dialog));
505       gtk_widget_destroy (dialog);
506
507       g_error_free (error);
508       return;
509     }
510
511   /* Autoconnect */
512   presence = tp_account_manager_get_most_available_presence (manager, NULL,
513       NULL);
514
515   if (g_settings_get_boolean (self->gsettings, EMPATHY_PREFS_AUTOCONNECT) &&
516       !self->no_connect &&
517       tp_connection_presence_type_cmp_availability
518           (presence, TP_CONNECTION_PRESENCE_TYPE_OFFLINE)
519             <= 0)
520       /* if current state is Offline, then put it online */
521       empathy_presence_manager_set_state (self->presence_mgr,
522           TP_CONNECTION_PRESENCE_TYPE_AVAILABLE);
523
524   /* Pop up the accounts dialog if we don't have any account */
525   if (!empathy_accounts_has_accounts (manager))
526     show_accounts_ui (self, gdk_screen_get_default (), TRUE);
527 }
528
529 static void
530 account_join_chatrooms (TpAccount *account,
531   EmpathyChatroomManager *chatroom_manager)
532 {
533   TpConnection *conn;
534   GList *chatrooms, *p;
535
536   if (tp_account_get_connection_status (account, NULL) !=
537       TP_CONNECTION_STATUS_CONNECTED)
538     return;
539
540   /* If we're connected we should have a connection */
541   conn = tp_account_get_connection (account);
542   g_return_if_fail (conn != NULL);
543
544   chatrooms = empathy_chatroom_manager_get_chatrooms (
545           chatroom_manager, account);
546
547   for (p = chatrooms; p != NULL; p = p->next)
548     {
549       EmpathyChatroom *room = EMPATHY_CHATROOM (p->data);
550
551       if (!empathy_chatroom_get_auto_connect (room))
552         continue;
553
554       empathy_join_muc (account, empathy_chatroom_get_room (room),
555         TP_USER_ACTION_TIME_NOT_USER_ACTION);
556     }
557   g_list_free (chatrooms);
558 }
559
560 static void
561 account_status_changed_cb (TpAccount *account,
562     guint old_status,
563     guint new_status,
564     guint reason,
565     gchar *dbus_error_name,
566     GHashTable *details,
567     EmpathyChatroomManager *manager)
568 {
569   account_join_chatrooms (account, manager);
570 }
571
572 static void
573 account_manager_chatroom_ready_cb (GObject *source_object,
574     GAsyncResult *result,
575     gpointer user_data)
576 {
577   TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
578   EmpathyChatroomManager *chatroom_manager = user_data;
579   GList *accounts, *l;
580   GError *error = NULL;
581
582   if (!tp_account_manager_prepare_finish (account_manager, result, &error))
583     {
584       DEBUG ("Failed to prepare account manager: %s", error->message);
585       g_error_free (error);
586       return;
587     }
588
589   accounts = tp_account_manager_get_valid_accounts (account_manager);
590
591   for (l = accounts; l != NULL; l = g_list_next (l))
592     {
593       TpAccount *account = TP_ACCOUNT (l->data);
594
595       /* Try to join all rooms if we're connected */
596       account_join_chatrooms (account, chatroom_manager);
597
598       /* And/or join them on (re)connection */
599       tp_g_signal_connect_object (account, "status-changed",
600         G_CALLBACK (account_status_changed_cb), chatroom_manager, 0);
601     }
602   g_list_free (accounts);
603 }
604
605 static void
606 chatroom_manager_ready_cb (EmpathyChatroomManager *chatroom_manager,
607     GParamSpec *pspec,
608     gpointer user_data)
609 {
610   TpAccountManager *account_manager = user_data;
611
612   tp_account_manager_prepare_async (account_manager, NULL,
613       account_manager_chatroom_ready_cb, chatroom_manager);
614 }
615
616 static void
617 empathy_presence_manager_set_auto_away_cb (GSettings *gsettings,
618                                 const gchar *key,
619                                 gpointer user_data)
620 {
621         EmpathyPresenceManager *presence_mgr = user_data;
622
623         empathy_presence_manager_set_auto_away (presence_mgr,
624       g_settings_get_boolean (gsettings, key));
625 }
626
627 static void
628 empathy_app_constructed (GObject *object)
629 {
630   EmpathyApp *self = (EmpathyApp *) object;
631   gboolean chatroom_manager_ready;
632   gboolean autoaway;
633
634   g_set_application_name (_(PACKAGE_NAME));
635
636   gtk_window_set_default_icon_name ("empathy");
637   textdomain (GETTEXT_PACKAGE);
638
639 #ifdef ENABLE_DEBUG
640   /* Set up debug sender */
641   self->debug_sender = tp_debug_sender_dup ();
642   g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
643 #endif
644
645   notify_init (_(PACKAGE_NAME));
646
647   /* Setting up Idle */
648   self->presence_mgr = empathy_presence_manager_dup_singleton ();
649
650   self->gsettings = g_settings_new (EMPATHY_PREFS_SCHEMA);
651   autoaway = g_settings_get_boolean (self->gsettings, EMPATHY_PREFS_AUTOAWAY);
652
653   g_signal_connect (self->gsettings,
654       "changed::" EMPATHY_PREFS_AUTOAWAY,
655       G_CALLBACK (empathy_presence_manager_set_auto_away_cb),
656       self->presence_mgr);
657
658   empathy_presence_manager_set_auto_away (self->presence_mgr, autoaway);
659
660   /* Setting up Connectivity */
661   self->connectivity = empathy_connectivity_dup_singleton ();
662   use_conn_notify_cb (self->gsettings, EMPATHY_PREFS_USE_CONN,
663       self->connectivity);
664   g_signal_connect (self->gsettings,
665       "changed::" EMPATHY_PREFS_USE_CONN,
666       G_CALLBACK (use_conn_notify_cb), self->connectivity);
667
668   /* account management */
669   self->account_manager = tp_account_manager_dup ();
670   tp_account_manager_prepare_async (self->account_manager, NULL,
671       account_manager_ready_cb, self);
672
673   migrate_config_to_xdg_dir ();
674
675   /* Logging */
676   self->log_manager = tpl_log_manager_dup_singleton ();
677
678   self->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
679
680   g_object_get (self->chatroom_manager, "ready", &chatroom_manager_ready, NULL);
681   if (!chatroom_manager_ready)
682     {
683       g_signal_connect (G_OBJECT (self->chatroom_manager), "notify::ready",
684           G_CALLBACK (chatroom_manager_ready_cb), self->account_manager);
685     }
686   else
687     {
688       chatroom_manager_ready_cb (self->chatroom_manager, NULL,
689           self->account_manager);
690     }
691
692   /* Location mananger */
693 #ifdef HAVE_GEOCLUE
694   self->location_manager = empathy_location_manager_dup_singleton ();
695 #endif
696
697   self->activated = FALSE;
698   self->ft_factory = NULL;
699   self->window = NULL;
700 }
701
702 int
703 main (int argc, char *argv[])
704 {
705   EmpathyApp *app;
706   gint retval;
707
708   g_thread_init (NULL);
709   g_type_init ();
710
711 #ifdef HAVE_LIBCHAMPLAIN
712   gtk_clutter_init (&argc, &argv);
713 #endif
714
715   empathy_init ();
716   gtk_init (&argc, &argv);
717   empathy_gtk_init ();
718
719   app = g_object_new (EMPATHY_TYPE_APP,
720       "application-id", EMPATHY_DBUS_NAME,
721       "flags", G_APPLICATION_HANDLES_COMMAND_LINE,
722       NULL);
723
724   retval = g_application_run (G_APPLICATION (app), argc, argv);
725
726   notify_uninit ();
727   xmlCleanupParser ();
728
729   g_object_unref (app);
730
731   return retval;
732 }