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 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
/* Reload Image -- Allows to reload an image from disk
*
* Copyright (C) 2007-2012 The Free Software Foundation
*
* Author: Lucas Rocha <lucasr@gnome.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "eog-reload-plugin.h"
#include <gmodule.h>
#include <glib/gi18n-lib.h>
#include <libpeas/peas.h>
#include <eog-application.h>
#include <eog-debug.h>
#include <eog-thumb-view.h>
#include <eog-window.h>
#include <eog-window-activatable.h>
enum {
PROP_0,
PROP_WINDOW
};
#define EOG_RELOAD_PLUGIN_MENU_ID "EogPluginRunReload"
#define EOG_RELOAD_PLUGIN_ACTION "reload"
static void eog_window_activatable_iface_init (EogWindowActivatableInterface *iface);
G_DEFINE_DYNAMIC_TYPE_EXTENDED (EogReloadPlugin,
eog_reload_plugin,
PEAS_TYPE_EXTENSION_BASE,
0,
G_IMPLEMENT_INTERFACE_DYNAMIC (EOG_TYPE_WINDOW_ACTIVATABLE,
eog_window_activatable_iface_init))
static void
reload_cb (GSimpleAction *simple,
GVariant *parameter,
gpointer user_data)
{
eog_window_reload_image (EOG_WINDOW (user_data));
}
static void
eog_reload_plugin_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
EogReloadPlugin *plugin = EOG_RELOAD_PLUGIN (object);
switch (prop_id)
{
case PROP_WINDOW:
plugin->window = EOG_WINDOW (g_value_dup_object (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
eog_reload_plugin_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
EogReloadPlugin *plugin = EOG_RELOAD_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
eog_reload_plugin_init (EogReloadPlugin *plugin)
{
eog_debug_message (DEBUG_PLUGINS, "EogReloadPlugin initializing");
}
static void
eog_reload_plugin_dispose (GObject *object)
{
EogReloadPlugin *plugin = EOG_RELOAD_PLUGIN (object);
eog_debug_message (DEBUG_PLUGINS, "EogReloadPlugin disposing");
if (plugin->window != NULL) {
g_object_unref (plugin->window);
plugin->window = NULL;
}
G_OBJECT_CLASS (eog_reload_plugin_parent_class)->dispose (object);
}
static void
eog_reload_plugin_update_action_state (EogReloadPlugin *plugin)
{
GAction *action;
EogThumbView *thumbview;
gboolean enable = FALSE;
thumbview = EOG_THUMB_VIEW (eog_window_get_thumb_view (plugin->window));
if (G_LIKELY (thumbview))
{
enable = (eog_thumb_view_get_n_selected (thumbview) != 0);
}
action = g_action_map_lookup_action (G_ACTION_MAP (plugin->window),
EOG_RELOAD_PLUGIN_ACTION);
g_simple_action_set_enabled (G_SIMPLE_ACTION (action), enable);
}
static void
_selection_changed_cb (EogThumbView *thumbview, gpointer user_data)
{
EogReloadPlugin *plugin = EOG_RELOAD_PLUGIN (user_data);
if (G_LIKELY (plugin))
eog_reload_plugin_update_action_state (plugin);
}
static void
eog_reload_plugin_activate (EogWindowActivatable *activatable)
{
const gchar * const accel_keys[] = { "R", NULL };
EogReloadPlugin *plugin = EOG_RELOAD_PLUGIN (activatable);
GMenu *model, *menu;
GMenuItem *item;
GSimpleAction *action;
eog_debug (DEBUG_PLUGINS);
model= eog_window_get_gear_menu_section (plugin->window,
"plugins-section");
g_return_if_fail (G_IS_MENU (model));
/* Setup and inject action */
action = g_simple_action_new (EOG_RELOAD_PLUGIN_ACTION, NULL);
g_signal_connect(action, "activate",
G_CALLBACK (reload_cb), plugin->window);
g_action_map_add_action (G_ACTION_MAP (plugin->window),
G_ACTION (action));
g_object_unref (action);
g_signal_connect (G_OBJECT (eog_window_get_thumb_view (plugin->window)),
"selection-changed",
G_CALLBACK (_selection_changed_cb),
plugin);
eog_reload_plugin_update_action_state (plugin);
/* Append entry to the window's gear menu */
menu = g_menu_new ();
g_menu_append (menu, _("Reload Image"),
"win." EOG_RELOAD_PLUGIN_ACTION);
item = g_menu_item_new_section (NULL, G_MENU_MODEL (menu));
g_menu_item_set_attribute (item, "id",
"s", EOG_RELOAD_PLUGIN_MENU_ID);
g_menu_item_set_attribute (item, G_MENU_ATTRIBUTE_ICON,
"s", "view-refresh-symbolic");
g_menu_append_item (model, item);
g_object_unref (item);
g_object_unref (menu);
/* Define accelerator keys */
gtk_application_set_accels_for_action (GTK_APPLICATION (EOG_APP),
"win." EOG_RELOAD_PLUGIN_ACTION,
accel_keys);
}
static void
eog_reload_plugin_deactivate (EogWindowActivatable *activatable)
{
const gchar * const empty_accels[1] = { NULL };
EogReloadPlugin *plugin = EOG_RELOAD_PLUGIN (activatable);
GMenu *menu;
GMenuModel *model;
gint i;
eog_debug (DEBUG_PLUGINS);
menu = eog_window_get_gear_menu_section (plugin->window,
"plugins-section");
g_return_if_fail (G_IS_MENU (menu));
/* Remove menu entry */
model = G_MENU_MODEL (menu);
for (i = 0; i < g_menu_model_get_n_items (model); i++) {
gchar *id;
if (g_menu_model_get_item_attribute (model, i, "id", "s", &id)) {
const gboolean found =
(g_strcmp0 (id, EOG_RELOAD_PLUGIN_MENU_ID) == 0);
g_free (id);
if (found) {
g_menu_remove (menu, i);
break;
}
}
}
/* Unset accelerator */
gtk_application_set_accels_for_action(GTK_APPLICATION (EOG_APP),
"win." EOG_RELOAD_PLUGIN_ACTION,
empty_accels);
/* Disconnect selection-changed handler as the thumbview would
* otherwise still cause callbacks during its own disposal */
g_signal_handlers_disconnect_by_func (eog_window_get_thumb_view (plugin->window),
_selection_changed_cb, plugin);
/* Finally remove action */
g_action_map_remove_action (G_ACTION_MAP (plugin->window),
EOG_RELOAD_PLUGIN_ACTION);
}
static void
eog_reload_plugin_class_init (EogReloadPluginClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->dispose= eog_reload_plugin_dispose;
object_class->set_property = eog_reload_plugin_set_property;
object_class->get_property = eog_reload_plugin_get_property;
g_object_class_override_property (object_class, PROP_WINDOW, "window");
}
static void
eog_reload_plugin_class_finalize (EogReloadPluginClass *klass)
{
}
static void
eog_window_activatable_iface_init (EogWindowActivatableInterface *iface)
{
iface->activate = eog_reload_plugin_activate;
iface->deactivate = eog_reload_plugin_deactivate;
}
G_MODULE_EXPORT void
peas_register_types (PeasObjectModule *module)
{
eog_reload_plugin_register_type (G_TYPE_MODULE (module));
peas_object_module_register_extension_type (module,
EOG_TYPE_WINDOW_ACTIVATABLE,
EOG_TYPE_RELOAD_PLUGIN);
}
|