A Simple X Image Viewer
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

13 роки тому
13 роки тому
13 роки тому
13 роки тому
13 роки тому
13 роки тому
13 роки тому
13 роки тому
13 роки тому
13 роки тому
13 роки тому
13 роки тому
13 роки тому
13 роки тому
12 роки тому
13 роки тому
13 роки тому
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* Copyright 2011 Bert Muennich
  2. *
  3. * This file is part of sxiv.
  4. *
  5. * sxiv is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published
  7. * by the Free Software Foundation; either version 2 of the License,
  8. * or (at your option) any later version.
  9. *
  10. * sxiv is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with sxiv. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef IMAGE_H
  19. #define IMAGE_H
  20. #include <Imlib2.h>
  21. #include "types.h"
  22. #include "window.h"
  23. typedef struct {
  24. Imlib_Image *im;
  25. unsigned int delay;
  26. } img_frame_t;
  27. typedef struct {
  28. img_frame_t *frames;
  29. int cap;
  30. int cnt;
  31. int sel;
  32. bool animate;
  33. } multi_img_t;
  34. typedef struct {
  35. Imlib_Image *im;
  36. int w;
  37. int h;
  38. win_t *win;
  39. float x;
  40. float y;
  41. scalemode_t scalemode;
  42. float zoom;
  43. bool re;
  44. bool checkpan;
  45. bool dirty;
  46. bool aa;
  47. bool alpha;
  48. multi_img_t multi;
  49. } img_t;
  50. void img_init(img_t*, win_t*);
  51. bool img_load(img_t*, const fileinfo_t*);
  52. void img_close(img_t*, bool);
  53. void img_render(img_t*);
  54. bool img_fit_win(img_t*, scalemode_t);
  55. bool img_center(img_t*);
  56. bool img_zoom(img_t*, float);
  57. bool img_zoom_in(img_t*);
  58. bool img_zoom_out(img_t*);
  59. bool img_move(img_t*, float, float);
  60. bool img_pan(img_t*, direction_t, int);
  61. bool img_pan_edge(img_t*, direction_t);
  62. void img_rotate(img_t*, int);
  63. void img_rotate_left(img_t*);
  64. void img_rotate_right(img_t*);
  65. void img_flip(img_t*, flipdir_t);
  66. void img_toggle_antialias(img_t*);
  67. bool img_frame_navigate(img_t*, int);
  68. bool img_frame_animate(img_t*, bool);
  69. #endif /* IMAGE_H */