From 671a16046a634beefc524bc24a2e7eebdee480a5 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Mon, 23 Jul 2012 11:15:57 +0200 Subject: add empathy-app-plugin https://bugzilla.gnome.org/show_bug.cgi?id=680449 --- ubuntu-online-accounts/cc-plugins/Makefile.am | 2 +- .../cc-plugins/app-plugin/Makefile.am | 23 +++++++ .../cc-plugins/app-plugin/empathy-app-plugin.c | 52 +++++++++++++++ .../cc-plugins/app-plugin/empathy-app-plugin.h | 73 ++++++++++++++++++++++ .../cc-plugins/generate-plugins.py | 2 +- 5 files changed, 150 insertions(+), 2 deletions(-) create mode 100644 ubuntu-online-accounts/cc-plugins/app-plugin/Makefile.am create mode 100644 ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.c create mode 100644 ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.h (limited to 'ubuntu-online-accounts') diff --git a/ubuntu-online-accounts/cc-plugins/Makefile.am b/ubuntu-online-accounts/cc-plugins/Makefile.am index 6effb6c24..0521194b8 100644 --- a/ubuntu-online-accounts/cc-plugins/Makefile.am +++ b/ubuntu-online-accounts/cc-plugins/Makefile.am @@ -1,6 +1,6 @@ # Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py # Do NOT edit manually -SUBDIRS = providers services +SUBDIRS = providers services app-plugin plugindir = $(ACCOUNTS_PROVIDER_PLUGIN_DIR) diff --git a/ubuntu-online-accounts/cc-plugins/app-plugin/Makefile.am b/ubuntu-online-accounts/cc-plugins/app-plugin/Makefile.am new file mode 100644 index 000000000..fc2421747 --- /dev/null +++ b/ubuntu-online-accounts/cc-plugins/app-plugin/Makefile.am @@ -0,0 +1,23 @@ +plugindir = $(ACCOUNTS_APP_PLUGIN_DIR) + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -DLOCALEDIR=\""$(datadir)/locale"\" \ + $(UOA_CFLAGS) \ + $(WARN_CFLAGS) \ + $(ERROR_CFLAGS) \ + $(DISABLE_DEPRECATED) \ + $(EMPATHY_CFLAGS) + +plugin_LTLIBRARIES = \ + libempathy.la\ + $(NULL) + +libempathy_la_SOURCES = \ + empathy-app-plugin.c \ + empathy-app-plugin.h +libempathy_la_LDFLAGS = -module -avoid-version +libempathy_la_LIBADD = \ + $(UOA_LIBS) \ + $(top_builddir)/libempathy-gtk/libempathy-gtk.la diff --git a/ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.c b/ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.c new file mode 100644 index 000000000..b9501efcf --- /dev/null +++ b/ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.c @@ -0,0 +1,52 @@ +/* + * empathy-app-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-app-plugin.h" + + +G_DEFINE_TYPE (EmpathyAppPlugin, empathy_app_plugin, AP_TYPE_APPLICATION_PLUGIN) + +static GtkWidget * +empathy_app_plugin_build_widget (ApApplicationPlugin *plugin) +{ + /* TODO */ + return NULL; +} + +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; +} diff --git a/ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.h b/ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.h new file mode 100644 index 000000000..0167c851e --- /dev/null +++ b/ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.h @@ -0,0 +1,73 @@ +/* + * empathy-app-plugin.h + * + * 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 + */ + +#ifndef __EMPATHY_APP_PLUGIN_H__ +#define __EMPATHY_APP_PLUGIN_H__ + +#include + +#include + +G_BEGIN_DECLS + +typedef struct _EmpathyAppPlugin EmpathyAppPlugin; +typedef struct _EmpathyAppPluginClass EmpathyAppPluginClass; + +struct _EmpathyAppPluginClass +{ + /**/ + ApApplicationPluginClass parent_class; +}; + +struct _EmpathyAppPlugin +{ + /**/ + ApApplicationPlugin parent; +}; + +GType empathy_app_plugin_get_type (void); + +/* TYPE MACROS */ +#define EMPATHY_TYPE_APP_PLUGIN \ + (empathy_app_plugin_get_type ()) +#define EMPATHY_APP_PLUGIN(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST((obj), \ + EMPATHY_TYPE_APP_PLUGIN, \ + EmpathyAppPlugin)) +#define EMPATHY_APP_PLUGIN_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_CAST((klass), \ + EMPATHY_TYPE_APP_PLUGIN, \ + EmpathyAppPluginClass)) +#define EMPATHY_IS_APP_PLUGIN(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE((obj), \ + EMPATHY_TYPE_APP_PLUGIN)) +#define EMPATHY_IS_APP_PLUGIN_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_TYPE((klass), \ + EMPATHY_TYPE_APP_PLUGIN)) +#define EMPATHY_APP_PLUGIN_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS ((obj), \ + EMPATHY_TYPE_APP_PLUGIN, \ + EmpathyAppPluginClass)) + +GType ap_module_get_object_type (void); + +G_END_DECLS + +#endif /* #ifndef __EMPATHY_APP_PLUGIN_H__*/ diff --git a/ubuntu-online-accounts/cc-plugins/generate-plugins.py b/ubuntu-online-accounts/cc-plugins/generate-plugins.py index a5a892f77..c17a55ef6 100755 --- a/ubuntu-online-accounts/cc-plugins/generate-plugins.py +++ b/ubuntu-online-accounts/cc-plugins/generate-plugins.py @@ -59,7 +59,7 @@ def generate_makefile_am(plugins): f.write( '''# Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py # Do NOT edit manually -SUBDIRS = providers services +SUBDIRS = providers services app-plugin plugindir = $(ACCOUNTS_PROVIDER_PLUGIN_DIR) -- cgit v1.2.3