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
|
/* ev-annotations-toolbar.c
* this file is part of evince, a gnome document viewer
*
* Copyright (C) 2015 Carlos Garcia Campos <carlosgc@gnome.org>
*
* Evince 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.
*
* Evince 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/
#include "config.h"
#include "ev-annotations-toolbar.h"
#include <evince-document.h>
#include <glib/gi18n.h>
enum {
BEGIN_ADD_ANNOT,
CANCEL_ADD_ANNOT,
N_SIGNALS
};
struct _EvAnnotationsToolbar {
GtkBox base_instance;
GtkWidget *text_button;
GtkWidget *highlight_button;
};
struct _EvAnnotationsToolbarClass {
GtkBoxClass base_class;
};
static guint signals[N_SIGNALS];
G_DEFINE_TYPE (EvAnnotationsToolbar, ev_annotations_toolbar, GTK_TYPE_BOX)
static void
ev_annotations_toolbar_annot_button_toggled (GtkWidget *button,
EvAnnotationsToolbar *toolbar)
{
EvAnnotationType annot_type;
if (!gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button))) {
g_signal_emit (toolbar, signals[CANCEL_ADD_ANNOT], 0, NULL);
return;
}
if (button == toolbar->text_button) {
annot_type = EV_ANNOTATION_TYPE_TEXT;
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toolbar->highlight_button), FALSE);
} else if (button == toolbar->highlight_button) {
annot_type = EV_ANNOTATION_TYPE_TEXT_MARKUP;
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toolbar->text_button), FALSE);
} else {
g_assert_not_reached ();
}
g_signal_emit (toolbar, signals[BEGIN_ADD_ANNOT], 0, annot_type);
}
static gboolean
ev_annotations_toolbar_toggle_button_if_active (EvAnnotationsToolbar *toolbar,
GtkToggleButton *button)
{
if (!gtk_toggle_button_get_active (button))
return FALSE;
g_signal_handlers_block_by_func (button,
ev_annotations_toolbar_annot_button_toggled,
toolbar);
gtk_toggle_button_set_active (button, FALSE);
g_signal_handlers_unblock_by_func (button,
ev_annotations_toolbar_annot_button_toggled,
toolbar);
return TRUE;
}
static GtkWidget *
ev_annotations_toolbar_create_toggle_button (EvAnnotationsToolbar *toolbar,
const gchar *label,
const gchar *icon_name,
const gchar *tooltip)
{
GtkWidget *button = GTK_WIDGET (gtk_toggle_button_new ());
gtk_widget_set_tooltip_text (button, tooltip);
if (label)
gtk_button_set_label (GTK_BUTTON (button), label);
if (icon_name) {
GtkWidget *image = gtk_image_new_from_icon_name (icon_name, GTK_ICON_SIZE_BUTTON);
gtk_button_set_image (GTK_BUTTON (button), image);
}
/* For some reason adding text-button class to the GtkToogleButton makes the button smaller */
gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET (button)), "text-button");
g_signal_connect (button, "toggled",
G_CALLBACK (ev_annotations_toolbar_annot_button_toggled),
toolbar);
return button;
}
static void
ev_annotations_toolbar_init (EvAnnotationsToolbar *toolbar)
{
gtk_orientable_set_orientation (GTK_ORIENTABLE (toolbar), GTK_ORIENTATION_HORIZONTAL);
gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET (toolbar)), "inline-toolbar");
gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET (toolbar)), "linked");
/* Use Text label until we have:
* 1. More buttons in the toolbar (lack of space)
* 2. Clear icons for an action.
*/
toolbar->text_button = ev_annotations_toolbar_create_toggle_button (toolbar,
/* Translators: an annotation that looks like a "sticky note" */
_("Note text"),
NULL,
_("Add text annotation"));
gtk_box_pack_start (GTK_BOX(toolbar), toolbar->text_button, FALSE, FALSE, 0);
gtk_widget_show (toolbar->text_button);
toolbar->highlight_button = ev_annotations_toolbar_create_toggle_button (toolbar,
_("Highlight text"),
NULL,
_("Add highlight annotation"));
gtk_box_pack_start (GTK_BOX (toolbar), toolbar->highlight_button, FALSE, FALSE, 0);
gtk_widget_show (toolbar->highlight_button);
}
static void
ev_annotations_toolbar_class_init (EvAnnotationsToolbarClass *klass)
{
GObjectClass *g_object_class = G_OBJECT_CLASS (klass);
signals[BEGIN_ADD_ANNOT] =
g_signal_new ("begin-add-annot",
G_TYPE_FROM_CLASS (g_object_class),
G_SIGNAL_RUN_LAST,
0,
NULL, NULL,
g_cclosure_marshal_VOID__ENUM,
G_TYPE_NONE, 1,
EV_TYPE_ANNOTATION_TYPE);
signals[CANCEL_ADD_ANNOT] =
g_signal_new ("cancel-add-annot",
G_TYPE_FROM_CLASS (g_object_class),
G_SIGNAL_RUN_LAST,
0,
NULL, NULL,
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0,
G_TYPE_NONE);
}
GtkWidget *
ev_annotations_toolbar_new (void)
{
return GTK_WIDGET (g_object_new (EV_TYPE_ANNOTATIONS_TOOLBAR, NULL));
}
void
ev_annotations_toolbar_add_annot_finished (EvAnnotationsToolbar *toolbar)
{
g_return_if_fail (EV_IS_ANNOTATIONS_TOOLBAR (toolbar));
if (ev_annotations_toolbar_toggle_button_if_active (toolbar, GTK_TOGGLE_BUTTON (toolbar->text_button)))
return;
ev_annotations_toolbar_toggle_button_if_active (toolbar, GTK_TOGGLE_BUTTON (toolbar->highlight_button));
}
|