/* * empathy-accounts-plugin.c * * Copyright (C) 2012 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 "empathy-accounts-plugin.h" #include "empathy-accounts-plugin-widget.h" G_DEFINE_TYPE (EmpathyAccountsPlugin, empathy_accounts_plugin, AP_TYPE_PLUGIN) static void widget_done_cb (EmpathyAccountsPluginWidget *widget, ApPlugin *plugin) { ap_plugin_emit_finished (plugin); } static GtkWidget * empathy_accounts_plugin_build_widget (ApPlugin *plugin) { GtkWidget *widget; widget = empathy_accounts_plugin_widget_new (ap_plugin_get_account (plugin)); g_signal_connect (widget, "done", G_CALLBACK (widget_done_cb), plugin); return widget; } static void empathy_accounts_plugin_delete_account (ApPlugin *plugin, GAsyncReadyCallback callback, gpointer user_data) { /* TODO */ } static void empathy_accounts_plugin_act_headless (ApPlugin *plugin) { } static void empathy_accounts_plugin_class_init ( EmpathyAccountsPluginClass *klass) { ApPluginClass *pclass = AP_PLUGIN_CLASS (klass); pclass->build_widget = empathy_accounts_plugin_build_widget; pclass->delete_account = empathy_accounts_plugin_delete_account; pclass->act_headless = empathy_accounts_plugin_act_headless; } static void empathy_accounts_plugin_init (EmpathyAccountsPlugin *self) { } GType ap_module_get_object_type (void) { return EMPATHY_TYPE_ACCOUNTS_PLUGIN; }