aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2007-06-21 03:46:29 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2007-06-21 03:46:29 +0800
commitdf31bb8cc736b500215a52b27d14f13acb8ecf6e (patch)
tree61a97eaa1add6dc5cef0ea30e13890b186a4f175 /src
parent6ce393073158d07d797f189fe5b4e34c683c2049 (diff)
downloadgsoc2013-empathy-df31bb8cc736b500215a52b27d14f13acb8ecf6e.tar
gsoc2013-empathy-df31bb8cc736b500215a52b27d14f13acb8ecf6e.tar.gz
gsoc2013-empathy-df31bb8cc736b500215a52b27d14f13acb8ecf6e.tar.bz2
gsoc2013-empathy-df31bb8cc736b500215a52b27d14f13acb8ecf6e.tar.lz
gsoc2013-empathy-df31bb8cc736b500215a52b27d14f13acb8ecf6e.tar.xz
gsoc2013-empathy-df31bb8cc736b500215a52b27d14f13acb8ecf6e.tar.zst
gsoc2013-empathy-df31bb8cc736b500215a52b27d14f13acb8ecf6e.zip
Adding NetworkManager support.
2007-06-15 Xavier Claessens <xclaesse@gmail.com> * src/empathy.c: * libempathy/empathy-idle.c: Adding NetworkManager support. svn path=/trunk/; revision=162
Diffstat (limited to 'src')
-rw-r--r--src/empathy.c38
1 files changed, 12 insertions, 26 deletions
diff --git a/src/empathy.c b/src/empathy.c
index 51fa25937..91152daa2 100644
--- a/src/empathy.c
+++ b/src/empathy.c
@@ -43,6 +43,7 @@
#include <libempathy/gossip-contact.h>
#include <libempathy/empathy-chandler.h>
#include <libempathy/empathy-tp-chat.h>
+#include <libempathy/empathy-idle.h>
#include <libempathy-gtk/empathy-main-window.h>
#include <libempathy-gtk/empathy-status-icon.h>
#include <libempathy-gtk/gossip-private-chat.h>
@@ -54,16 +55,6 @@
#define OBJECT_PATH "/org/freedesktop/Telepathy/ChannelHandler"
static void
-error_cb (MissionControl *mc,
- GError *error,
- gpointer data)
-{
- if (error) {
- gossip_debug (DEBUG_DOMAIN, "Error: %s", error->message);
- }
-}
-
-static void
service_ended_cb (MissionControl *mc,
gpointer user_data)
{
@@ -82,33 +73,27 @@ operation_error_cb (MissionControl *mc,
}
static void
-start_mission_control (MissionControl *mc)
+start_mission_control (EmpathyIdle *idle)
{
McPresence presence;
- presence = mission_control_get_presence_actual (mc, NULL);
+ presence = empathy_idle_get_state (idle);
if (presence > MC_PRESENCE_OFFLINE) {
/* MC is already running and online, nothing to do */
return;
}
- gossip_debug (DEBUG_DOMAIN, "Starting Mission Control...");
-
- mission_control_set_presence (mc,
- MC_PRESENCE_AVAILABLE,
- NULL,
- (McCallback) error_cb,
- NULL);
+ empathy_idle_set_state (idle, MC_PRESENCE_AVAILABLE);
}
static void
account_enabled_cb (McAccountMonitor *monitor,
gchar *unique_name,
- MissionControl *mc)
+ EmpathyIdle *idle)
{
gossip_debug (DEBUG_DOMAIN, "Account enabled: %s", unique_name);
- start_mission_control (mc);
+ start_mission_control (idle);
}
static void
@@ -164,6 +149,7 @@ main (int argc, char *argv[])
GtkWidget *window;
MissionControl *mc;
McAccountMonitor *monitor;
+ EmpathyIdle *idle;
EmpathyChandler *chandler;
GnomeProgram *program;
gboolean no_connect = FALSE;
@@ -201,9 +187,10 @@ main (int argc, char *argv[])
/* Setting up MC */
monitor = mc_account_monitor_new ();
mc = gossip_mission_control_new ();
+ idle = empathy_idle_new ();
g_signal_connect (monitor, "account-enabled",
G_CALLBACK (account_enabled_cb),
- mc);
+ idle);
g_signal_connect (mc, "ServiceEnded",
G_CALLBACK (service_ended_cb),
NULL);
@@ -212,7 +199,7 @@ main (int argc, char *argv[])
NULL);
if (!no_connect) {
- start_mission_control (mc);
+ start_mission_control (idle);
}
/* Setting up UI */
@@ -227,13 +214,12 @@ main (int argc, char *argv[])
gtk_main ();
- mission_control_set_presence (mc,
- MC_PRESENCE_OFFLINE,
- NULL, NULL, NULL);
+ empathy_idle_set_state (idle, MC_PRESENCE_OFFLINE);
g_object_unref (chandler);
g_object_unref (monitor);
g_object_unref (mc);
+ g_object_unref (idle);
g_object_unref (icon);
g_object_unref (program);