Evince
Evince is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ev-history-action.c
Go to the documentation of this file.
1 /* ev-history-action.c
2  * this file is part of evince, a gnome document viewer
3  *
4  * Copyright (C) 2013 Carlos Garcia Campos <carlosgc@gnome.org>
5  *
6  * Evince is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Evince is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19  */
20 
21 #include "config.h"
22 #include "ev-history-action.h"
23 
24 #include <glib/gi18n.h>
25 
26 enum {
28 
30 };
31 
32 typedef enum {
36 
38  GtkWidget *back_button;
39  GtkWidget *forward_button;
40 
42  gboolean popup_shown;
43 };
44 
45 G_DEFINE_TYPE (EvHistoryAction, ev_history_action, GTK_TYPE_BOX)
46 
47 static void
48 history_menu_link_activated (GtkMenuItem *item,
49  EvHistoryAction *history_action)
50 {
51  EvLink *link;
52 
53  link = EV_LINK (g_object_get_data (G_OBJECT (item), "ev-history-menu-item-link"));
54  if (!link)
55  return;
56 
57  ev_history_go_to_link (history_action->priv->history, link);
58 }
59 
60 static void
61 popup_menu_hide_cb (GtkMenu *menu,
62  EvHistoryAction *history_action)
63 {
64  history_action->priv->popup_shown = FALSE;
65 }
66 
67 static void
69  EvHistoryActionButton action_button,
70  guint button,
71  guint32 event_time)
72 {
73  GtkWidget *menu;
74  GList *list = NULL;
75  GList *l;
76 
77  switch (action_button) {
79  list = ev_history_get_back_list (history_action->priv->history);
80  break;
82  list = ev_history_get_forward_list (history_action->priv->history);
83  break;
84  }
85 
86  if (!list)
87  return;
88 
89  menu = gtk_menu_new ();
90 
91  for (l = list; l; l = g_list_next (l)) {
92  EvLink *link = EV_LINK (l->data);
93  GtkWidget *item;
94 
95  item = gtk_menu_item_new_with_label (ev_link_get_title (link));
96  g_object_set_data_full (G_OBJECT (item), "ev-history-menu-item-link",
97  g_object_ref (link), (GDestroyNotify)g_object_unref);
98  g_signal_connect_object (item, "activate",
99  G_CALLBACK (history_menu_link_activated),
100  history_action, 0);
101  gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
102  gtk_widget_show (item);
103  }
104  g_list_free (list);
105 
106  history_action->priv->popup_shown = TRUE;
107  g_signal_connect (menu, "hide",
108  G_CALLBACK (popup_menu_hide_cb),
109  history_action);
110  gtk_menu_popup (GTK_MENU (menu),
111  NULL, NULL, NULL, NULL,
112  button, event_time);
113 }
114 
115 static void
116 ev_history_action_finalize (GObject *object)
117 {
118  EvHistoryAction *history_action = EV_HISTORY_ACTION (object);
119 
120  if (history_action->priv->history) {
121  g_object_remove_weak_pointer (G_OBJECT (history_action->priv->history),
122  (gpointer)&history_action->priv->history);
123  }
124 
125  G_OBJECT_CLASS (ev_history_action_parent_class)->finalize (object);
126 }
127 
128 static void
130  guint prop_id,
131  const GValue *value,
132  GParamSpec *pspec)
133 {
134  EvHistoryAction *history_action = EV_HISTORY_ACTION (object);
135 
136  switch (prop_id) {
137  case PROP_HISTORY:
138  history_action->priv->history = g_value_get_object (value);
139  break;
140  default:
141  G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
142  break;
143  }
144 }
145 
146 static void
148 {
149  EvHistoryAction *history_action = EV_HISTORY_ACTION (object);
150 
151  G_OBJECT_CLASS (ev_history_action_parent_class)->constructed (object);
152 
153  g_object_add_weak_pointer (G_OBJECT (history_action->priv->history),
154  (gpointer)&history_action->priv->history);
155 }
156 
157 static void
159 {
160  GObjectClass *object_class = G_OBJECT_CLASS (class);
161 
162  object_class->constructed = ev_history_action_constructed;
163  object_class->finalize = ev_history_action_finalize;
164  object_class->set_property = ev_history_action_set_property;
165 
166  g_object_class_install_property (object_class,
167  PROP_HISTORY,
168  g_param_spec_object ("history",
169  "History",
170  "The History",
172  G_PARAM_WRITABLE |
173  G_PARAM_CONSTRUCT_ONLY |
174  G_PARAM_STATIC_STRINGS));
175 
176  g_type_class_add_private (object_class, sizeof (EvHistoryActionPrivate));
177 }
178 
179 static gboolean
180 button_pressed (GtkWidget *button,
181  GdkEventButton *event,
182  EvHistoryAction *history_action)
183 {
184  EvHistoryActionPrivate *priv = history_action->priv;
185 
186  /* TODO: Show the popup menu after a long press too */
187  switch (event->button) {
188  case GDK_BUTTON_SECONDARY:
189  ev_history_action_show_popup (history_action,
190  button == priv->back_button ?
193  event->button, event->time);
194  return GDK_EVENT_STOP;
195  default:
196  break;
197  }
198 
199  return GDK_EVENT_PROPAGATE;
200 }
201 
202 static GtkWidget *
204  EvHistoryActionButton action_button)
205 {
206  GtkWidget *button;
207  GtkWidget *image;
208  const gchar *icon_name = NULL;
209  const gchar *tooltip_text = NULL;
210  const gchar *action_name = NULL;
211 
212  button = gtk_button_new ();
213  gtk_widget_set_valign (button, GTK_ALIGN_CENTER);
214  g_signal_connect (button, "button-press-event",
215  G_CALLBACK (button_pressed),
216  history_action);
217 
218  switch (action_button) {
220  icon_name = "go-previous-symbolic";
221  tooltip_text = _("Go to previous history item");
222  action_name = "win.go-back-history";
223  break;
225  icon_name = "go-next-symbolic";
226  tooltip_text = _("Go to next history item");
227  action_name = "win.go-forward-history";
228  break;
229  }
230 
231  image = gtk_image_new ();
232  gtk_actionable_set_action_name (GTK_ACTIONABLE (button), action_name);
233  gtk_button_set_image (GTK_BUTTON (button), image);
234  gtk_image_set_from_icon_name (GTK_IMAGE (image), icon_name, GTK_ICON_SIZE_MENU);
235  gtk_widget_set_tooltip_text (button, tooltip_text);
236  gtk_widget_set_can_focus (button, FALSE);
237 
238  return button;
239 }
240 
241 static void
243 {
244  GtkWidget *box = GTK_WIDGET (history_action);
245  GtkStyleContext *style_context;
247 
248  history_action->priv = G_TYPE_INSTANCE_GET_PRIVATE (history_action, EV_TYPE_HISTORY_ACTION, EvHistoryActionPrivate);
249  priv = history_action->priv;
250 
251  gtk_orientable_set_orientation (GTK_ORIENTABLE (box), GTK_ORIENTATION_HORIZONTAL);
252  style_context = gtk_widget_get_style_context (box);
253  gtk_style_context_add_class (style_context, GTK_STYLE_CLASS_RAISED);
254  gtk_style_context_add_class (style_context, GTK_STYLE_CLASS_LINKED);
255 
256  priv->back_button = ev_history_action_create_button (history_action,
258  gtk_container_add (GTK_CONTAINER (box), priv->back_button);
259  gtk_widget_show (priv->back_button);
260 
261  priv->forward_button = ev_history_action_create_button (history_action,
263  gtk_container_add (GTK_CONTAINER (box), priv->forward_button);
264  gtk_widget_show (priv->forward_button);
265 }
266 
267 GtkWidget *
269 {
270  g_return_val_if_fail (EV_IS_HISTORY (history), NULL);
271 
272  return GTK_WIDGET (g_object_new (EV_TYPE_HISTORY_ACTION, "history", history, NULL));
273 }
274 
275 gboolean
277 {
278  g_return_val_if_fail (EV_IS_HISTORY_ACTION (action), FALSE);
279 
280  return action->priv->popup_shown;
281 }