X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=pixbuf%2Fpixbuf-document.c;h=18d357dfdb857b5d021aedc2faab8275dbff270c;hb=c5e889301ed8ef25b628231b6bf897eaf549e941;hp=0aabb55f537d5172eee03589cd0bcaee09cfbdaf;hpb=1561766454d8a06d887da5c2955b8c4d1dddd9a3;p=evince.git diff --git a/pixbuf/pixbuf-document.c b/pixbuf/pixbuf-document.c index 0aabb55f..18d357df 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; @@ -129,44 +124,12 @@ pixbuf_document_finalize (GObject *object) G_OBJECT_CLASS (pixbuf_document_parent_class)->finalize (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 *