A Simple X Image Viewer
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

options.h 1.3 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* sxiv: options.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 OPTIONS_H
  19. #define OPTIONS_H
  20. #include "image.h"
  21. typedef struct options_s {
  22. const char **filenames;
  23. int filecnt;
  24. unsigned char from_stdin;
  25. scalemode_t scalemode;
  26. float zoom;
  27. unsigned char aa;
  28. unsigned char thumbnails;
  29. unsigned char fixed;
  30. unsigned char fullscreen;
  31. char *geometry;
  32. unsigned char quiet;
  33. unsigned char recursive;
  34. } options_t;
  35. extern const options_t *options;
  36. void print_usage();
  37. void print_version();
  38. void parse_options(int, char**);
  39. #endif /* OPTIONS_H */