Skip to content
imlib.c 36.4 KiB
Newer Older
/* imlib.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"

#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <jpeglib.h>

#include "transupp.h"

Display *disp = NULL;
Visual *vis = NULL;
Screen *scr = NULL;
Colormap cm;
int depth;
Atom wmDeleteWindow;
XContext xid_context = 0;
Window root = 0;

/* Xinerama support */
#ifdef HAVE_LIBXINERAMA
XineramaScreenInfo *xinerama_screens = NULL;
int xinerama_screen;
int num_xinerama_screens;
#endif /* HAVE_LIBXINERAMA */

#ifdef HAVE_LIBXINERAMA
void
init_xinerama(void)
{
  if (opt.xinerama && XineramaIsActive(disp)) {
    int major, minor;
    xinerama_screen = 0;
    XineramaQueryVersion(disp, &major, &minor);
    xinerama_screens = XineramaQueryScreens(disp, &num_xinerama_screens);
  }
}
#endif /* HAVE_LIBXINERAMA */

void
init_imlib_fonts(void)
{
   D_ENTER(4);

   /* Set up the font stuff */
   imlib_add_path_to_font_path(".");
   imlib_add_path_to_font_path(PREFIX "/share/feh/fonts");
   imlib_add_path_to_font_path("./ttfonts");

   D_RETURN_(4);
}

82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 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 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 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 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
void
init_x_and_imlib(void)
{
   D_ENTER(4);

   disp = XOpenDisplay(NULL);
   if (!disp)
      eprintf("Can't open X display. It *is* running, yeah?");
   vis = DefaultVisual(disp, DefaultScreen(disp));
   depth = DefaultDepth(disp, DefaultScreen(disp));
   cm = DefaultColormap(disp, DefaultScreen(disp));
   root = RootWindow(disp, DefaultScreen(disp));
   scr = ScreenOfDisplay(disp, DefaultScreen(disp));
   xid_context = XUniqueContext();

#ifdef HAVE_LIBXINERAMA
   init_xinerama();
#endif /* HAVE_LIBXINERAMA */

   imlib_context_set_display(disp);
   imlib_context_set_visual(vis);
   imlib_context_set_colormap(cm);
   imlib_context_set_color_modifier(NULL);
   imlib_context_set_progress_function(NULL);
   imlib_context_set_operation(IMLIB_OP_COPY);
   wmDeleteWindow = XInternAtom(disp, "WM_DELETE_WINDOW", False);

   /* Initialise random numbers */
   srand(getpid() * time(NULL) % ((unsigned int) -1));

   D_RETURN_(4);
}

int
feh_load_image_char(Imlib_Image * im, char *filename)
{
   feh_file *file;
   int i;

   D_ENTER(4);
   file = feh_file_new(filename);
   i = feh_load_image(im, file);
   feh_file_free(file);
   D_RETURN(4, i);
}

