Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2005-04-15 13:45:48 (GMT)
committer Marco Pesenti Gritti <marco@src.gnome.org>2005-04-15 13:45:48 (GMT)
commit1ffbf57cf1dc030f178be587e7408b1108a23dc5 (patch)
treed6e03ae496a2982eea8a2fb5cefe6e5242a902fc /shell
parent0a98d7368e225a9867acd04ea0c64094c22ba621 (diff)
Rework sizing to deal with documents with not uniform page size.
2005-04-15 Marco Pesenti Gritti <mpg@redhat.com> * shell/ev-view.c: (compute_zoom_factor), (ev_view_size_request), (page_changed_cb), (ev_view_zoom), (ev_view_zoom_in), (ev_view_zoom_out), (ev_view_set_size): Rework sizing to deal with documents with not uniform page size.
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-view.c108
1 files changed, 55 insertions, 53 deletions
diff --git a/shell/ev-view.c b/shell/ev-view.c
index b615b6c..a3033ad 100644
--- a/shell/ev-view.c
+++ b/shell/ev-view.c
@@ -281,6 +281,53 @@ doc_rect_to_view_rect (EvView *view, EvRectangle *doc_rect, GdkRectangle *view_r
view_rect->height = ceil (doc_rect->y2 * view->scale) + y_offset - view_rect->y;
}
+static void
+compute_zoom_factor (EvView *view)
+{
+ int doc_width, doc_height;
+ double scale, scale_w, scale_h;
+ GtkBorder border;
+
+ if (view->width <= 0 && view->height <= 0) {
+ return;
+ }
+
+ doc_width = doc_height = 0;
+ scale = scale_w = scale_h = 1.0;
+ ev_page_cache_get_size (view->page_cache,
+ view->current_page,
+ 1.0,
+ &doc_width,
+ &doc_height);
+
+ /* FIXME: The border size isn't constant. Ugh. Still, if we have extra
+ * space, we just cut it from the border */
+ ev_document_misc_get_page_border_size (doc_width, doc_height, &border);
+
+ if (doc_width == 0 || doc_height == 0) {
+ return;
+ }
+
+ if (view->width >= 0) {
+ int target_width;
+
+ target_width = view->width - (view->spacing * 2 + border.left + border.right);
+ scale = scale_w = (double)target_width / doc_width;
+ }
+
+ if (view->height >= 0) {
+ int target_height;
+
+ target_height = view->height - (view->spacing * 2 + border.top + border.bottom);
+ scale = scale_h = (double)target_height / doc_height;
+ }
+
+ if (view->width >= 0 && view->height >= 0) {
+ scale = (scale_w < scale_h) ? scale_w : scale_h;
+ }
+
+ view->scale = scale;
+}
/* Called by size_request to make sure we have appropriate jobs running.
*/
@@ -301,6 +348,8 @@ ev_view_size_request (GtkWidget *widget,
return;
}
+ compute_zoom_factor (view);
+
ev_page_cache_get_size (view->page_cache,
view->current_page,
view->scale,
@@ -1410,6 +1459,8 @@ page_changed_cb (EvPageCache *page_cache,
view->current_page = new_page;
view->has_selection = FALSE;
+ compute_zoom_factor (view);
+
ev_pixbuf_cache_set_page_range (view->pixbuf_cache,
view->current_page,
view->current_page,
@@ -1518,83 +1569,34 @@ ev_view_zoom (EvView *view,
scale = CLAMP (scale, MIN_SCALE, MAX_SCALE);
view->scale = scale;
+ view->width = view->height = -1;
gtk_widget_queue_resize (GTK_WIDGET (view));
}
void
ev_view_zoom_in (EvView *view)
{
- view->width = view->height = -1;
ev_view_zoom (view, ZOOM_IN_FACTOR, TRUE);
}
void
ev_view_zoom_out (EvView *view)
{
- view->width = view->height = -1;
ev_view_zoom (view, ZOOM_OUT_FACTOR, TRUE);
}
-static double
-size_to_zoom_factor (EvView *view, int width, int height)
-{
- int doc_width, doc_height;
- double scale, scale_w, scale_h;
- GtkBorder border;
-
- doc_width = doc_height = 0;
- scale = scale_w = scale_h = 1.0;
- ev_page_cache_get_size (view->page_cache,
- view->current_page,
- view->scale,
- &doc_width,
- &doc_height);
-
- /* FIXME: The border size isn't constant. Ugh. Still, if we have extra
- * space, we just cut it from the border */
- ev_document_misc_get_page_border_size (doc_width, doc_height, &border);
-
- if (doc_width == 0 && doc_height == 0) {
- return 0;
- }
-
- if (width >= 0) {
- int target_width;
-
- target_width = width - (view->spacing * 2 + border.left + border.right);
- scale = scale_w = (double)target_width * view->scale / doc_width;
- }
-
- if (height >= 0) {
- int target_height;
-
- target_height = height - (view->spacing * 2 + border.top + border.bottom);
- scale = scale_h = (double)target_height * view->scale / doc_height;
- }
-
- if (width >= 0 && height >= 0) {
- scale = (scale_w < scale_h) ? scale_w : scale_h;
- }
-
- return scale;
-}
-
void
ev_view_set_size (EvView *view,
int width,
int height)
{
- double factor;
-
- if (!view->document)
+ if (!view->document) {
return;
+ }
- if (view->width != width ||
- view->height != height) {
+ if (width != view->width || height != view->height) {
view->width = width;
view->height = height;
- factor = size_to_zoom_factor (view, width, height);
- ev_view_zoom (view, factor, FALSE);
gtk_widget_queue_resize (GTK_WIDGET (view));
}
}