summaryrefslogtreecommitdiff
path: root/src/winwidget.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-03-08 19:42:35 +0100
committerDaniel Friesel <derf@finalrewind.org>2018-03-08 19:42:35 +0100
commit81963c7b44194be63479299f217e97e2d0c48db5 (patch)
treec0c5111069115846aafa2d08c012efdaec938ffd /src/winwidget.c
parentec974e9d13de4229999d2a6343695ecb354c035e (diff)
add (experimental and still slightly buggy) --inner-geometry feature
See #278
Diffstat (limited to 'src/winwidget.c')
-rw-r--r--src/winwidget.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/winwidget.c b/src/winwidget.c
index bb6181a..7b8a9dc 100644
--- a/src/winwidget.c
+++ b/src/winwidget.c
@@ -555,6 +555,32 @@ void winwidget_render_image(winwidget winwid, int resize, int force_alias)
winwid->im_y = (int) (winwid->h - (winwid->im_h * winwid->zoom)) >> 1;
}
+ /*
+ * Adjust X/Y offset if the image is larger than the window and
+ * --inner-geometry is set. This will cause odd behaviour when
+ * zooming an already large image in --inner-geometry mode, but in most
+ * cases this should be what the user wants. Plus, it doesn't require
+ * fiddling around in two or three places above, so it's the best
+ * solution considering a future refactoring of this function.
+ */
+
+ if (need_center || resize) {
+ if ((opt.inner_geom_flags & XValue) && (winwid->im_w * winwid->zoom) > winwid->w) {
+ if (opt.inner_geom_flags & XNegative) {
+ winwid->im_x = winwid->w - (winwid->im_w * winwid->zoom) - opt.inner_geom_x;
+ } else {
+ winwid->im_x = - opt.inner_geom_x * winwid->zoom;
+ }
+ }
+ if ((opt.inner_geom_flags & YValue) && (winwid->im_h * winwid->zoom) > winwid->h) {
+ if (opt.inner_geom_flags & YNegative) {
+ winwid->im_y = winwid->h - (winwid->im_h * winwid->zoom) - opt.inner_geom_y;
+ } else {
+ winwid->im_y = - opt.inner_geom_y * winwid->zoom;
+ }
+ }
+ }
+
/* Now we ensure only to render the area we're looking at */
dx = winwid->im_x;
dy = winwid->im_y;