int
feh_load_image(Imlib_Image * im, feh_file * file)
{
   Imlib_Load_Error err;

   D_ENTER(4);
   D(3, ("filename is %s, image is %p\n", file->filename, im));

   if (!file || !file->filename)
      D_RETURN(4, 0);

   /* Handle URLs */
   if ((!strncmp(file->filename, "http://", 7)) ||
       (!strncmp(file->filename, "https://", 8)) ||
       (!strncmp(file->filename, "ftp://", 6)))
   {
      char *tmpname = NULL;
      char *tempcpy;

      tmpname = feh_http_load_image(file->filename);
      if (tmpname == NULL)
         D_RETURN(4, 0);
      *im = imlib_load_image_with_error_return(tmpname, &err);
      if (im)
      {
         /* load the info now, in case it's needed after we delete the
            temporary image file */
         tempcpy = file->filename;
         file->filename = tmpname;
         feh_file_info_load(file, *im);
         file->filename = tempcpy;
      }
      if ((opt.slideshow) && (opt.reload == 0))
      {
         /* Http, no reload, slideshow. Let's keep this image on hand... */
         free(file->filename);
         file->filename = estrdup(tmpname);
      }
      else
      {
         /* Don't cache the image if we're doing reload + http (webcams etc) */
         if (!opt.keep_http)
            unlink(tmpname);
      }
      if (!opt.keep_http)
         add_file_to_rm_filelist(tmpname);
      free(tmpname);
   }
   else
   {
      *im = imlib_load_image_with_error_return(file->filename, &err);
   }

   if ((err) || (!im))
   {
      if (opt.verbose && !opt.quiet)
      {
         fprintf(stdout, "\n");
         reset_output = 1;
      }
      /* Check error code */
      switch (err)
      {
        case IMLIB_LOAD_ERROR_FILE_DOES_NOT_EXIST:
           if (!opt.quiet)
              weprintf("%s - File does not exist", file->filename);
           break;
        case IMLIB_LOAD_ERROR_FILE_IS_DIRECTORY:
           if (!opt.quiet)
              weprintf("%s - Directory specified for image filename",
                       file->filename);
           break;
        case IMLIB_LOAD_ERROR_PERMISSION_DENIED_TO_READ:
           if (!opt.quiet)
              weprintf("%s - No read access to directory", file->filename);
           break;
        case IMLIB_LOAD_ERROR_UNKNOWN:
        case IMLIB_LOAD_ERROR_NO_LOADER_FOR_FILE_FORMAT:
           if (!opt.quiet)
              weprintf("%s - No Imlib2 loader for that file format",
                       file->filename);
           break;
        case IMLIB_LOAD_ERROR_PATH_TOO_LONG:
           if (!opt.quiet)
              weprintf("%s - Path specified is too long", file->filename);
           break;
        case IMLIB_LOAD_ERROR_PATH_COMPONENT_NON_EXISTANT:
           if (!opt.quiet)
              weprintf("%s - Path component does not exist", file->filename);
           break;
        case IMLIB_LOAD_ERROR_PATH_COMPONENT_NOT_DIRECTORY:
           if (!opt.quiet)
              weprintf("%s - Path component is not a directory",
                       file->filename);
           break;
        case IMLIB_LOAD_ERROR_PATH_POINTS_OUTSIDE_ADDRESS_SPACE:
           if (!opt.quiet)
              weprintf("%s - Path points outside address space",
                       file->filename);
           break;
        case IMLIB_LOAD_ERROR_TOO_MANY_SYMBOLIC_LINKS:
           if (!opt.quiet)
              weprintf("%s - Too many levels of symbolic links",
                       file->filename);
           break;
        case IMLIB_LOAD_ERROR_OUT_OF_MEMORY:
           if (!opt.quiet)
              weprintf("While loading %s - Out of memory", file->filename);
           break;
        case IMLIB_LOAD_ERROR_OUT_OF_FILE_DESCRIPTORS:
           eprintf("While loading %s - Out of file descriptors",
                   file->filename);
           break;
        case IMLIB_LOAD_ERROR_PERMISSION_DENIED_TO_WRITE:
           if (!opt.quiet)
              weprintf("%s - Cannot write to directory", file->filename);
           break;
        case IMLIB_LOAD_ERROR_OUT_OF_DISK_SPACE:
           if (!opt.quiet)
              weprintf("%s - Cannot write - out of disk space",
                       file->filename);
           break;
        default:
           if (!opt.quiet)
              weprintf
                 ("While loading %s - Unknown error (%d). Attempting to continue",
                  file->filename, err);
           break;
      }
      D(3, ("Load *failed*\n"));
      D_RETURN(4, 0);
   }

   D(3, ("Loaded ok\n"));
   D_RETURN(4, 1);
}

