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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "eom-fullscreen-plugin.h"
#include <gmodule.h>
#include <glib/gi18n-lib.h>
#include <libpeas/peas-activatable.h>
#include <eom-debug.h>
#include <eom-window.h>
#include <eom-window-activatable.h>
static void eom_window_activatable_iface_init (EomWindowActivatableInterface *iface);
G_DEFINE_DYNAMIC_TYPE_EXTENDED (EomFullscreenPlugin,
eom_fullscreen_plugin,
PEAS_TYPE_EXTENSION_BASE,
0,
G_IMPLEMENT_INTERFACE_DYNAMIC (EOM_TYPE_WINDOW_ACTIVATABLE,
eom_window_activatable_iface_init))
enum {
PROP_0,
PROP_WINDOW
};
static gboolean
on_button_press (GtkWidget *button,
GdkEventButton *event,
EomWindow *window)
{
if (event->button == 1 && event->type == GDK_2BUTTON_PRESS)
{
EomWindowMode mode = eom_window_get_mode (window);
if (mode == EOM_WINDOW_MODE_SLIDESHOW || mode == EOM_WINDOW_MODE_FULLSCREEN)
{
eom_window_set_mode (window, EOM_WINDOW_MODE_NORMAL);
}
else if (mode == EOM_WINDOW_MODE_NORMAL)
{
eom_window_set_mode (window, EOM_WINDOW_MODE_FULLSCREEN);
}
return TRUE;
}
return FALSE;
}
static void
eom_fullscreen_plugin_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
EomFullscreenPlugin *plugin = EOM_FULLSCREEN_PLUGIN (object);
switch (prop_id)
{
case PROP_WINDOW:
plugin->window = EOM_WINDOW (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_WINDOW:
g_value_set_object (value, plugin->window);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
eom_fullscreen_plugin_init (EomFullscreenPlugin *plugin)
{
eom_debug_message (DEBUG_PLUGINS, "EomFullscreenPlugin initializing");
}
static void
eom_fullscreen_plugin_dispose (GObject *object)
{
EomFullscreenPlugin *plugin = EOM_FULLSCREEN_PLUGIN (object);
eom_debug_message (DEBUG_PLUGINS, "EomFullscreenPlugin disposing");
if (plugin->window != NULL) {
g_object_unref (plugin->window);
plugin->window = NULL;
}
G_OBJECT_CLASS (eom_fullscreen_plugin_parent_class)->dispose (object);
}
static void
eom_fullscreen_plugin_activate (EomWindowActivatable *activatable)
{
EomFullscreenPlugin *plugin = EOM_FULLSCREEN_PLUGIN (activatable);
GtkWidget *view = eom_window_get_view (plugin->window);
eom_debug (DEBUG_PLUGINS);
plugin->signal_id = g_signal_connect (view, "button-press-event",
G_CALLBACK (on_button_press),
plugin->window);
}
static void
eom_fullscreen_plugin_deactivate (EomWindowActivatable *activatable)
{
EomFullscreenPlugin *plugin = EOM_FULLSCREEN_PLUGIN (activatable);
GtkWidget *view = eom_window_get_view (plugin->window);
#if GLIB_CHECK_VERSION(2,62,0)
g_clear_signal_handler (&plugin->signal_id, view);
#else
if (plugin->signal_id != 0) {
g_signal_handler_disconnect (view, plugin->signal_id);
plugin->signal_id = 0;
}
#endif
}
static void
eom_fullscreen_plugin_class_init (EomFullscreenPluginClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
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_class_override_property (object_class, PROP_WINDOW, "window");
}
static void
eom_fullscreen_plugin_class_finalize (EomFullscreenPluginClass *klass)
{
/* dummy function - used by G_DEFINE_DYNAMIC_TYPE_EXTENDED */
}
static void
eom_window_activatable_iface_init (EomWindowActivatableInterface *iface)
{
iface->activate = eom_fullscreen_plugin_activate;
iface->deactivate = eom_fullscreen_plugin_deactivate;
}
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,
EOM_TYPE_WINDOW_ACTIVATABLE,
EOM_TYPE_FULLSCREEN_PLUGIN);
}
|