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
|
/*
* Copyright © 2003 Marco Pesenti Gritti
* Copyright © 2003, 2004 Christian Persch
*
* 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, 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, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include "ephy-zoom-action.h"
#include "ephy-zoom.h"
#include <glib/gi18n.h>
/**
* SECTION:ephy-zoom-action
* @short_description: A #GtkAction implementing a zoom control
*
* #EphyZoomAction implements a #GtkAction able to control the zoom level.
*/
#define EPHY_ZOOM_ACTION_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_ZOOM_ACTION, EphyZoomActionPrivate))
struct _EphyZoomActionPrivate {
float zoom;
};
enum {
PROP_0,
PROP_ZOOM,
LAST_PROP
};
static GParamSpec *obj_properties[LAST_PROP];
enum {
ZOOM_TO_LEVEL_SIGNAL,
LAST_SIGNAL
};
static guint signals[LAST_SIGNAL] = { 0 };
G_DEFINE_TYPE (EphyZoomAction, ephy_zoom_action, GTK_TYPE_ACTION)
static void
proxy_menu_activate_cb (GtkMenuItem *menu_item, EphyZoomAction *action)
{
gint index;
float zoom;
/* menu item was toggled OFF */
if (!gtk_check_menu_item_get_active (GTK_CHECK_MENU_ITEM (menu_item))) return;
index = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (menu_item), "zoom-level"));
zoom = zoom_levels[index].level;
if (zoom != action->priv->zoom) {
g_signal_emit (action, signals[ZOOM_TO_LEVEL_SIGNAL], 0, zoom);
}
}
static GtkWidget *
create_menu_item (GtkAction *action)
{
EphyZoomActionPrivate *p = EPHY_ZOOM_ACTION (action)->priv;
GtkWidget *menu, *menu_item;
GSList *group = NULL;
guint i;
menu = gtk_menu_new ();
for (i = 0; i < n_zoom_levels; i++) {
menu_item = gtk_radio_menu_item_new_with_label (group, _(zoom_levels[i].name));
group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (menu_item));
gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (menu_item),
p->zoom == zoom_levels[i].level);
gtk_widget_show (menu_item);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
g_object_set_data (G_OBJECT (menu_item), "zoom-level", GINT_TO_POINTER (i));
g_signal_connect_object (G_OBJECT (menu_item), "activate",
G_CALLBACK (proxy_menu_activate_cb), action, 0);
}
gtk_widget_show (menu);
menu_item = GTK_ACTION_CLASS (ephy_zoom_action_parent_class)->create_menu_item (action);
gtk_menu_item_set_submenu (GTK_MENU_ITEM (menu_item), menu);
gtk_widget_show (menu_item);
return menu_item;
}
static void
ephy_zoom_action_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
EphyZoomAction *action;
action = EPHY_ZOOM_ACTION (object);
switch (prop_id) {
case PROP_ZOOM:
action->priv->zoom = g_value_get_float (value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
ephy_zoom_action_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
EphyZoomAction *action;
action = EPHY_ZOOM_ACTION (object);
switch (prop_id) {
case PROP_ZOOM:
g_value_set_float (value, action->priv->zoom);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
ephy_zoom_action_class_init (EphyZoomActionClass *class)
{
GObjectClass *object_class = G_OBJECT_CLASS (class);
GtkActionClass *action_class = GTK_ACTION_CLASS (class);
object_class->set_property = ephy_zoom_action_set_property;
object_class->get_property = ephy_zoom_action_get_property;
action_class->create_menu_item = create_menu_item;
/**
* EphyZoomAction:zoom:
*
* The current value of #EphyZoomAction, as a float.
*/
obj_properties[PROP_ZOOM] =
g_param_spec_float ("zoom", NULL, NULL,
ZOOM_MINIMAL,
ZOOM_MAXIMAL,
1.0,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
g_object_class_install_properties (object_class, LAST_PROP, obj_properties);
/**
* EphyZoomAction::zoom-to-level:
* @action: the object on which the signal is emitted
* @level: new zoom level
*
* Emitted when the user changes the value of the #EphyZoomAction.
*/
signals[ZOOM_TO_LEVEL_SIGNAL] =
g_signal_new ("zoom-to-level",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_FIRST,
G_STRUCT_OFFSET (EphyZoomActionClass, zoom_to_level),
NULL, NULL, NULL,
G_TYPE_NONE,
1,
G_TYPE_FLOAT);
g_type_class_add_private (object_class, sizeof (EphyZoomActionPrivate));
}
static void
ephy_zoom_action_init (EphyZoomAction *action)
{
action->priv = EPHY_ZOOM_ACTION_GET_PRIVATE (action);
action->priv->zoom = 1.0;
}
/**
* ephy_zoom_action_set_zoom_level:
* @action: an #EphyZoomAction
* @zoom: the new value for the zoom level
*
* Sets the zoom level of @action.
**/
void
ephy_zoom_action_set_zoom_level (EphyZoomAction *action, float zoom)
{
g_return_if_fail (EPHY_IS_ZOOM_ACTION (action));
if (zoom < ZOOM_MINIMAL || zoom > ZOOM_MAXIMAL) return;
action->priv->zoom = zoom;
g_object_notify_by_pspec (G_OBJECT (action), obj_properties[PROP_ZOOM]);
}
/**
* ephy_zoom_action_get_zoom_level:
* @action: an #EphyZoomControl
*
* Get the current zoom level of @action.
*
* Returns: the zoom level as a float
**/
float
ephy_zoom_action_get_zoom_level (EphyZoomAction *action)
{
g_return_val_if_fail (EPHY_IS_ZOOM_ACTION (action), 1.0);
return action->priv->zoom;
}
|