char *
feh_http_load_image(char *url)
{
   char *tmpname;
   char *tmpname_timestamper = NULL;
   char *basename;
   char *newurl = NULL;
   char randnum[20];
   int rnum;
   char *path = NULL;

   D_ENTER(4);

   if (opt.keep_http)
   {
      if (opt.output_dir)
         path = opt.output_dir;
      else
         path = "";
   }
   else
      path = "/tmp/";

   basename = strrchr(url, '/') + 1;
   tmpname = feh_unique_filename(path, basename);

   if (opt.wget_timestamp)
   {
      char cppid[10];
      pid_t ppid;

      ppid = getpid();
      snprintf(cppid, sizeof(cppid), "%06ld", (long)ppid);
      tmpname_timestamper =
         estrjoin("", "/tmp/feh_", cppid, "_", basename, NULL);
      newurl = estrdup(url);
   }
   else
   {
      rnum = rand();
      snprintf(randnum, sizeof(randnum), "%d", rnum);
      newurl = estrjoin("?", url, randnum, NULL);
   }
   D(3, ("newurl: %s\n", newurl));

   if (opt.builtin_http)
   {
      /* state for HTTP header parser */
#define SAW_NONE    1
#define SAW_ONE_CM  2
#define SAW_ONE_CJ  3
#define SAW_TWO_CM  4
#define IN_BODY     5

#define OUR_BUF_SIZE 1024
#define EOL "\015\012"

      int sockno = 0;
      int size;
      int body = SAW_NONE;
      struct sockaddr_in addr;
      struct hostent *hptr;
      char *hostname;
      char *get_string;
      char *host_string;
      char *query_string;
      char *get_url;
      static char buf[OUR_BUF_SIZE];
      char ua_string[] = "User-Agent: feh image viewer";
      char accept_string[] = "Accept: image/*";
      FILE *fp;

      D(4, ("using builtin http collection\n"));
      fp = fopen(tmpname, "w");
      if (!fp)
      {
         weprintf("couldn't write to file %s:", tmpname);
         free(tmpname);
         D_RETURN(4, NULL);
      }

      hostname = feh_strip_hostname(newurl);
      if (!hostname)
      {
         weprintf("couldn't work out hostname from %s:", newurl);
         free(tmpname);
         free(newurl);
         D_RETURN(4, NULL);
      }

      D(4, ("trying hostname %s\n", hostname));

      if (!(hptr = feh_gethostbyname(hostname)))
      {
         weprintf("error resolving host %s:", hostname);
         free(hostname);
         free(tmpname);
         free(newurl);
         D_RETURN(4, NULL);
      }

      /* Copy the address of the host to socket description. */
      memcpy(&addr.sin_addr, hptr->h_addr, hptr->h_length);

      /* Set port and protocol */
      addr.sin_family = AF_INET;
      addr.sin_port = htons(80);

      if ((sockno = socket(PF_INET, SOCK_STREAM, 0)) == -1)
      {
         weprintf("error opening socket:");
         free(tmpname);
         free(hostname);
         free(newurl);
         D_RETURN(4, NULL);
      }
      if (connect(sockno, (struct sockaddr *) &addr, sizeof(addr)) == -1)
      {
         weprintf("error connecting socket:");
         free(tmpname);
         free(hostname);
         free(newurl);
         D_RETURN(4, NULL);
      }

      get_url = strchr(newurl, '/') + 2;
      get_url = strchr(get_url, '/');

      get_string = estrjoin(" ", "GET", get_url, "HTTP/1.0", NULL);
      host_string = estrjoin(" ", "Host:", hostname, NULL);
      query_string =
         estrjoin(EOL, get_string, host_string, accept_string, ua_string, "",
                  "", NULL);
      /* At this point query_string looks something like
         **
         **    GET /dir/foo.jpg?123456 HTTP/1.0^M^J
         **    Host: www.example.com^M^J
         **    Accept: image/ *^M^J
         **    User-Agent: feh image viewer^M^J
         **    ^M^J
         **
         ** Host: is required by HTTP/1.1 and very important for some sites,
         ** even with HTTP/1.0
         **
         ** -- BEG
       */
      if ((send(sockno, query_string, strlen(query_string), 0)) == -1)
      {
         free(get_string);
         free(host_string);
         free(query_string);
         free(tmpname);
         free(hostname);
         free(newurl);
         weprintf("error sending over socket:");
         D_RETURN(4, NULL);
      }
      free(get_string);
      free(host_string);
      free(query_string);
      free(hostname);
      free(newurl);

      while ((size = read(sockno, &buf, OUR_BUF_SIZE)))
      {
         if (body == IN_BODY)
         {
            fwrite(buf, 1, size, fp);
         }
         else
         {
            int i;

            for (i = 0; i < size; i++)
            {
               /* We are looking for ^M^J^M^J, but will accept
                  ** ^J^J from broken servers. Stray ^Ms will be
                  ** ignored.
                  **
                  ** TODO:
                  ** Checking the headers for a
                  **    Content-Type: image/ *
                  ** header would help detect problems with results.
                  ** Maybe look at the response code too? But there is
                  ** no fundamental reason why a 4xx or 5xx response
                  ** could not return an image, it is just the 3xx
                  ** series we need to worry about.
                  **
                  ** Also, grabbing the size from the Content-Length
                  ** header and killing the connection after that
                  ** many bytes where read would speed up closing the
                  ** socket.
                  ** -- BEG
                */

               switch (body)
               {

                 case IN_BODY:
                    fwrite(buf + i, 1, size - i, fp);
                    i = size;
                    break;

                 case SAW_ONE_CM:
                    if (buf[i] == '\012')
                    {
                       body = SAW_ONE_CJ;
                    }
                    else
                    {
                       body = SAW_NONE;
                    }
                    break;

                 case SAW_ONE_CJ:
                    if (buf[i] == '\015')
                    {
                       body = SAW_TWO_CM;
                    }
                    else
                    {
                       if (buf[i] == '\012')
                       {
                          body = IN_BODY;
                       }
                       else
                       {
                          body = SAW_NONE;
                       }
                    }
                    break;

                 case SAW_TWO_CM:
                    if (buf[i] == '\012')
                    {
                       body = IN_BODY;
                    }
                    else
                    {
                       body = SAW_NONE;
                    }
                    break;

                 case SAW_NONE:
                    if (buf[i] == '\015')
                    {
                       body = SAW_ONE_CM;
                    }
                    else
                    {
                       if (buf[i] == '\012')
                       {
                          body = SAW_ONE_CJ;
                       }
                    }
                    break;

               }                            /* switch */
            }                               /* for i */
         }
      }                                     /* while read */
      close(sockno);
      fclose(fp);
   }
   else
   {
      int pid;
      int status;

      if ((pid = fork()) < 0)
      {
         weprintf("open url: fork failed:");
         free(tmpname);
         free(newurl);
         D_RETURN(4, NULL);
      }
      else if (pid == 0)
      {
         char *quiet = NULL;

         if (!opt.verbose)
            quiet = estrdup("-q");

         if (opt.wget_timestamp)
         {
            execlp("wget", "wget", "-N", "-O", tmpname_timestamper, newurl,
                   quiet, (char*) NULL);
         }
         else
         {
            execlp("wget", "wget", "--cache=off", "-O", tmpname, newurl,
               quiet, NULL);
         }
         eprintf("url: exec failed: wget:");
      }
      else
      {
         waitpid(pid, &status, 0);

         if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
         {
            weprintf("url: wget failed to load URL %s\n", url);
            free(newurl);
            D_RETURN(4, NULL);
         }
         if (opt.wget_timestamp)
         {
            char cmd[2048];

            snprintf(cmd, sizeof(cmd), "/bin/cp %s %s", tmpname_timestamper,
                     tmpname);
            system(cmd);
         }
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
      }
   }

   D_RETURN(4, tmpname);
}

