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

13 роки тому
13 роки тому
13 роки тому
13 роки тому
14 роки тому
14 роки тому
14 роки тому
14 роки тому
14 роки тому
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* sxiv: thumbs.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 it
  5. * under the terms of the GNU General Public License as published by the
  6. * Free Software Foundation; either version 2 of the License, or (at your
  7. * option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along
  15. * with this program; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  17. */
  18. #ifndef THUMBS_H
  19. #define THUMBS_H
  20. #include <X11/Xlib.h>
  21. #include <Imlib2.h>
  22. #include "types.h"
  23. #include "window.h"
  24. typedef struct {
  25. Imlib_Image *im;
  26. const fileinfo_t *file;
  27. int x;
  28. int y;
  29. int w;
  30. int h;
  31. } thumb_t;
  32. typedef struct {
  33. thumb_t *thumbs;
  34. int cap;
  35. int cnt;
  36. int x;
  37. int y;
  38. int cols;
  39. int rows;
  40. int first;
  41. int sel;
  42. unsigned char alpha;
  43. unsigned char dirty;
  44. } tns_t;
  45. void tns_clean_cache(tns_t*);
  46. void tns_init(tns_t*, int);
  47. void tns_free(tns_t*);
  48. int tns_load(tns_t*, int, const fileinfo_t*, Bool, Bool);
  49. void tns_render(tns_t*, win_t*);
  50. void tns_highlight(tns_t*, win_t*, int, Bool);
  51. int tns_move_selection(tns_t*, win_t*, direction_t);
  52. int tns_scroll(tns_t*, direction_t);
  53. int tns_translate(tns_t*, int, int);
  54. #endif /* THUMBS_H */