Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend/ev-link.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@src.gnome.org>2005-01-10 19:08:15 (GMT)
committer Marco Pesenti Gritti <marco@src.gnome.org>2005-01-10 19:08:15 (GMT)
commit2d5fe16a0b4a8bbb85933e471a62550384446821 (patch)
tree8cf9cc024c35796da1b6d75b6d1d1f9312f9ed3d /backend/ev-link.c
parentd906aff9da8222c4377c558cbb079be0dc26613f (diff)
Rename bookmark to link, and use "Index" for the sidebar panel.
Diffstat (limited to 'backend/ev-link.c')
-rw-r--r--backend/ev-link.c310
1 files changed, 310 insertions, 0 deletions
diff --git a/backend/ev-link.c b/backend/ev-link.c
new file mode 100644
index 0000000..14ef3a2
--- /dev/null
+++ b/backend/ev-link.c
@@ -0,0 +1,310 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */
+/* this file is part of evince, a gnome document viewer
+ *
+ * Copyright (C) 2005 Red Hat, Inc.
+ *
+ * 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.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "ev-link.h"
+
+enum {
+ PROP_0,
+ PROP_TITLE,
+ PROP_TYPE,
+ PROP_PAGE,
+ PROP_URI
+};
+
+struct _EvLinkPrivate {
+ char *title;
+ char *uri;
+ EvLinkType type;
+ int page;
+};
+
+static GObjectClass *parent_class = NULL;
+
+G_DEFINE_TYPE (EvLink, ev_link, G_TYPE_OBJECT)
+
+#define EV_LINK_GET_PRIVATE(object) \
+ (G_TYPE_INSTANCE_GET_PRIVATE ((object), EV_TYPE_LINK, EvLinkPrivate))
+
+GType
+ev_link_type_get_type (void)
+{
+ static GType type = 0;
+
+ if (G_UNLIKELY (type == 0)) {
+ static const GEnumValue values[] = {
+ { EV_LINK_TYPE_TITLE, "EV_LINK_TYPE_TITLE", "title" },
+ { EV_LINK_TYPE_PAGE, "EV_LINK_TYPE_PAGE", "page" },
+ { EV_LINK_TYPE_EXTERNAL_URI, "EV_LINK_TYPE_EXTERNAL_URI", "external" },
+ { 0, NULL, NULL }
+ };
+
+ type = g_enum_register_static ("EvLinkType", values);
+ }
+
+ return type;
+}
+
+const char *
+ev_link_get_title (EvLink *self)
+{
+ g_return_val_if_fail (EV_IS_LINK (self), NULL);
+
+ return self->priv->title;
+}
+
+void
+ev_link_set_title (EvLink* self, const char *title)
+{
+ g_assert (EV_IS_LINK (self));
+ g_assert (title != NULL);
+
+ if (self->priv->title != NULL) {
+ g_free (self->priv->title);
+ }
+
+ self->priv->title = g_strdup (title);
+
+ g_object_notify (G_OBJECT (self), "title");
+}
+
+const char *
+ev_link_get_uri (EvLink *self)
+{
+ g_return_val_if_fail (EV_IS_LINK (self), NULL);
+
+ return self->priv->uri;
+}
+
+void
+ev_link_set_uri (EvLink* self, const char *uri)
+{
+ g_assert (EV_IS_LINK (self));
+ g_assert (uri != NULL);
+
+ if (self->priv->uri != NULL) {
+ g_free (self->priv->uri);
+ }
+
+ self->priv->uri = g_strdup (uri);
+
+ g_object_notify (G_OBJECT (self), "uri");
+}
+
+EvLinkType
+ev_link_get_link_type (EvLink *self)
+{
+ g_return_val_if_fail (EV_IS_LINK (self), 0);
+
+ return self->priv->type;
+}
+
+void
+ev_link_set_link_type (EvLink* self, EvLinkType type)
+{
+ g_assert (EV_IS_LINK (self));
+
+ self->priv->type = type;
+
+ g_object_notify (G_OBJECT (self), "type");
+}
+
+int
+ev_link_get_page (EvLink *self)
+{
+ g_return_val_if_fail (EV_IS_LINK (self), 0);
+
+ return self->priv->page;
+}
+
+void
+ev_link_set_page (EvLink* self, int page)
+{
+ g_assert (EV_IS_LINK (self));
+
+ self->priv->page = page;
+
+ g_object_notify (G_OBJECT (self), "page");
+}
+
+static void
+ev_link_get_property (GObject *object, guint prop_id, GValue *value,
+ GParamSpec *param_spec)
+{
+ EvLink *self;
+
+ self = EV_LINK (object);
+
+ switch (prop_id) {
+ case PROP_TITLE:
+ g_value_set_string (value, self->priv->title);
+ break;
+ case PROP_URI:
+ g_value_set_string (value, self->priv->uri);
+ break;
+ case PROP_TYPE:
+ g_value_set_enum (value, self->priv->type);
+ break;
+ case PROP_PAGE:
+ g_value_set_int (value, self->priv->page);
+ break;
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object,
+ prop_id,
+ param_spec);
+ break;
+ }
+}
+
+static void
+ev_link_set_property (GObject *object, guint prop_id, const GValue *value,
+ GParamSpec *param_spec)
+{
+ EvLink *self;
+
+ self = EV_LINK (object);
+
+ switch (prop_id) {
+ case PROP_TITLE:
+ ev_link_set_title (self, g_value_get_string (value));
+ break;
+ case PROP_URI:
+ ev_link_set_uri (self, g_value_get_string (value));
+ break;
+ case PROP_TYPE:
+ ev_link_set_link_type (self, g_value_get_enum (value));
+ break;
+ case PROP_PAGE:
+ ev_link_set_page (self, g_value_get_int (value));
+ break;
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object,
+ prop_id,
+ param_spec);
+ break;
+ }
+}
+
+static void
+ev_window_dispose (GObject *object)
+{
+ EvLinkPrivate *priv;
+
+ g_return_if_fail (EV_IS_LINK (object));
+
+ priv = EV_LINK (object)->priv;
+
+ if (priv->title) {
+ g_free (priv->title);
+ priv->title = NULL;
+ }
+
+ G_OBJECT_CLASS (parent_class)->dispose (object);
+}
+
+static void
+ev_link_init (EvLink *ev_link)
+{
+ ev_link->priv = EV_LINK_GET_PRIVATE (ev_link);
+
+ ev_link->priv->type = EV_LINK_TYPE_TITLE;
+}
+
+static void
+ev_link_class_init (EvLinkClass *ev_window_class)
+{
+ GObjectClass *g_object_class;
+
+ parent_class = g_type_class_peek_parent (ev_window_class);
+
+ g_object_class = G_OBJECT_CLASS (ev_window_class);
+ g_object_class->dispose = ev_window_dispose;
+ g_object_class->set_property = ev_link_set_property;
+ g_object_class->get_property = ev_link_get_property;
+
+ g_type_class_add_private (g_object_class, sizeof (EvLinkPrivate));
+
+ g_object_class_install_property (g_object_class,
+ PROP_TITLE,
+ g_param_spec_string ("title",
+ "Link Title",
+ "The link title",
+ NULL,
+ G_PARAM_READWRITE));
+
+ g_object_class_install_property (g_object_class,
+ PROP_URI,
+ g_param_spec_string ("uri",
+ "Link URI",
+ "The link URI",
+ NULL,
+ G_PARAM_READWRITE));
+
+ g_object_class_install_property (g_object_class,
+ PROP_TYPE,
+ g_param_spec_enum ("type",
+ "Link Type",
+ "The link type",
+ EV_TYPE_LINK_TYPE,
+ EV_LINK_TYPE_TITLE,
+ G_PARAM_READWRITE));
+
+ g_object_class_install_property (g_object_class,
+ PROP_PAGE,
+ g_param_spec_int ("page",
+ "Link Page",
+ "The link page",
+ 0,
+ G_MAXINT,
+ 0,
+ G_PARAM_READWRITE));
+}
+
+EvLink *
+ev_link_new_title (const char *title)
+{
+ return EV_LINK (g_object_new (EV_TYPE_LINK,
+ "title", title,
+ "type", EV_LINK_TYPE_TITLE,
+ NULL));
+}
+
+EvLink *
+ev_link_new_page (const char *title, int page)
+{
+ return EV_LINK (g_object_new (EV_TYPE_LINK,
+ "title", title,
+ "page", page,
+ "type", EV_LINK_TYPE_PAGE,
+ NULL));
+}
+
+EvLink *
+ev_link_new_external (const char *title, const char *uri)
+{
+ return EV_LINK (g_object_new (EV_TYPE_LINK,
+ "title", title,
+ "uri", uri,
+ "type", EV_LINK_TYPE_EXTERNAL_URI,
+ NULL));
+}