nsxiv/options.h

52 lines
1.3 KiB
C
Raw Normal View History

/* sxiv: options.h
2011-01-17 15:43:03 +00:00
* Copyright (c) 2011 Bert Muennich <muennich at informatik.hu-berlin.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef OPTIONS_H
#define OPTIONS_H
2011-01-17 15:43:03 +00:00
2011-01-28 12:34:16 +00:00
#include "image.h"
2011-03-01 13:23:09 +00:00
typedef struct {
2011-05-29 10:45:58 +01:00
char **filenames;
2011-02-14 16:51:04 +00:00
unsigned char from_stdin;
2011-05-25 08:23:23 +01:00
int filecnt;
int startnum;
2011-01-28 12:34:16 +00:00
scalemode_t scalemode;
float zoom;
unsigned char aa;
2011-02-16 15:47:12 +00:00
unsigned char thumbnails;
2011-01-28 12:34:16 +00:00
2011-02-01 15:40:37 +00:00
unsigned char fixed;
2011-01-28 12:34:16 +00:00
unsigned char fullscreen;
char *geometry;
2011-01-30 15:39:16 +00:00
unsigned char quiet;
2011-04-08 13:44:00 +01:00
unsigned char clean_cache;
2011-02-02 08:01:05 +00:00
unsigned char recursive;
} options_t;
2011-01-17 15:43:03 +00:00
extern const options_t *options;
2011-01-17 15:43:03 +00:00
void print_usage();
void print_version();
2011-01-19 17:16:44 +00:00
void parse_options(int, char**);
#endif /* OPTIONS_H */