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
|
/*
* empathy-app-plugin.c
*
* Copyright (C) 2012 Collabora Ltd. <http://www.collabora.co.uk/>
*
* 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-app-plugin.h"
#include "empathy-app-plugin-widget.h"
G_DEFINE_TYPE (EmpathyAppPlugin, empathy_app_plugin, AP_TYPE_APPLICATION_PLUGIN)
static void
widget_done_cb (EmpathyAppPluginWidget *widget,
ApApplicationPlugin *plugin)
{
ap_application_plugin_emit_finished (plugin);
}
static GtkWidget *
empathy_app_plugin_build_widget (ApApplicationPlugin *plugin)
{
GtkWidget *widget;
widget = empathy_app_plugin_widget_new (
ap_application_plugin_get_account (plugin));
g_signal_connect (widget, "done",
G_CALLBACK (widget_done_cb), plugin);
gtk_widget_show (widget);
return widget;
}
static void
empathy_app_plugin_class_init (EmpathyAppPluginClass *klass)
{
ApApplicationPluginClass *app_class = AP_APPLICATION_PLUGIN_CLASS (klass);
app_class->build_widget = empathy_app_plugin_build_widget;
}
static void
empathy_app_plugin_init (EmpathyAppPlugin *self)
{
}
GType
ap_module_get_object_type (void)
{
return EMPATHY_TYPE_APP_PLUGIN;
}
|