A Simple X Image Viewer
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

52 líneas
1.3 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 struct thumb_s {
  22. Pixmap pm;
  23. int x;
  24. int y;
  25. int w;
  26. int h;
  27. } thumb_t;
  28. typedef struct tns_s {
  29. thumb_t *thumbs;
  30. int cnt;
  31. int cols;
  32. int rows;
  33. int first;
  34. int sel;
  35. } tns_t;
  36. extern const int thumb_dim;
  37. void tns_init(tns_t*, int);
  38. void tns_free(tns_t*, win_t*);
  39. void tns_load(tns_t*, win_t*, const char*);
  40. void tns_render(tns_t*, win_t*);
  41. void tns_highlight(tns_t*, win_t*, int);
  42. #endif /* THUMBS_H */