A Simple X Image Viewer
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

68 lignes
1.5 KiB

  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
  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 THUMBS_H
  19. #define THUMBS_H
  20. #include <Imlib2.h>
  21. #include "window.h"
  22. typedef enum {
  23. TNS_LEFT = 0,
  24. TNS_RIGHT,
  25. TNS_UP,
  26. TNS_DOWN
  27. } tnsdir_t;
  28. typedef struct {
  29. Imlib_Image *im;
  30. int x;
  31. int y;
  32. int w;
  33. int h;
  34. } thumb_t;
  35. typedef struct {
  36. thumb_t *thumbs;
  37. int cap;
  38. int cnt;
  39. int x;
  40. int y;
  41. int cols;
  42. int rows;
  43. int first;
  44. int sel;
  45. unsigned char dirty;
  46. } tns_t;
  47. void tns_init(tns_t*, int);
  48. void tns_free(tns_t*, win_t*);
  49. void tns_load(tns_t*, win_t*, int, const char*);
  50. void tns_render(tns_t*, win_t*);
  51. void tns_highlight(tns_t*, win_t*, int, Bool);
  52. int tns_move_selection(tns_t*, win_t*, tnsdir_t);
  53. int tns_scroll(tns_t*, tnsdir_t);
  54. int tns_translate(tns_t*, int, int);
  55. #endif /* THUMBS_H */