X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=pixbuf%2Fpixbuf-document.c;h=d4a8c9afb1f41984dab2ff03b5be1ce0a15649a7;hb=6ce200550f7a34c878968320bfacd11591da4482;hp=c728ed0869082531510895c2a672372178652956;hpb=bf999dd5cf322d288a136a627bcb821cd2175eef;p=evince.git diff --git a/pixbuf/pixbuf-document.c b/pixbuf/pixbuf-document.c index c728ed08..d4a8c9af 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; @@ -35,10 +30,7 @@ struct _PixbufDocument GObject parent_instance; GdkPixbuf *pixbuf; - GdkDrawable *target; - gdouble scale; - - gint x_offset, y_offset; + EvOrientation orientation; }; typedef struct _PixbufDocumentClass PixbufDocumentClass; @@ -93,50 +85,75 @@ pixbuf_document_get_n_pages (EvDocument *document) return 1; } -static void -pixbuf_document_set_page (EvDocument *document, - int page) +static EvOrientation +pixbuf_document_get_orientation (EvDocument *document) { - /* Do nothing */ + PixbufDocument *pixbuf_document = PIXBUF_DOCUMENT (document); + + return pixbuf_document->orientation; } -static int -pixbuf_document_get_page (EvDocument *document) +static void +pixbuf_document_set_orientation (EvDocument *document, + EvOrientation orientation) { - return 1; + PixbufDocument *pixbuf_document = PIXBUF_DOCUMENT (document); + + pixbuf_document->orientation = orientation; } -static void -pixbuf_document_set_scale (EvDocument *document, - double scale) +static GdkPixbuf * +rotate_pixbuf (EvDocument *document, GdkPixbuf *pixbuf) { PixbufDocument *pixbuf_document = PIXBUF_DOCUMENT (document); - pixbuf_document->scale = scale; + switch (pixbuf_document->orientation) + { + case EV_ORIENTATION_LANDSCAPE: + return gdk_pixbuf_rotate_simple (pixbuf, 90); + case EV_ORIENTATION_UPSIDEDOWN: + return gdk_pixbuf_rotate_simple (pixbuf, 180); + case EV_ORIENTATION_SEASCAPE: + return gdk_pixbuf_rotate_simple (pixbuf, 270); + default: + return g_object_ref (pixbuf); + } } static void pixbuf_document_get_page_size (EvDocument *document, int page, - int *width, - int *height) + double *width, + double *height) { PixbufDocument *pixbuf_document = PIXBUF_DOCUMENT (document); - if (width) - *width = gdk_pixbuf_get_width (pixbuf_document->pixbuf) * pixbuf_document->scale; - if (height) - *height = gdk_pixbuf_get_height (pixbuf_document->pixbuf) * pixbuf_document->scale; + if (pixbuf_document->orientation == EV_ORIENTATION_PORTRAIT || + pixbuf_document->orientation == EV_ORIENTATION_UPSIDEDOWN) { + *width = gdk_pixbuf_get_width (pixbuf_document->pixbuf); + *height = gdk_pixbuf_get_height (pixbuf_document->pixbuf); + } else { + *width = gdk_pixbuf_get_height (pixbuf_document->pixbuf); + *height = gdk_pixbuf_get_width (pixbuf_document->pixbuf); + } } static GdkPixbuf* -pixbuf_document_render_pixbuf (EvDocument *document) +pixbuf_document_render_pixbuf (EvDocument *document, + EvRenderContext *rc) { PixbufDocument *pixbuf_document = PIXBUF_DOCUMENT (document); - return gdk_pixbuf_scale_simple (pixbuf_document->pixbuf, - gdk_pixbuf_get_width (pixbuf_document->pixbuf) * pixbuf_document->scale, - gdk_pixbuf_get_height (pixbuf_document->pixbuf) * pixbuf_document->scale, - GDK_INTERP_BILINEAR); + GdkPixbuf *scaled_pixbuf, *rotated_pixbuf; + + scaled_pixbuf = gdk_pixbuf_scale_simple (pixbuf_document->pixbuf, + gdk_pixbuf_get_width (pixbuf_document->pixbuf) * rc->scale, + gdk_pixbuf_get_height (pixbuf_document->pixbuf) * rc->scale, + GDK_INTERP_BILINEAR); + + rotated_pixbuf = rotate_pixbuf (document, scaled_pixbuf); + g_object_unref (scaled_pixbuf); + + return rotated_pixbuf; } static void @@ -149,61 +166,29 @@ 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 char * -pixbuf_document_get_text (EvDocument *document, GdkRectangle *rect) +static gboolean +pixbuf_document_can_get_text (EvDocument *document) { - /* FIXME this method should not be in EvDocument */ - g_warning ("pixbuf_document_get_text not implemented"); - return NULL; + return FALSE; } - -static EvLink * -pixbuf_document_get_link (EvDocument *document, - int x, - int y) +static EvDocumentInfo * +pixbuf_document_get_info (EvDocument *document) { - return NULL; + EvDocumentInfo *info; + + info = g_new0 (EvDocumentInfo, 1); + info->fields_mask = 0; + + return info; } static void @@ -211,14 +196,13 @@ pixbuf_document_document_iface_init (EvDocumentIface *iface) { iface->load = pixbuf_document_load; iface->save = pixbuf_document_save; - iface->get_text = pixbuf_document_get_text; - iface->get_link = pixbuf_document_get_link; + iface->can_get_text = pixbuf_document_can_get_text; iface->get_n_pages = pixbuf_document_get_n_pages; - iface->set_page = pixbuf_document_set_page; - iface->get_page = pixbuf_document_get_page; - iface->set_scale = pixbuf_document_set_scale; iface->get_page_size = pixbuf_document_get_page_size; iface->render_pixbuf = pixbuf_document_render_pixbuf; + iface->get_info = pixbuf_document_get_info; + iface->get_orientation = pixbuf_document_get_orientation; + iface->set_orientation = pixbuf_document_set_orientation; } static GdkPixbuf * @@ -269,8 +253,4 @@ pixbuf_document_document_thumbnails_iface_init (EvDocumentThumbnailsIface *iface static void pixbuf_document_init (PixbufDocument *pixbuf_document) { - pixbuf_document->scale = 1.0; - - pixbuf_document->x_offset = 0; - pixbuf_document->y_offset = 0; }