]> www.fi.muni.cz Git - evince.git/blobdiff - libview/ev-view-private.h
[build] Remove shave leftover
[evince.git] / libview / ev-view-private.h
index 4bec7bd2eaf798a3cf4657d7036668bd9bf6183f..c3c7554b09646d2038cd11af8544a2771bc8633c 100644 (file)
@@ -26,8 +26,8 @@
 #define __EV_VIEW_PRIVATE_H__
 
 #include "ev-view.h"
+#include "ev-document-model.h"
 #include "ev-pixbuf-cache.h"
-#include "ev-page-cache.h"
 #include "ev-jobs.h"
 #include "ev-image.h"
 #include "ev-form-field.h"
@@ -117,6 +117,12 @@ typedef enum {
        EV_PRESENTATION_END
 } EvPresentationState;
 
+typedef struct _EvHeightToPageCache {
+       gint rotation;
+       gdouble *height_to_page;
+       gdouble *dual_height_to_page;
+} EvHeightToPageCache;
+
 struct _EvView {
        GtkLayout layout;
 
@@ -127,9 +133,11 @@ struct _EvView {
        gint find_result;
        gboolean jump_to_find_result;
        gboolean highlight_find_results;
-       
+
+       EvDocumentModel *model;
        EvPageCache *page_cache;
        EvPixbufCache *pixbuf_cache;
+       EvHeightToPageCache *height_to_page_cache;
        EvViewCursor cursor;
        EvJobRender *current_job;
 
@@ -153,9 +161,6 @@ struct _EvView {
        gint rotation;
        gdouble scale;
        gint spacing;
-       gdouble dpi;
-       gdouble max_scale;
-       gdouble min_scale;
 
        gboolean loading;
        gboolean continuous;
@@ -211,7 +216,6 @@ struct _EvViewClass {
        void    (*binding_activated)      (EvView         *view,
                                           GtkScrollType   scroll,
                                           gboolean        horizontal);
-       void    (*zoom_invalid)           (EvView         *view);
        void    (*handle_link)            (EvView         *view,
                                           EvLink         *link);
        void    (*external_link)          (EvView         *view,
@@ -220,5 +224,12 @@ struct _EvViewClass {
                                           EvLink         *link);
 };
 
+void _get_page_size_for_scale_and_rotation (EvDocument *document,
+                                           gint        page,
+                                           gdouble     scale,
+                                           gint        rotation,
+                                           gint       *page_width,
+                                           gint       *page_height);
+
 #endif  /* __EV_VIEW_PRIVATE_H__ */