struct hostent *
feh_gethostbyname(const char *name)
{
   struct hostent *hp;
   unsigned long addr;

   D_ENTER(3);
   addr = (unsigned long) inet_addr(name);
   if ((int) addr != -1)
      hp = gethostbyaddr((char *) &addr, sizeof(addr), AF_INET);
   else
      hp = gethostbyname(name);
   D_RETURN(3, hp);
}

char *
feh_strip_hostname(char *url)
{
   char *ret;
   char *start;
   char *finish;
   int len;

   D_ENTER(3);

   start = strchr(url, '/');
   if (!start)
      D_RETURN(3, NULL);

   start += 2;

   finish = strchr(start, '/');
   if (!finish)
      D_RETURN(3, NULL);

   len = finish - start;

   ret = emalloc(len + 1);
   strncpy(ret, start, len);
   ret[len] = '\0';
   D_RETURN(3, ret);
}

void
feh_draw_zoom(winwidget w)
{
   static Imlib_Font fn = NULL;
   int tw = 0, th = 0;
   Imlib_Image im = NULL;
   char buf[100];
   static DATA8 atab[256];

   D_ENTER(4);

   if (!w->im)
      D_RETURN_(4);

   if (!fn) {
      fn = gib_imlib_load_font(DEFAULT_FONT);
      memset(atab, 0, sizeof(atab));
   }

   if (!fn)
   {
      weprintf("Couldn't load font for zoom printing");
      D_RETURN_(4);
   }

   snprintf(buf, sizeof(buf), "%.0f%%, %dx%d", w->zoom * 100,
            (int) (w->im_w * w->zoom), (int) (w->im_h * w->zoom));

   /* Work out how high the font is */
   gib_imlib_get_text_size(fn, buf, NULL, &tw, &th, IMLIB_TEXT_TO_RIGHT);

   tw += 3;
   th += 3;
   im = imlib_create_image(tw, th);
   if (!im)
      eprintf("Couldn't create image. Out of memory?");

   gib_imlib_image_set_has_alpha(im, 1);
   gib_imlib_apply_color_modifier_to_rectangle(im, 0, 0, tw, th,
                                               NULL, NULL, NULL, atab);
   gib_imlib_image_fill_rectangle(im, 0, 0, tw, th, 0, 0, 0, 0);

   gib_imlib_text_draw(im, fn, NULL, 2, 2, buf, IMLIB_TEXT_TO_RIGHT,
                       0, 0, 0, 255);
   gib_imlib_text_draw(im, fn, NULL, 1, 1, buf, IMLIB_TEXT_TO_RIGHT,
                       255, 255, 255, 255);
   gib_imlib_render_image_on_drawable(w->bg_pmap, im, 0, w->h - th, 1, 1, 0);
   gib_imlib_free_image_and_decache(im);
   D_RETURN_(4);
}

