[emerillon/gtk3] Use totem plugin macro for Map Position plugin
- From: Andreas Henriksson <ah src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [emerillon/gtk3] Use totem plugin macro for Map Position plugin
- Date: Tue, 9 Aug 2011 15:31:56 +0000 (UTC)
commit 6db969fa3470b694ed4c9ebd5e8d4f2c17ef21cf
Author: Andreas Henriksson <andreas fatal se>
Date: Tue Aug 9 17:24:39 2011 +0200
Use totem plugin macro for Map Position plugin
plugins/Makefile.am | 1 -
plugins/map-position/map-position.c | 60 +++++++---------------------------
plugins/map-position/map-position.h | 57 ---------------------------------
3 files changed, 13 insertions(+), 105 deletions(-)
---
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index 4a374ac..ed8540a 100755
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -55,7 +55,6 @@ plugins_in_files += \
map-position/map-position.plugin.in
map_position_libmap_position_la_SOURCES = \
- map-position/map-position.h \
map-position/map-position.c
map_position_libmap_position_la_LIBADD = \
diff --git a/plugins/map-position/map-position.c b/plugins/map-position/map-position.c
index 0d592eb..3bf5115 100644
--- a/plugins/map-position/map-position.c
+++ b/plugins/map-position/map-position.c
@@ -21,29 +21,31 @@
#include "config.h"
#endif
-#include "map-position.h"
+#include "cut-paste/totem-plugin.h"
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include "emerillon/emerillon.h"
-static void
-peas_activatable_iface_init (PeasActivatableInterface *iface);
+#define MAP_POSITION_TYPE_PLUGIN (map_position_plugin_get_type())
+#define MAP_POSITION_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAP_POSITION_TYPE_PLUGIN, MapPositionPlugin))
+#define MAP_POSITION_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MAP_POSITION_TYPE_PLUGIN, MapPositionPluginClass))
+#define MAP_POSITION_IS_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAP_POSITION_TYPE_PLUGIN))
+#define MAP_POSITION_IS_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MAP_POSITION_TYPE_PLUGIN))
+#define MAP_POSITION_PLUGIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MAP_POSITION_TYPE_PLUGIN, MapPositionPluginClass))
-G_DEFINE_DYNAMIC_TYPE_EXTENDED (MapPositionPlugin, map_position_plugin, PEAS_TYPE_EXTENSION_BASE,
- 0,
- G_IMPLEMENT_INTERFACE_DYNAMIC (PEAS_TYPE_ACTIVATABLE,
- peas_activatable_iface_init));
-struct _MapPositionPluginPrivate
+typedef struct
{
EmerillonWindow *window;
ChamplainView *map_view;
GtkStatusbar *statusbar;
guint signal_id;
-};
+} MapPositionPluginPrivate;
+
+TOTEM_PLUGIN_REGISTER (MAP_POSITION_TYPE_PLUGIN, MapPositionPlugin, map_position_plugin);
static void
moved_cb (GObject *gobject,
@@ -69,7 +71,7 @@ moved_cb (GObject *gobject,
}
static void
-map_position_plugin_activate (PeasActivatable *plugin)
+impl_activate (PeasActivatable *plugin)
{
MapPositionPluginPrivate *priv;
@@ -88,7 +90,7 @@ map_position_plugin_activate (PeasActivatable *plugin)
}
static void
-map_position_plugin_deactivate (PeasActivatable *plugin)
+impl_deactivate (PeasActivatable *plugin)
{
MapPositionPluginPrivate *priv;
@@ -97,39 +99,3 @@ map_position_plugin_deactivate (PeasActivatable *plugin)
gtk_statusbar_pop (priv->statusbar, 0);
}
-
-static void
-map_position_plugin_class_init (MapPositionPluginClass *klass)
-{
- g_type_class_add_private (klass, sizeof (MapPositionPluginPrivate));
-}
-
-static void
-map_position_plugin_class_finalize(MapPositionPluginClass *klass)
-{
-}
-
-static void
-map_position_plugin_init (MapPositionPlugin *plugin)
-{
- plugin->priv = G_TYPE_INSTANCE_GET_PRIVATE (plugin,
- MAP_POSITION_TYPE_PLUGIN,
- MapPositionPluginPrivate);
-}
-
-static void
-peas_activatable_iface_init (PeasActivatableInterface *iface)
-{
- iface->activate = map_position_plugin_activate;
- iface->deactivate = map_position_plugin_deactivate;
-}
-
-G_MODULE_EXPORT void
-peas_register_types (PeasObjectModule *module)
-{
- map_position_plugin_register_type (G_TYPE_MODULE (module));
-
- peas_object_module_register_extension_type (module,
- PEAS_TYPE_ACTIVATABLE,
- MAP_POSITION_TYPE_PLUGIN);
-}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]