A Simple X Image Viewer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

81 lines
1.7 KiB

  1. /* sxiv: image.h
  2. * Copyright (c) 2011 Bert Muennich <muennich at informatik.hu-berlin.de>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. */
  18. #ifndef IMAGE_H
  19. #define IMAGE_H
  20. #include <Imlib2.h>
  21. #include "window.h"
  22. typedef enum {
  23. SCALE_DOWN = 0,
  24. SCALE_FIT,
  25. SCALE_ZOOM
  26. } scalemode_t;
  27. typedef enum {
  28. PAN_LEFT = 0,
  29. PAN_RIGHT,
  30. PAN_UP,
  31. PAN_DOWN
  32. } pandir_t;
  33. typedef struct {
  34. Imlib_Image *im;
  35. float zoom;
  36. scalemode_t scalemode;
  37. unsigned char re;
  38. unsigned char checkpan;
  39. unsigned char aa;
  40. unsigned char alpha;
  41. int x;
  42. int y;
  43. int w;
  44. int h;
  45. } img_t;
  46. void img_init(img_t*, win_t*);
  47. void img_free(img_t*);
  48. int img_check(const char*);
  49. int img_load(img_t*, const char*);
  50. void img_close(img_t*, int);
  51. void img_render(img_t*, win_t*);
  52. int img_fit_win(img_t*, win_t*);
  53. int img_center(img_t*, win_t*);
  54. int img_zoom(img_t*, float);
  55. int img_zoom_in(img_t*);
  56. int img_zoom_out(img_t*);
  57. int img_move(img_t*, win_t*, int, int);
  58. int img_pan(img_t*, win_t*, pandir_t);
  59. void img_rotate_left(img_t*, win_t*);
  60. void img_rotate_right(img_t*, win_t*);
  61. void img_toggle_antialias(img_t*);
  62. #endif /* IMAGE_H */