A Simple X Image Viewer
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

48 рядки
1.2 KiB

  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. scalemode_t scalemode;
  25. float zoom;
  26. unsigned char aa;
  27. unsigned char fixed;
  28. unsigned char fullscreen;
  29. char *geometry;
  30. unsigned char quiet;
  31. unsigned char recursive;
  32. } options_t;
  33. extern const options_t *options;
  34. void print_usage();
  35. void print_version();
  36. void parse_options(int, char**);
  37. #endif /* OPTIONS_H */