void
feh_draw_filename(winwidget w)
{
   static Imlib_Font fn = NULL;
   int tw = 0, th = 0;
   Imlib_Image im = NULL;
   static DATA8 atab[256];
   char *s = NULL;
   int len = 0;

   D_ENTER(4);

   if ((!w->file) || (!FEH_FILE(w->file->data))
       || (!FEH_FILE(w->file->data)->filename))
      D_RETURN_(4);

   if (!fn)
   {
      memset(atab, 0, sizeof(atab));
      if (w->full_screen)
         fn = gib_imlib_load_font(DEFAULT_FONT_BIG);
      else
         fn = gib_imlib_load_font(DEFAULT_FONT);
   }

   if (!fn)
   {
      weprintf("Couldn't load font for filename printing");
      D_RETURN_(4);
   }

   /* Work out how high the font is */
   gib_imlib_get_text_size(fn, FEH_FILE(w->file->data)->filename, NULL, &tw, &th,
                           IMLIB_TEXT_TO_RIGHT);

   /* tw is no longer correct, if the filename is shorter than
    * the string "%d of %d" used below in fullscreen mode */
   tw += 3;
   th += 3;
   im = imlib_create_image(tw, 2*th);
   if (!im)
      eprintf("Couldn't create image. Out of memory?");

   gib_imlib_image_set_has_alpha(im, 1);
   gib_imlib_apply_color_modifier_to_rectangle(im, 0, 0, tw, 2*th,
                                               NULL, NULL, NULL, atab);
   gib_imlib_image_fill_rectangle(im, 0, 0, tw, 2*th, 0, 0, 0, 0);

   gib_imlib_text_draw(im, fn, NULL, 2, 2, FEH_FILE(w->file->data)->filename,
                       IMLIB_TEXT_TO_RIGHT, 0, 0, 0, 255);
   gib_imlib_text_draw(im, fn, NULL, 1, 1, FEH_FILE(w->file->data)->filename,
                       IMLIB_TEXT_TO_RIGHT, 255, 255, 255, 255);
   /* Print the position in the filelist, if we are in fullscreen and the
    * list has more than one element */
   if (w->full_screen && (gib_list_length(filelist)-1))
   {
      /* sic! */
      len = snprintf(NULL, 0, "%d of %d", gib_list_length(filelist), gib_list_length(filelist))+1;
      s = emalloc(len);
      snprintf(s, len, "%d of %d",
               gib_list_num(filelist, current_file) + 1,
               gib_list_length(filelist));
      /* This should somehow be right-aligned */
      gib_imlib_text_draw(im, fn, NULL, 2, th+1, s, IMLIB_TEXT_TO_RIGHT, 0, 0, 0, 255);
      gib_imlib_text_draw(im, fn, NULL, 1, th, s, IMLIB_TEXT_TO_RIGHT, 255, 255, 255, 255);
      free(s);
   }

   gib_imlib_render_image_on_drawable(w->bg_pmap, im, 0, 0, 1, 1, 0);

   gib_imlib_free_image_and_decache(im);
   D_RETURN_(4);
}

