A Simple X Image Viewer
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 14 gadiem
pirms 14 gadiem
pirms 14 gadiem
pirms 14 gadiem
pirms 14 gadiem
pirms 14 gadiem
pirms 14 gadiem
pirms 14 gadiem
pirms 14 gadiem
pirms 14 gadiem
pirms 14 gadiem
pirms 14 gadiem
pirms 14 gadiem
pirms 13 gadiem
pirms 14 gadiem
pirms 14 gadiem
pirms 14 gadiem
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. int img_load(img_t*, const char*);
  48. void img_close(img_t*, int);
  49. void img_render(img_t*, win_t*);
  50. int img_fit_win(img_t*, win_t*);
  51. int img_center(img_t*, win_t*);
  52. int img_zoom(img_t*, win_t*, float);
  53. int img_zoom_in(img_t*, win_t*);
  54. int img_zoom_out(img_t*, win_t*);
  55. int img_move(img_t*, win_t*, int, int);
  56. int img_pan(img_t*, win_t*, pandir_t, int);
  57. int img_pan_edge(img_t*, win_t*, pandir_t);
  58. void img_rotate_left(img_t*, win_t*);
  59. void img_rotate_right(img_t*, win_t*);
  60. void img_toggle_antialias(img_t*);
  61. #endif /* IMAGE_H */