Newer
Older
/* winwidget.c
Copyright (C) 1999-2003 Tom Gilbert.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies of the Software and its documentation and acknowledgment shall be
given in the documentation and software packages that this Software was
used.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "feh.h"
#include "filelist.h"
#include "winwidget.h"
#include "options.h"
static void winwidget_unregister(winwidget win);
static void winwidget_register(winwidget win);
static winwidget winwidget_allocate(void);
int window_num = 0; /* For window list */
winwidget *windows = NULL; /* List of windows to loop though */
static winwidget winwidget_allocate(void)
winwidget ret = NULL;
ret = emalloc(sizeof(_winwidget));
memset(ret, 0, sizeof(_winwidget));
ret->win = 0;
ret->w = 0;
ret->h = 0;
ret->full_screen = 0;
ret->im_w = 0;
ret->im_h = 0;
ret->im_angle = 0;
ret->bg_pmap = 0;
ret->bg_pmap_cache = 0;
ret->im = NULL;
ret->name = NULL;
ret->file = NULL;
ret->errstr = NULL;
ret->type = WIN_TYPE_UNSET;
ret->visible = 0;
ret->caption_entry = 0;
ret->force_aliasing = opt.force_aliasing;
/* Zoom stuff */
ret->mode = MODE_NORMAL;
ret->gc = None;
/* New stuff */
ret->im_x = 0;
ret->im_y = 0;
ret->zoom = 1.0;
ret->click_offset_x = 0;
ret->click_offset_y = 0;
ret->has_rotated = 0;
Birte Kristina Friesel
committed
return(ret);
winwidget winwidget_create_from_image(Imlib_Image im, char *name, char type)
winwidget ret = NULL;
if (im == NULL)
Birte Kristina Friesel
committed
return(NULL);
ret = winwidget_allocate();
ret->type = type;
ret->im = im;
ret->w = ret->im_w = gib_imlib_image_get_width(ret->im);
ret->h = ret->im_h = gib_imlib_image_get_height(ret->im);
if (name)
ret->name = estrdup(name);
else
ret->name = estrdup(PACKAGE);
if (opt.full_screen && (type != WIN_TYPE_THUMBNAIL))
ret->full_screen = True;
winwidget_create_window(ret, ret->w, ret->h);
winwidget_render_image(ret, 1, 0);
Birte Kristina Friesel
committed
return(ret);
winwidget winwidget_create_from_file(gib_list * list, char *name, char type)
winwidget ret = NULL;
feh_file *file = FEH_FILE(list->data);
if (!file || !file->filename)
Birte Kristina Friesel
committed
return(NULL);
ret = winwidget_allocate();
ret->file = list;
ret->type = type;
if (name)
ret->name = estrdup(name);
else
ret->name = estrdup(file->filename);
if (winwidget_loadimage(ret, file) == 0) {
winwidget_destroy(ret);
Birte Kristina Friesel
committed
return(NULL);
}
if (!ret->win) {
ret->w = ret->im_w = gib_imlib_image_get_width(ret->im);
ret->h = ret->im_h = gib_imlib_image_get_height(ret->im);
D(("image is %dx%d pixels, format %s\n", ret->w, ret->h, gib_imlib_image_format(ret->im)));
if (opt.full_screen)
ret->full_screen = True;
winwidget_create_window(ret, ret->w, ret->h);
winwidget_render_image(ret, 1, 0);
}
Birte Kristina Friesel
committed
return(ret);
void winwidget_create_window(winwidget ret, int w, int h)
XSetWindowAttributes attr;
XEvent ev;
XClassHint *xch;
MWMHints mwmhints;
Atom prop = None;
int x = 0;
int y = 0;
char *tmpname;
D(("winwidget_create_window %dx%d\n", w, h));
if (ret->full_screen) {
w = scr->width;
h = scr->height;
if (opt.xinerama && xinerama_screens) {
w = xinerama_screens[xinerama_screen].width;
h = xinerama_screens[xinerama_screen].height;
Birte Kristina Friesel
committed
x = xinerama_screens[xinerama_screen].x_org;
y = xinerama_screens[xinerama_screen].y_org;
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
}
#endif /* HAVE_LIBXINERAMA */
} else if (opt.geom_flags) {
if (opt.geom_flags & WidthValue) {
w = opt.geom_w;
}
if (opt.geom_flags & HeightValue) {
h = opt.geom_h;
}
if (opt.geom_flags & XValue) {
if (opt.geom_flags & XNegative) {
x = scr->width - opt.geom_x;
} else {
x = opt.geom_x;
}
}
if (opt.geom_flags & YValue) {
if (opt.geom_flags & YNegative) {
y = scr->height - opt.geom_y;
} else {
y = opt.geom_y;
}
}
} else if (opt.screen_clip) {
if (w > scr->width)
w = scr->width;
if (h > scr->height)
h = scr->height;
if (opt.xinerama && xinerama_screens) {
if (w > xinerama_screens[xinerama_screen].width)
w = xinerama_screens[xinerama_screen].width;
if (h > xinerama_screens[xinerama_screen].height)
h = xinerama_screens[xinerama_screen].height;
}
#endif /* HAVE_LIBXINERAMA */
}
if (opt.paused) {
printf("name %s\n", ret->name);
tmpname = estrjoin(" ", ret->name, "[Paused]", NULL);
free(ret->name);
ret->name = tmpname;
}
ret->x = x;
ret->y = y;
ret->w = w;
ret->h = h;
ret->visible = False;
attr.backing_store = NotUseful;
attr.override_redirect = False;
attr.colormap = cm;
attr.border_pixel = 0;
attr.background_pixel = 0;
attr.save_under = False;
attr.event_mask =
StructureNotifyMask | ButtonPressMask | ButtonReleaseMask |
PointerMotionMask | EnterWindowMask | LeaveWindowMask |
KeyPressMask | KeyReleaseMask | ButtonMotionMask | ExposureMask
| FocusChangeMask | PropertyChangeMask | VisibilityChangeMask;
if (opt.borderless || ret->full_screen) {
prop = XInternAtom(disp, "_MOTIF_WM_HINTS", True);
if (prop == None) {
weprintf
("Window Manager does not support MWM hints. "
"To get a borderless window I have to bypass your wm.");
attr.override_redirect = True;
mwmhints.flags = 0;
} else {
mwmhints.flags = MWM_HINTS_DECORATIONS;
mwmhints.decorations = 0;
}
ret->win =
XCreateWindow(disp, DefaultRootWindow(disp), x, y, w, h, 0,
depth, InputOutput, vis,
CWOverrideRedirect | CWSaveUnder | CWBackingStore
| CWColormap | CWBackPixel | CWBorderPixel | CWEventMask, &attr);
if (mwmhints.flags) {
XChangeProperty(disp, ret->win, prop, prop, 32,
PropModeReplace, (unsigned char *) &mwmhints, PROP_MWM_HINTS_ELEMENTS);
}
if (ret->full_screen) {
Atom prop_fs = XInternAtom(disp, "_NET_WM_STATE_FULLSCREEN", False);
Atom prop_state = XInternAtom(disp, "_NET_WM_STATE", False);
memset(&ev, 0, sizeof(ev));
ev.xclient.type = ClientMessage;
ev.xclient.message_type = prop_state;
ev.xclient.display = disp;
ev.xclient.window = ret->win;
ev.xclient.format = 32;
ev.xclient.data.l[0] = 1;
ev.xclient.data.l[1] = prop_fs;
XChangeProperty(disp, ret->win, prop_state, XA_ATOM, 32,
PropModeReplace, (unsigned char *) &prop_fs, 1);
}
XSetWMProtocols(disp, ret->win, &wmDeleteWindow, 1);
winwidget_update_title(ret);
xch = XAllocClassHint();
xch->res_name = "feh";
xch->res_class = "feh";
XSetClassHint(disp, ret->win, xch);
XFree(xch);
/* Size hints */
if (ret->full_screen || opt.geom_flags) {
XSizeHints xsz;
xsz.flags = USPosition;
xsz.x = x;
xsz.y = y;
XSetWMNormalHints(disp, ret->win, &xsz);
XMoveWindow(disp, ret->win, x, y);
}
if (opt.hide_pointer)
winwidget_set_pointer(ret, 0);
/* set the icon name property */
XSetIconName(disp, ret->win, "feh");
/* set the command hint */
XSetCommand(disp, ret->win, cmdargv, cmdargc);
winwidget_register(ret);
Birte Kristina Friesel
committed
return;
void winwidget_update_title(winwidget ret)
char *name;
Birte Kristina Friesel
committed
Atom prop_name = XInternAtom(disp, "_NET_WM_NAME", False);
Atom prop_icon = XInternAtom(disp, "_NET_WM_ICON_NAME", False);
Atom prop_utf8 = XInternAtom(disp, "UTF8_STRING", False);
name = ret->name ? ret->name : "feh";
XStoreName(disp, ret->win, name);
XSetIconName(disp, ret->win, name);
Birte Kristina Friesel
committed
XChangeProperty(disp, ret->win, prop_name, prop_utf8, 8,
PropModeReplace, (const unsigned char *)name, strlen(name));
XChangeProperty(disp, ret->win, prop_icon, prop_utf8, 8,
PropModeReplace, (const unsigned char *)name, strlen(name));
Birte Kristina Friesel
committed
return;
Levi Smith
committed
void winwidget_update_caption(winwidget winwid)
{
if (opt.caption_path) {
/* TODO: Does someone understand the caching here. Is this the right
* approach now that I have broken this out into a separate function. -lsmith */
/* cache bg pixmap. during caption entry, multiple redraws are done
* because the caption overlay changes - the image doesn't though, so re-
* rendering that is a waste of time */
if (winwid->caption_entry) {
GC gc;
if (winwid->bg_pmap_cache)
XFreePixmap(disp, winwid->bg_pmap_cache);
winwid->bg_pmap_cache = XCreatePixmap(disp, winwid->win, winwid->w, winwid->h, depth);
gc = XCreateGC(disp, winwid->win, 0, NULL);
XCopyArea(disp, winwid->bg_pmap, winwid->bg_pmap_cache, gc, 0, 0, winwid->w, winwid->h, 0, 0);
XFreeGC(disp, gc);
}
feh_draw_caption(winwid);
}
return;
}
void winwidget_setup_pixmaps(winwidget winwid)
if (winwid->full_screen) {
if (!(winwid->bg_pmap)) {
if (winwid->gc == None) {
XGCValues gcval;
if (opt.image_bg == IMAGE_BG_WHITE) {
gcval.foreground = WhitePixel(disp, DefaultScreen(disp));
winwid->gc = XCreateGC(disp, winwid->win, GCForeground, &gcval);
}
else if (opt.image_bg == IMAGE_BG_CHECKS) {
gcval.tile = feh_create_checks();
gcval.fill_style = FillTiled;
winwid->gc = XCreateGC(disp, winwid->win, GCTile | GCFillStyle, &gcval);
}
else {
gcval.foreground = BlackPixel(disp, DefaultScreen(disp));
winwid->gc = XCreateGC(disp, winwid->win, GCForeground, &gcval);
}
}
winwid->bg_pmap = XCreatePixmap(disp, winwid->win, scr->width, scr->height, depth);
}
XFillRectangle(disp, winwid->bg_pmap, winwid->gc, 0, 0, scr->width, scr->height);
} else {
if (!winwid->bg_pmap || winwid->had_resize) {
D(("recreating background pixmap (%dx%d)\n", winwid->w, winwid->h));
if (winwid->bg_pmap)
XFreePixmap(disp, winwid->bg_pmap);
if (winwid->w == 0)
winwid->w = 1;
if (winwid->h == 0)
winwid->h = 1;
winwid->bg_pmap = XCreatePixmap(disp, winwid->win, winwid->w, winwid->h, depth);
winwid->had_resize = 0;
}
}
Birte Kristina Friesel
committed
return;
void winwidget_render_image(winwidget winwid, int resize, int force_alias)
int sx, sy, sw, sh, dx, dy, dw, dh;
int calc_w, calc_h;
int antialias = 0;
int need_center = winwid->had_resize;
if (!winwid->full_screen && resize) {
winwidget_resize(winwid, winwid->im_w, winwid->im_h);
winwidget_reset_image(winwid);
}
/* bounds checks for panning */
if (winwid->im_x > winwid->w)
winwid->im_x = winwid->w;
if (winwid->im_y > winwid->h)
winwid->im_y = winwid->h;
D(("winwidget_render_image resize %d force_alias %d im %dx%d\n",
resize, force_alias, winwid->im_w, winwid->im_h));
winwidget_setup_pixmaps(winwid);
if (!winwid->full_screen && opt.scale_down &&
(winwid->type != WIN_TYPE_THUMBNAIL) &&
(winwid->old_zoom == 1.0)) {
int max_w = winwid->w, max_h = winwid->h;
if (opt.geom_flags & WidthValue) {
max_w = opt.geom_w;
}
if (opt.geom_flags & HeightValue) {
max_h = opt.geom_h;
}
D(("max: %dx%d, size: %dx%d\n", max_w, max_h, winwid->im_w, winwid->im_h));
if (max_w < winwid->im_w || max_h < winwid->im_h) {
D(("scaling down image %dx%d\n", max_w, max_h));
feh_calc_needed_zoom(&(winwid->zoom), winwid->im_w, winwid->im_h,
max_w, max_h);
if (resize)
winwidget_resize(winwid, winwid->im_w * winwid->zoom, winwid->im_h * winwid->zoom);
D(("after scaling down image %dx%d\n", winwid->w, winwid->h));
}
}
if (!winwid->full_screen && ((gib_imlib_image_has_alpha(winwid->im))
|| (opt.geom_flags & (WidthValue | HeightValue))
|| (winwid->im_x || winwid->im_y) || (winwid->zoom != 1.0)
|| (winwid->w > winwid->im_w || winwid->h > winwid->im_h)
|| (winwid->has_rotated)))
feh_draw_checks(winwid);
if (!winwid->full_screen && opt.zoom_mode
&& (winwid->zoom == 1.0) && ! (opt.geom_flags & (WidthValue | HeightValue))
&& (winwid->w > winwid->im_w) && (winwid->h > winwid->im_h))
feh_calc_needed_zoom(&(winwid->zoom), winwid->im_w, winwid->im_h, winwid->w, winwid->h);
Birte Kristina Friesel
committed
if (resize && (winwid->full_screen
|| (!opt.scale_down && (opt.geom_flags & (WidthValue | HeightValue))))) {
int smaller; /* Is the image smaller than screen? */
int max_w = 0, max_h = 0;
if (winwid->full_screen) {
max_w = scr->width;
max_h = scr->height;
if (opt.xinerama && xinerama_screens) {
max_w = xinerama_screens[xinerama_screen].width;
max_h = xinerama_screens[xinerama_screen].height;
}
#endif /* HAVE_LIBXINERAMA */
} else {
if (opt.geom_flags & WidthValue) {
max_w = opt.geom_w;
}
if (opt.geom_flags & HeightValue) {
max_h = opt.geom_h;
}
}
D(("Calculating for fullscreen/fixed geom render\n"));
smaller = ((winwid->im_w < max_w)
&& (winwid->im_h < max_h));
if (!smaller || opt.zoom_mode) {
double ratio = 0.0;
/* Image is larger than the screen (so wants shrinking), or it's
smaller but wants expanding to fill it */
ratio = feh_calc_needed_zoom(&(winwid->zoom), winwid->im_w, winwid->im_h, max_w, max_h);
/* contributed by Jens Laas <jens.laas@data.slu.se>
* What it does:
* zooms images by a fixed amount but never larger than the screen.
*
* Why:
* This is nice if you got a collection of images where some
* are small and can stand a small zoom. Large images are unaffected.
*
* When does it work, and how?
* You have to be in fullscreen mode _and_ have auto-zoom turned on.
* "feh -FZ --zoom 130 imagefile" will do the trick.
* -zoom percent - the new switch.
* 100 = orignal size,
* 130 is 30% larger.
*/
if (opt.default_zoom) {
double old_zoom = winwid->zoom;
winwid->zoom = 0.01 * opt.default_zoom;
if (opt.default_zoom != 100) {
if ((winwid->im_h * winwid->zoom) > max_h)
winwid->zoom = old_zoom;
else if ((winwid->im_w * winwid->zoom) > max_w)
winwid->zoom = old_zoom;
}
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
winwid->im_x = ((int)
(max_w - (winwid->im_w * winwid->zoom))) >> 1;
winwid->im_y = ((int)
(max_h - (winwid->im_h * winwid->zoom))) >> 1;
} else {
if (ratio > 1.0) {
/* height is the factor */
winwid->im_x = 0;
winwid->im_y = ((int)
(max_h - (winwid->im_h * winwid->zoom))) >> 1;
} else {
/* width is the factor */
winwid->im_x = ((int)
(max_w - (winwid->im_w * winwid->zoom))) >> 1;
winwid->im_y = 0;
}
}
} else {
/* my modification to jens hack, allow --zoom without auto-zoom mode */
if (opt.default_zoom) {
winwid->zoom = 0.01 * opt.default_zoom;
} else {
winwid->zoom = 1.0;
}
/* Just center the image in the window */
winwid->im_x = (int) (max_w - (winwid->im_w * winwid->zoom)) >> 1;
winwid->im_y = (int) (max_h - (winwid->im_h * winwid->zoom)) >> 1;
}
}
else if (need_center && !winwid->full_screen && opt.scale_down
&& (winwid->type != WIN_TYPE_THUMBNAIL)) {
winwid->im_x = (int) (winwid->w - (winwid->im_w * winwid->zoom)) >> 1;
winwid->im_y = (int) (winwid->h - (winwid->im_h * winwid->zoom)) >> 1;
}
/* Now we ensure only to render the area we're looking at */
dx = winwid->im_x;
dy = winwid->im_y;
if (dx < 0)
dx = 0;
if (dy < 0)
dy = 0;
if (winwid->im_x < 0)
sx = 0 - lround(winwid->im_x / winwid->zoom);
else
sx = 0;
if (winwid->im_y < 0)
sy = 0 - lround(winwid->im_y / winwid->zoom);
else
sy = 0;
calc_w = lround(winwid->im_w * winwid->zoom);
calc_h = lround(winwid->im_h * winwid->zoom);
dw = (winwid->w - winwid->im_x);
dh = (winwid->h - winwid->im_y);
if (calc_w < dw)
dw = calc_w;
if (calc_h < dh)
dh = calc_h;
if (dw > winwid->w)
dw = winwid->w;
if (dh > winwid->h)
dh = winwid->h;
sw = lround(dw / winwid->zoom);
sh = lround(dh / winwid->zoom);
D(("sx: %d sy: %d sw: %d sh: %d dx: %d dy: %d dw: %d dh: %d zoom: %f\n",
sx, sy, sw, sh, dx, dy, dw, dh, winwid->zoom));
if ((winwid->zoom != 1.0) && !force_alias && !winwid->force_aliasing)
antialias = 1;
D(("winwidget_render(): winwid->im_angle = %f\n", winwid->im_angle));
if (winwid->has_rotated)
gib_imlib_render_image_part_on_drawable_at_size_with_rotation
(winwid->bg_pmap, winwid->im, sx, sy, sw, sh, dx, dy, dw, dh,
winwid->im_angle, 1, 1, antialias);
else
gib_imlib_render_image_part_on_drawable_at_size(winwid->bg_pmap,
winwid->im,
sx, sy, sw,
sh, dx, dy,
dw, dh, 1,
gib_imlib_image_has_alpha(winwid->im),
antialias);
if (opt.mode == MODE_NORMAL) {
if (opt.caption_path)
winwidget_update_caption(winwid);
if (opt.draw_filename)
feh_draw_filename(winwid);
#ifdef HAVE_LIBEXIF
if (opt.draw_exif)
feh_draw_exif(winwid);
#endif
if (opt.draw_actions)
feh_draw_actions(winwid);
if (opt.draw_info && opt.info_cmd)
feh_draw_info(winwid);
if (winwid->errstr)
feh_draw_errstr(winwid);
} else if ((opt.mode == MODE_ZOOM) && !antialias)
feh_draw_zoom(winwid);
XSetWindowBackgroundPixmap(disp, winwid->win, winwid->bg_pmap);
XClearWindow(disp, winwid->win);
Birte Kristina Friesel
committed
return;
void winwidget_render_image_cached(winwidget winwid)
{
static GC gc = None;
if (gc == None) {
gc = XCreateGC(disp, winwid->win, 0, NULL);
}
XCopyArea(disp, winwid->bg_pmap_cache, winwid->bg_pmap, gc, 0, 0, winwid->w, winwid->h, 0, 0);
if (opt.caption_path)
feh_draw_caption(winwid);
if (opt.draw_filename)
feh_draw_filename(winwid);
if (opt.draw_actions)
feh_draw_actions(winwid);
if (opt.draw_info && opt.info_cmd)
XSetWindowBackgroundPixmap(disp, winwid->win, winwid->bg_pmap);
XClearWindow(disp, winwid->win);
double feh_calc_needed_zoom(double *zoom, int orig_w, int orig_h, int dest_w, int dest_h)
double ratio = 0.0;
ratio = ((double) orig_w / orig_h) / ((double) dest_w / dest_h);
Birte Kristina Friesel
committed
if (opt.zoom_mode == ZOOM_MODE_FILL)
ratio = 1.0 / ratio;
if (ratio > 1.0)
*zoom = ((double) dest_w / orig_w);
else
*zoom = ((double) dest_h / orig_h);
Birte Kristina Friesel
committed
return(ratio);
Pixmap feh_create_checks(void)
static Pixmap checks_pmap = None;
Imlib_Image checks = NULL;
if (checks_pmap == None) {
checks = imlib_create_image(16, 16);
if (!checks)
eprintf("Unable to create a teeny weeny imlib image. I detect problems");
Birte Kristina Friesel
committed
if (opt.image_bg == IMAGE_BG_WHITE)
gib_imlib_image_fill_rectangle(checks, 0, 0, 16, 16, 255, 255, 255, 255);
Birte Kristina Friesel
committed
else if (opt.image_bg == IMAGE_BG_BLACK)
gib_imlib_image_fill_rectangle(checks, 0, 0, 16, 16, 0, 0, 0, 255);
else {
gib_imlib_image_fill_rectangle(checks, 0, 0, 16, 16, 144, 144, 144, 255);
gib_imlib_image_fill_rectangle(checks, 0, 0, 8, 8, 100, 100, 100, 255);
gib_imlib_image_fill_rectangle(checks, 8, 8, 8, 8, 100, 100, 100, 255);
}
checks_pmap = XCreatePixmap(disp, root, 16, 16, depth);
gib_imlib_render_image_on_drawable(checks_pmap, checks, 0, 0, 1, 0, 0);
gib_imlib_free_image_and_decache(checks);
}
Birte Kristina Friesel
committed
return(checks_pmap);
void winwidget_clear_background(winwidget w)
XSetWindowBackgroundPixmap(disp, w->win, feh_create_checks());
/* XClearWindow(disp, w->win); */
Birte Kristina Friesel
committed
return;
void feh_draw_checks(winwidget win)
static GC gc = None;
XGCValues gcval;
if (gc == None) {
gcval.tile = feh_create_checks();
gcval.fill_style = FillTiled;
gc = XCreateGC(disp, win->win, GCTile | GCFillStyle, &gcval);
}
XFillRectangle(disp, win->bg_pmap, gc, 0, 0, win->w, win->h);
Birte Kristina Friesel
committed
return;
void winwidget_destroy_xwin(winwidget winwid)
if (winwid->win) {
winwidget_unregister(winwid);
XDestroyWindow(disp, winwid->win);
}
if (winwid->bg_pmap) {
XFreePixmap(disp, winwid->bg_pmap);
winwid->bg_pmap = None;
}
Birte Kristina Friesel
committed
return;
void winwidget_destroy(winwidget winwid)
winwidget_destroy_xwin(winwid);
if (winwid->name)
free(winwid->name);
if (winwid->gc)
XFreeGC(disp, winwid->gc);
if (winwid->im)
gib_imlib_free_image_and_decache(winwid->im);
free(winwid);
Birte Kristina Friesel
committed
return;
void winwidget_destroy_all(void)
int i;
/* Have to DESCEND the list here, 'cos of the way _unregister works */
for (i = window_num - 1; i >= 0; i--)
winwidget_destroy(windows[i]);
Birte Kristina Friesel
committed
return;
void winwidget_rerender_all(int resize)
int i;
/* Have to DESCEND the list here, 'cos of the way _unregister works */
for (i = window_num - 1; i >= 0; i--)
winwidget_render_image(windows[i], resize, 0);
Birte Kristina Friesel
committed
return;
winwidget winwidget_get_first_window_of_type(unsigned int type)
int i;
for (i = 0; i < window_num; i++)
if (windows[i]->type == type)
Birte Kristina Friesel
committed
return(windows[i]);
return(NULL);
int winwidget_loadimage(winwidget winwid, feh_file * file)
Birte Kristina Friesel
committed
return(feh_load_image(&(winwid->im), file));
void winwidget_show(winwidget winwid)
XEvent ev;
/* feh_debug_print_winwid(winwid); */
if (!winwid->visible) {
XMapWindow(disp, winwid->win);
if (opt.full_screen)
XMoveWindow(disp, winwid->win, 0, 0);
/* wait for the window to map */
XMaskEvent(disp, StructureNotifyMask, &ev);
winwid->visible = 1;
}
Birte Kristina Friesel
committed
return;
void winwidget_move(winwidget winwid, int x, int y)
if (winwid && ((winwid->x != x) || (winwid->y != y))) {
winwid->x = x;
winwid->y = y;
winwid->x = (x > scr->width) ? scr->width : x;
winwid->y = (y > scr->height) ? scr->height : y;
XMoveWindow(disp, winwid->win, winwid->x, winwid->y);
XFlush(disp);
} else {
Birte Kristina Friesel
committed
return;
void winwidget_resize(winwidget winwid, int w, int h)
Birte Kristina Friesel
committed
XWindowAttributes attributes;
int tc_x, tc_y, px, py;
Birte Kristina Friesel
committed
int scr_width = scr->width;
int scr_height = scr->height;
/* discarded */
Window dw;
int di, i;
unsigned int du;
Birte Kristina Friesel
committed
XGetWindowAttributes(disp, winwid->win, &attributes);
Birte Kristina Friesel
committed
#ifdef HAVE_LIBXINERAMA
if (opt.xinerama && xinerama_screens) {
Birte Kristina Friesel
committed
xinerama_screen = 0;
XQueryPointer(disp, root, &dw, &dw, &px, &py, &di, &di, &du);
Birte Kristina Friesel
committed
for (i = 0; i < num_xinerama_screens; i++) {
if (XY_IN_RECT(px, py,
Birte Kristina Friesel
committed
xinerama_screens[i].x_org,
xinerama_screens[i].y_org,
xinerama_screens[i].width,
xinerama_screens[i].height)) {
Birte Kristina Friesel
committed
xinerama_screen = i;
break;
}
}
if (getenv("XINERAMA_SCREEN"))
xinerama_screen = atoi(getenv("XINERAMA_SCREEN"));
Birte Kristina Friesel
committed
scr_width = xinerama_screens[xinerama_screen].width;
scr_height = xinerama_screens[xinerama_screen].height;
}
#endif
Birte Kristina Friesel
committed
Birte Kristina Friesel
committed
D((" x %d y %d w %d h %d\n", attributes.x, attributes.y, winwid->w,
winwid->h));
if (!opt.scale_down && opt.geom_flags & (WidthValue | HeightValue)) {
winwid->had_resize = 1;
return;
}
if (winwid && ((winwid->w != w) || (winwid->h != h))) {
/* winwidget_clear_background(winwid); */
if (opt.screen_clip) {
winwid->w = (w > scr_width) ? scr_width : w;
winwid->h = (h > scr_height) ? scr_height : h;
XTranslateCoordinates(disp, winwid->win, attributes.root,
-attributes.border_width -
attributes.x,
-attributes.border_width - attributes.y, &tc_x, &tc_y, &dw);
winwid->x = tc_x;
winwid->y = tc_y;
XMoveResizeWindow(disp, winwid->win, tc_x, tc_y, winwid->w, winwid->h);
Birte Kristina Friesel
committed
} else
XResizeWindow(disp, winwid->win, winwid->w, winwid->h);
winwid->had_resize = 1;
XFlush(disp);
Birte Kristina Friesel
committed
D(("-> x %d y %d w %d h %d\n", winwid->x, winwid->y, winwid->w,
winwid->h));
} else {
}
Birte Kristina Friesel
committed
return;
void winwidget_hide(winwidget winwid)
XUnmapWindow(disp, winwid->win);
winwid->visible = 0;
Birte Kristina Friesel
committed
return;
static void winwidget_register(winwidget win)
window_num++;
if (windows)
windows = erealloc(windows, window_num * sizeof(winwidget));
else
windows = emalloc(window_num * sizeof(winwidget));
windows[window_num - 1] = win;
XSaveContext(disp, win->win, xid_context, (XPointer) win);
Birte Kristina Friesel
committed
return;
static void winwidget_unregister(winwidget win)
int i, j;
for (i = 0; i < window_num; i++) {
if (windows[i] == win) {
for (j = i; j < window_num - 1; j++)
windows[j] = windows[j + 1];
window_num--;
if (window_num > 0)
windows = erealloc(windows, window_num * sizeof(winwidget));
else {
free(windows);
windows = NULL;
}
}
}
XDeleteContext(disp, win->win, xid_context);
Birte Kristina Friesel
committed
return;
winwidget winwidget_get_from_window(Window win)
winwidget ret = NULL;
if (XFindContext(disp, win, xid_context, (XPointer *) & ret) != XCNOENT)
Birte Kristina Friesel
committed
return(ret);
return(NULL);
void winwidget_rename(winwidget winwid, char *newname)
/* newname == NULL -> update current title */
char *p_str;
if (newname == NULL)
newname = estrdup(winwid->name ? winwid->name : "");
if (winwid->name)
free(winwid->name);
winwid->name = emalloc(strlen(newname) + 10);
strcpy(winwid->name, newname);
if (strlen(winwid->name) > 9)
p_str = winwid->name + strlen(winwid->name) - 9;
else
p_str = winwid->name;
if (opt.paused && strcmp(p_str, " [Paused]") != 0)
strcat(winwid->name, " [Paused]");
else if (!opt.paused && strcmp(p_str, " [Paused]") == 0)
*p_str = '\0';
winwidget_update_title(winwid);
Birte Kristina Friesel
committed
return;
void winwidget_free_image(winwidget w)
if (w->im)
gib_imlib_free_image_and_decache(w->im);
w->im = NULL;
w->im_w = 0;
w->im_h = 0;
Birte Kristina Friesel
committed
return;
void feh_debug_print_winwid(winwidget w)
printf("winwid_debug:\n" "winwid = %p\n" "win = %ld\n" "w = %d\n"
"h = %d\n" "im_w = %d\n" "im_h = %d\n" "im_angle = %f\n"
"type = %d\n" "had_resize = %d\n" "im = %p\n" "GC = %p\n"
"pixmap = %ld\n" "name = %s\n" "file = %p\n" "mode = %d\n"
"im_x = %d\n" "im_y = %d\n" "zoom = %f\n" "old_zoom = %f\n"
"click_offset_x = %d\n" "click_offset_y = %d\n"
"has_rotated = %d\n", (void *)w, w->win, w->w, w->h, w->im_w,
w->im_h, w->im_angle, w->type, w->had_resize, w->im, (void *)w->gc,
w->bg_pmap, w->name, (void *)w->file, w->mode, w->im_x, w->im_y,
w->zoom, w->old_zoom, w->click_offset_x, w->click_offset_y,
w->has_rotated);
void winwidget_reset_image(winwidget winwid)
winwid->zoom = 1.0;
Birte Kristina Friesel
committed
winwid->old_zoom = 1.0;
winwid->im_x = 0;
winwid->im_y = 0;
winwid->im_angle = 0.0;
winwid->has_rotated = 0;
Birte Kristina Friesel
committed
return;
void winwidget_center_image(winwidget winwid)
{
int scr_width, scr_height;
scr_width = scr->width;
scr_height = scr->height;
#ifdef HAVE_LIBXINERAMA
if (opt.xinerama && xinerama_screens) {
scr_width = xinerama_screens[xinerama_screen].width;
scr_height = xinerama_screens[xinerama_screen].height;
}