summaryrefslogtreecommitdiff
path: root/plugins/fullscreen/eom-fullscreen-plugin.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-11-30 21:33:21 +0300
committermonsta <[email protected]>2016-11-30 22:32:20 +0300
commitfe5d786a5dbbf3f2a12db6ef7b3adba5b1567614 (patch)
treee0e314c694f9c8d6fb36b881c490d4a4000fba17 /plugins/fullscreen/eom-fullscreen-plugin.c
parent108741a82a158996883f9d1ae19c6e65226f3309 (diff)
downloadeom-fe5d786a5dbbf3f2a12db6ef7b3adba5b1567614.tar.bz2
eom-fe5d786a5dbbf3f2a12db6ef7b3adba5b1567614.tar.xz
fullscreen plugin: port to libpeas
mostly adapted from: https://git.gnome.org/browse/eog/commit/?id=cf39e40b422dad061184ac67028661bd4dcb0106 https://git.gnome.org/browse/eog/commit/?id=8b0acfddc52c220393770a9895b6b56cab7821fd
Diffstat (limited to 'plugins/fullscreen/eom-fullscreen-plugin.c')
-rw-r--r--plugins/fullscreen/eom-fullscreen-plugin.c125
1 files changed, 89 insertions, 36 deletions
diff --git a/plugins/fullscreen/eom-fullscreen-plugin.c b/plugins/fullscreen/eom-fullscreen-plugin.c
index 24030ac..98accb4 100644
--- a/plugins/fullscreen/eom-fullscreen-plugin.c
+++ b/plugins/fullscreen/eom-fullscreen-plugin.c
@@ -6,17 +6,24 @@
#include <gmodule.h>
#include <glib/gi18n-lib.h>
+#include <libpeas/peas-activatable.h>
#include <eom-debug.h>
#include <eom-window.h>
-#define WINDOW_DATA_KEY "EomFullscreenWindowData"
+static void peas_activatable_iface_init (PeasActivatableInterface *iface);
-EOM_PLUGIN_REGISTER_TYPE (EomFullscreenPlugin, eom_fullscreen_plugin)
+G_DEFINE_DYNAMIC_TYPE_EXTENDED (EomFullscreenPlugin,
+ eom_fullscreen_plugin,
+ PEAS_TYPE_EXTENSION_BASE,
+ 0,
+ G_IMPLEMENT_INTERFACE_DYNAMIC (PEAS_TYPE_ACTIVATABLE,
+ peas_activatable_iface_init))
-typedef struct {
- gulong signal_id;
-} WindowData;
+enum {
+ PROP_0,
+ PROP_OBJECT
+};
static gboolean
on_button_press (GtkWidget *button,
@@ -43,13 +50,43 @@ on_button_press (GtkWidget *button,
}
static void
-free_window_data (WindowData *data)
+eom_fullscreen_plugin_set_property (GObject *object,
+ guint prop_id,
+ const GValue *value,
+ GParamSpec *pspec)
{
- g_return_if_fail (data != NULL);
+ EomFullscreenPlugin *plugin = EOM_FULLSCREEN_PLUGIN (object);
- eom_debug (DEBUG_PLUGINS);
+ switch (prop_id)
+ {
+ case PROP_OBJECT:
+ plugin->window = GTK_WIDGET (g_value_dup_object (value));
+ break;
+
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ break;
+ }
+}
+
+static void
+eom_fullscreen_plugin_get_property (GObject *object,
+ guint prop_id,
+ GValue *value,
+ GParamSpec *pspec)
+{
+ EomFullscreenPlugin *plugin = EOM_FULLSCREEN_PLUGIN (object);
+
+ switch (prop_id)
+ {
+ case PROP_OBJECT:
+ g_value_set_object (value, plugin->window);
+ break;
- g_free (data);
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ break;
+ }
}
static void
@@ -59,57 +96,73 @@ eom_fullscreen_plugin_init (EomFullscreenPlugin *plugin)
}
static void
-eom_fullscreen_plugin_finalize (GObject *object)
+eom_fullscreen_plugin_dispose (GObject *object)
{
- eom_debug_message (DEBUG_PLUGINS, "EomFullscreenPlugin finalizing");
+ EomFullscreenPlugin *plugin = EOM_FULLSCREEN_PLUGIN (object);
+
+ eom_debug_message (DEBUG_PLUGINS, "EomFullscreenPlugin disposing");
- G_OBJECT_CLASS (eom_fullscreen_plugin_parent_class)->finalize (object);
+ if (plugin->window != NULL) {
+ g_object_unref (plugin->window);
+ plugin->window = NULL;
+ }
+
+ G_OBJECT_CLASS (eom_fullscreen_plugin_parent_class)->dispose (object);
}
static void
-impl_activate (EomPlugin *plugin,
- EomWindow *window)
+eom_fullscreen_plugin_activate (PeasActivatable *activatable)
{
- GtkWidget *view = eom_window_get_view (window);
- WindowData *data;
+ EomFullscreenPlugin *plugin = EOM_FULLSCREEN_PLUGIN (activatable);
+ GtkWidget *view = eom_window_get_view (EOM_WINDOW (plugin->window));
eom_debug (DEBUG_PLUGINS);
- data = g_new (WindowData, 1);
+ plugin->signal_id = g_signal_connect (G_OBJECT (view),
+ "button-press-event",
+ G_CALLBACK (on_button_press),
+ plugin->window);
+}
- data->signal_id = g_signal_connect (G_OBJECT (view), "button-press-event",
- G_CALLBACK (on_button_press), window);
+static void
+eom_fullscreen_plugin_deactivate (PeasActivatable *activatable)
+{
+ EomFullscreenPlugin *plugin = EOM_FULLSCREEN_PLUGIN (activatable);
+ GtkWidget *view = eom_window_get_view (EOM_WINDOW (plugin->window));
- g_object_set_data_full (G_OBJECT(window), WINDOW_DATA_KEY, data, (GDestroyNotify) free_window_data);
+ g_signal_handler_disconnect (view, plugin->signal_id);
}
static void
-impl_deactivate (EomPlugin *plugin, EomWindow *window)
+eom_fullscreen_plugin_class_init (EomFullscreenPluginClass *klass)
{
- GtkWidget *view = eom_window_get_view (window);
- WindowData *data = (WindowData *) g_object_get_data (G_OBJECT (window), WINDOW_DATA_KEY);
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
- g_signal_handler_disconnect (view, data->signal_id);
+ object_class->dispose = eom_fullscreen_plugin_dispose;
+ object_class->set_property = eom_fullscreen_plugin_set_property;
+ object_class->get_property = eom_fullscreen_plugin_get_property;
- g_object_set_data (G_OBJECT (window), WINDOW_DATA_KEY, NULL);
+ g_object_class_override_property (object_class, PROP_OBJECT, "object");
}
static void
-impl_update_ui (EomPlugin *plugin,
- EomWindow *window)
+eom_fullscreen_plugin_class_finalize (EomFullscreenPluginClass *klass)
{
- /* Nothing */
+ /* dummy function - used by G_DEFINE_DYNAMIC_TYPE_EXTENDED */
}
static void
-eom_fullscreen_plugin_class_init (EomFullscreenPluginClass *klass)
+peas_activatable_iface_init (PeasActivatableInterface *iface)
{
- GObjectClass *object_class = G_OBJECT_CLASS (klass);
- EomPluginClass *plugin_class = EOM_PLUGIN_CLASS (klass);
-
- object_class->finalize = eom_fullscreen_plugin_finalize;
+ iface->activate = eom_fullscreen_plugin_activate;
+ iface->deactivate = eom_fullscreen_plugin_deactivate;
+}
- plugin_class->activate = impl_activate;
- plugin_class->deactivate = impl_deactivate;
- plugin_class->update_ui = impl_update_ui;
+G_MODULE_EXPORT void
+peas_register_types (PeasObjectModule *module)
+{
+ eom_fullscreen_plugin_register_type (G_TYPE_MODULE (module));
+ peas_object_module_register_extension_type (module,
+ PEAS_TYPE_ACTIVATABLE,
+ EOM_TYPE_FULLSCREEN_PLUGIN);
}