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.
 
 
 
 
 
 

76 line
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 "window.h"
  21. typedef enum scalemode_e {
  22. SCALE_DOWN = 0,
  23. SCALE_FIT,
  24. SCALE_ZOOM
  25. } scalemode_t;
  26. typedef enum pandir_e {
  27. PAN_LEFT = 0,
  28. PAN_RIGHT,
  29. PAN_UP,
  30. PAN_DOWN
  31. } pandir_t;
  32. typedef struct img_s {
  33. float zoom;
  34. scalemode_t scalemode;
  35. unsigned char valid;
  36. unsigned char re;
  37. unsigned char checkpan;
  38. unsigned char aa;
  39. int x;
  40. int y;
  41. int w;
  42. int h;
  43. } img_t;
  44. void img_init(img_t*, win_t*);
  45. void img_free(img_t*);
  46. int img_check(const char*);
  47. int img_load(img_t*, const char*);
  48. void img_render(img_t*, win_t*);
  49. int img_fit_win(img_t*, win_t*);
  50. int img_center(img_t*, win_t*);
  51. int img_zoom(img_t*, float);
  52. int img_zoom_in(img_t*);
  53. int img_zoom_out(img_t*);
  54. int img_move(img_t*, win_t*, int, int);
  55. int img_pan(img_t*, win_t*, pandir_t);
  56. void img_rotate_left(img_t*, win_t*);
  57. void img_rotate_right(img_t*, win_t*);
  58. void img_toggle_antialias(img_t*);
  59. #endif /* IMAGE_H */