A Simple X Image Viewer
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

63 lines
1.4 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 "window.h"
  21. typedef enum movedir_e {
  22. MOVE_LEFT = 0,
  23. MOVE_RIGHT,
  24. MOVE_UP,
  25. MOVE_DOWN
  26. } movedir_t;
  27. typedef struct thumb_s {
  28. Pixmap pm;
  29. int x;
  30. int y;
  31. int w;
  32. int h;
  33. } thumb_t;
  34. typedef struct tns_s {
  35. thumb_t *thumbs;
  36. int cnt;
  37. int cols;
  38. int rows;
  39. int first;
  40. int sel;
  41. } tns_t;
  42. extern const int thumb_dim;
  43. void tns_init(tns_t*, int);
  44. void tns_free(tns_t*, win_t*);
  45. void tns_load(tns_t*, win_t*, const char*);
  46. void tns_render(tns_t*, win_t*);
  47. void tns_highlight(tns_t*, win_t*, int);
  48. void tns_move_selection(tns_t*, win_t*, movedir_t);
  49. int tns_translate(tns_t*, int, int);
  50. #endif /* THUMBS_H */