char *build_caption_filename(feh_file *file) {
  char *caption_filename;
  char *s, *dir;
  s = strrchr(file->filename, '/');
  if (s) {
    dir = estrdup(file->filename);
    s = strrchr(dir, '/');
    *s = '\0';
  } else {
    dir = estrdup(".");
  }
  caption_filename = estrjoin("",
                              dir,
                              "/",
                              opt.caption_path,
                              "/",
                              file->name,
                              ".txt",
                              NULL);
  free(dir);
  return caption_filename;
}

void
feh_draw_caption(winwidget w)
{
   static Imlib_Font fn = NULL;
   int tw = 0, th = 0, ww, hh;
   int x, y;
   Imlib_Image im = NULL;
   static DATA8 atab[256];
   char *p;
   gib_list *lines, *l;
   static gib_style *caption_style = NULL;
   feh_file *file;

   D_ENTER(4);

   if (!w->file) {
     D_RETURN_(4);
   }
   file = FEH_FILE(w->file->data);
   if (!file->filename) {
     D_RETURN_(4);
   }

   if (!file->caption) {
      char *caption_filename;
      caption_filename = build_caption_filename(file);
      /* read caption from file */
      file->caption = ereadfile(caption_filename);
      free(caption_filename);
   }

   if (file->caption == NULL) {
     /* caption file is not there, we want to cache that, otherwise we'll stat
      * the damn file every time we render the image. Reloading an image will
      * always cause the caption to be reread though so we're safe to do so.
      * (Before this bit was added, when zooming a captionless image with
      * captions enabled, the captions file would be stat()d like 30 times a
      * second) - don't forget this function is called from
      * winwidget_render_image().
      */
     file->caption = estrdup("");
     D_RETURN_(4);
   }

   if (file->caption == '\0') {
     D_RETURN_(4);
   }

   if (!caption_style) {
     caption_style = gib_style_new("caption");
     caption_style->bits = gib_list_add_front(caption_style->bits,
                                            gib_style_bit_new(0,0,0,0,0,0));
     caption_style->bits = gib_list_add_front(caption_style->bits, 
                                            gib_style_bit_new(1,1,0,0,0,255));
   }

   if (!fn)
   {
      memset(atab, 0, sizeof(atab));
      if (w->full_screen)
         fn = gib_imlib_load_font(DEFAULT_FONT_BIG);
      else
         fn = gib_imlib_load_font(DEFAULT_FONT);
   }

   if (!fn)
   {
      weprintf("Couldn't load font for caption printing");
      D_RETURN_(4);
   }

   lines = feh_wrap_string(file->caption, w->w, w->h, fn, NULL);
   if (!lines)
     D_RETURN_(4);

   /* Work out how high/wide the caption is */
   l = lines;
   while (l) {
     p = (char *) l->data;
     gib_imlib_get_text_size(fn, p, caption_style, &ww, &hh, IMLIB_TEXT_TO_RIGHT);
     if (ww > tw)
       tw = ww;
     th += hh;
     if (l->next)
       th += 1; /* line spacing */
     l = l->next;
   }
   
   /* we don't want the caption overlay larger than our window */
   if (th > w->h)
     th = w->h;
   if (tw > w->w)
     tw = w->w;

   im = imlib_create_image(tw, th);
   if (!im)
      eprintf("Couldn't create image. Out of memory?");

   gib_imlib_image_set_has_alpha(im, 1);
   gib_imlib_apply_color_modifier_to_rectangle(im, 0, 0, tw, th,
                                               NULL, NULL, NULL, atab);
   gib_imlib_image_fill_rectangle(im, 0, 0, tw, th, 0, 0, 0, 0);
   
   l = lines;
   x = 0;
   y = 0;
   while (l) {
     p = (char *) l->data;
     gib_imlib_get_text_size(fn, p, caption_style, &ww, &hh, IMLIB_TEXT_TO_RIGHT);
     x = (tw - ww) / 2;
     if (w->caption_entry) {
     gib_imlib_text_draw(im, fn, caption_style, x, y, p, IMLIB_TEXT_TO_RIGHT,
                         255, 255, 0, 255);
     } else {
     gib_imlib_text_draw(im, fn, caption_style, x, y, p, IMLIB_TEXT_TO_RIGHT,
                         255, 255, 255, 255);
     }
                
     y += hh + 1; /* line spacing */
     l = l->next;
   }
   
   gib_imlib_render_image_on_drawable(w->bg_pmap, im, (w->w - tw) / 2, w->h - th, 1, 1, 0);
   gib_imlib_free_image_and_decache(im);
   gib_list_free_and_data(lines);
   D_RETURN_(4);
}


