Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pixbuf/pixbuf-document.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2005-04-19 16:40:32 (GMT)
committer Marco Pesenti Gritti <marco@src.gnome.org>2005-04-19 16:40:32 (GMT)
commit6b05feae2e57d126f57a1f40527ff387070e9a73 (patch)
tree359dec6db594f5ca815560d0fd56a2989a7652ca /pixbuf/pixbuf-document.c
parenta5eb762668b3d758ffdf0133027a15de08e73f94 (diff)
Remove get_title from the interface, we can just use document info
2005-04-19 Marco Pesenti Gritti <mpg@redhat.com> * backend/ev-document.c: (ev_document_class_init), (ev_document_get_info), (ev_document_render_pixbuf): * backend/ev-document.h: * backend/ev-page-cache.c: (_ev_page_cache_new): * pdf/ev-poppler.cc: * pixbuf/pixbuf-document.c: (pixbuf_document_class_init), (pixbuf_document_get_info), (pixbuf_document_document_iface_init): * ps/ps-document.c: (ps_document_class_init), (document_load), (ps_document_get_info), (ps_document_document_iface_init): Remove get_title from the interface, we can just use document info
Diffstat (limited to 'pixbuf/pixbuf-document.c')
-rw-r--r--pixbuf/pixbuf-document.c49
1 files changed, 12 insertions, 37 deletions
diff --git a/pixbuf/pixbuf-document.c b/pixbuf/pixbuf-document.c
index 0aabb55..18d357d 100644
--- a/pixbuf/pixbuf-document.c
+++ b/pixbuf/pixbuf-document.c
@@ -20,11 +20,6 @@
#include "pixbuf-document.h"
#include "ev-document-thumbnails.h"
-enum {
- PROP_0,
- PROP_TITLE
-};
-
struct _PixbufDocumentClass
{
GObjectClass parent_class;
@@ -130,43 +125,11 @@ pixbuf_document_finalize (GObject *object)
}
static void
-pixbuf_document_set_property (GObject *object,
- guint prop_id,
- const GValue *value,
- GParamSpec *pspec)
-{
- switch (prop_id)
- {
- case PROP_TITLE:
- /* read only */
- break;
- }
-}
-
-static void
-pixbuf_document_get_property (GObject *object,
- guint prop_id,
- GValue *value,
- GParamSpec *pspec)
-{
- switch (prop_id)
- {
- case PROP_TITLE:
- g_value_set_string (value, NULL);
- break;
- }
-}
-
-static void
pixbuf_document_class_init (PixbufDocumentClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
gobject_class->finalize = pixbuf_document_finalize;
- gobject_class->get_property = pixbuf_document_get_property;
- gobject_class->set_property = pixbuf_document_set_property;
-
- g_object_class_override_property (gobject_class, PROP_TITLE, "title");
}
static gboolean
@@ -175,6 +138,17 @@ pixbuf_document_can_get_text (EvDocument *document)
return FALSE;
}
+static EvDocumentInfo *
+pixbuf_document_get_info (EvDocument *document)
+{
+ EvDocumentInfo *info;
+
+ info = g_new0 (EvDocumentInfo, 1);
+ info->fields_mask = 0;
+
+ return info;
+}
+
static void
pixbuf_document_document_iface_init (EvDocumentIface *iface)
{
@@ -184,6 +158,7 @@ pixbuf_document_document_iface_init (EvDocumentIface *iface)
iface->get_n_pages = pixbuf_document_get_n_pages;
iface->get_page_size = pixbuf_document_get_page_size;
iface->render_pixbuf = pixbuf_document_render_pixbuf;
+ iface->get_info = pixbuf_document_get_info;
}
static GdkPixbuf *