Skip to content
This repository has been archived by the owner on Jan 16, 2023. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'baskerville/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
xyb3rt committed Aug 7, 2012
2 parents c86079e + b56989f commit 795beac
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 6 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -115,6 +115,8 @@ The following additional key commands are available in *image mode*:
- Zoom out
= Set zoom level to 100%, or [count]%
w Fit image into window
e Fit image to window's width
E Fit image to window's height

h,j,k,l Pan image 1/5 of window width/height or [count] pixels
left/down/up/right (also with arrow keys)
Expand Down
3 changes: 2 additions & 1 deletion commands.c
Expand Up @@ -310,9 +310,10 @@ bool i_set_zoom(arg_t a) {

bool i_fit_to_win(arg_t a) {
bool ret = false;
scalemode_t sm = (scalemode_t) a;

if (mode == MODE_IMAGE) {
if ((ret = img_fit_win(&img)))
if ((ret = img_fit_win(&img, sm)))
img_center(&img);
}
return ret;
Expand Down
4 changes: 3 additions & 1 deletion config.def.h
Expand Up @@ -108,7 +108,9 @@ static const keymap_t keys[] = {
{ false, XK_minus, i_zoom, (arg_t) -1 },
{ false, XK_KP_Subtract, i_zoom, (arg_t) -1 },
{ false, XK_equal, i_set_zoom, (arg_t) 100 },
{ false, XK_w, i_fit_to_win, (arg_t) None },
{ false, XK_w, i_fit_to_win, (arg_t) SCALE_FIT },
{ false, XK_e, i_fit_to_win, (arg_t) SCALE_WIDTH },
{ false, XK_E, i_fit_to_win, (arg_t) SCALE_HEIGHT },
{ false, XK_W, i_fit_to_img, (arg_t) None },

{ false, XK_less, i_rotate, (arg_t) DIR_LEFT },
Expand Down
17 changes: 14 additions & 3 deletions image.c
Expand Up @@ -365,7 +365,18 @@ bool img_fit(img_t *img) {
zw = (float) img->win->w / (float) img->w;
zh = (float) img->win->h / (float) img->h;

z = MIN(zw, zh);
switch (img->scalemode) {
case SCALE_WIDTH:
z = zw;
break;
case SCALE_HEIGHT:
z = zh;
break;
default:
z = MIN(zw, zh);
break;
}

z = MAX(z, zoom_min);
z = MIN(z, zmax);

Expand Down Expand Up @@ -448,11 +459,11 @@ void img_render(img_t *img) {
img->dirty = false;
}

bool img_fit_win(img_t *img) {
bool img_fit_win(img_t *img, scalemode_t sm) {
if (img == NULL || img->im == NULL)
return false;

img->scalemode = SCALE_FIT;
img->scalemode = sm;
return img_fit(img);
}

Expand Down
2 changes: 1 addition & 1 deletion image.h
Expand Up @@ -65,7 +65,7 @@ void img_close(img_t*, bool);

void img_render(img_t*);

bool img_fit_win(img_t*);
bool img_fit_win(img_t*, scalemode_t);
bool img_center(img_t*);

bool img_zoom(img_t*, float);
Expand Down
6 changes: 6 additions & 0 deletions sxiv.1
Expand Up @@ -197,6 +197,12 @@ Set zoom level to 100%, or
.TP
.B w
Set zoom level to fit image into window.
.TP
.B e
Set zoom level to fit image into the window's width.
.TP
.B E
Set zoom level to fit image into the window's height.
.SS Panning
.TP
.BR h ", " Left
Expand Down
2 changes: 2 additions & 0 deletions types.h
Expand Up @@ -31,6 +31,8 @@ typedef enum {
typedef enum {
SCALE_DOWN,
SCALE_FIT,
SCALE_WIDTH,
SCALE_HEIGHT,
SCALE_ZOOM
} scalemode_t;

Expand Down

0 comments on commit 795beac

Please sign in to comment.