unsigned char reset_output = 0;

void
feh_display_status(char stat)
{
   static int i = 0;
   static int init_len = 0;
   int j = 0;

   D_ENTER(5);

   D(5, ("filelist %p, filelist->next %p\n", filelist, filelist->next));

   if (!init_len)
      init_len = gib_list_length(filelist);

   if (i)
   {
      if (reset_output)
      {
         /* There's just been an error message. Unfortunate ;) */
         for (j = 0; j < (((i % 50) + ((i % 50) / 10)) + 7); j++)
            fprintf(stdout, " ");
      }

      if (!(i % 50))
      {
         int len;
         char buf[50];

         len = gib_list_length(filelist);
         snprintf(buf, sizeof(buf), " %5d/%d (%d)\n[%3d%%] ", i, init_len,
                  len, ((int) ((float) i / init_len * 100)));
         fprintf(stdout, buf);
      }
      else if ((!(i % 10)) && (!reset_output))
         fprintf(stdout, " ");

      reset_output = 0;
   }
   else
      fprintf(stdout, "[  0%%] ");

   fprintf(stdout, "%c", stat);
   fflush(stdout);
   i++;
   D_RETURN_(5);
}

void feh_edit_inplace_orient(winwidget w, int orientation) {
  int ret;
  Imlib_Image old;
  D_ENTER(4);
  if(!w->file
    || !w->file->data 
    || !FEH_FILE(w->file->data)->filename)
    D_RETURN_(4);

  if (!strcmp(gib_imlib_image_format(w->im), "jpeg")) {
    feh_edit_inplace_lossless_rotate(w, orientation);
    feh_reload_image(w, 1, 1);
    D_RETURN_(4);
  }

  ret = feh_load_image(&old, FEH_FILE(w->file->data));
  if(ret) {
    gib_imlib_image_orientate(old, orientation);
    gib_imlib_save_image(old, FEH_FILE(w->file->data)->filename);
    gib_imlib_free_image(old);
    feh_reload_image(w, 1, 1);
  } else {
    weprintf("failed to load image from disk to edit it in place\n");
  }
  
  D_RETURN_(4);
}


/* TODO max_height is ignored... Could use a function which generates a
 * transparent text overlay image, with wrapping and all. Would be useful */
gib_list *
feh_wrap_string(char *text, int wrap_width, int max_height, Imlib_Font fn, gib_style * style)
{
   gib_list *ll, *lines = NULL, *list = NULL, *words;
   gib_list *l = NULL;
   char delim[2] = { '\n', '\0' };
   int w, line_width;
   int tw, th;
   char *p, *pp;
   char *line = NULL;
   char *temp;
   int space_width = 0, m_width = 0, t_width = 0, new_width = 0;

   lines = gib_string_split(text, delim);