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.
 
 
 
 
 
 

87 lines
1.6 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. DEGREE_0 = 0,
  37. DEGREE_90 = 1,
  38. DEGREE_180 = 2,
  39. DEGREE_270 = 3
  40. } degree_t;
  41. typedef enum {
  42. FLIP_NONE = 0,
  43. FLIP_HORIZONTAL = 1,
  44. FLIP_VERTICAL = 2
  45. } flipdir_t;
  46. typedef enum {
  47. SCALE_DOWN,
  48. SCALE_FIT,
  49. SCALE_WIDTH,
  50. SCALE_HEIGHT,
  51. SCALE_ZOOM
  52. } scalemode_t;
  53. typedef enum {
  54. CURSOR_ARROW,
  55. CURSOR_NONE,
  56. CURSOR_HAND,
  57. CURSOR_WATCH
  58. } cursor_t;
  59. typedef struct {
  60. const char *name; /* as given by user */
  61. const char *path; /* always absolute */
  62. const char *base;
  63. bool loaded;
  64. bool marked;
  65. } fileinfo_t;
  66. /* timeouts in milliseconds: */
  67. enum {
  68. TO_REDRAW_RESIZE = 75,
  69. TO_REDRAW_THUMBS = 200,
  70. TO_CURSOR_HIDE = 1200
  71. };
  72. typedef void (*timeout_f)(void);
  73. #endif /* TYPES_H */