A Simple X Image Viewer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

78 lines
1.5 KiB

  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 TYPES_H
  19. #define TYPES_H
  20. #include <stdbool.h>
  21. typedef enum {
  22. BO_BIG_ENDIAN,
  23. BO_LITTLE_ENDIAN
  24. } byteorder_t;
  25. typedef enum {
  26. MODE_IMAGE,
  27. MODE_THUMB
  28. } appmode_t;
  29. typedef enum {
  30. DIR_LEFT,
  31. DIR_RIGHT,
  32. DIR_UP,
  33. DIR_DOWN
  34. } direction_t;
  35. typedef enum {
  36. FLIP_HORIZONTAL,
  37. FLIP_VERTICAL
  38. } flipdir_t;
  39. typedef enum {
  40. SCALE_DOWN,
  41. SCALE_FIT,
  42. SCALE_WIDTH,
  43. SCALE_HEIGHT,
  44. SCALE_ZOOM
  45. } scalemode_t;
  46. typedef enum {
  47. CURSOR_ARROW,
  48. CURSOR_NONE,
  49. CURSOR_HAND,
  50. CURSOR_WATCH
  51. } cursor_t;
  52. typedef struct {
  53. const char *name; /* as given by user */
  54. const char *path; /* always absolute */
  55. const char *base;
  56. bool loaded;
  57. } fileinfo_t;
  58. /* timeouts in milliseconds: */
  59. enum {
  60. TO_REDRAW_RESIZE = 75,
  61. TO_REDRAW_THUMBS = 200,
  62. TO_CURSOR_HIDE = 1200
  63. };
  64. typedef void (*timeout_f)(void);
  65. #endif /* TYPES_H */