2013-02-08 20:52:41 +00:00
|
|
|
/* Copyright 2011 Bert Muennich
|
2011-01-17 15:43:03 +00:00
|
|
|
*
|
2013-02-08 20:52:41 +00:00
|
|
|
* This file is part of sxiv.
|
2011-08-18 00:18:26 +01:00
|
|
|
*
|
2013-02-08 20:52:41 +00:00
|
|
|
* sxiv 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.
|
2011-08-18 00:18:26 +01:00
|
|
|
*
|
2013-02-08 20:52:41 +00:00
|
|
|
* sxiv 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 sxiv. If not, see <http://www.gnu.org/licenses/>.
|
2011-01-17 15:43:03 +00:00
|
|
|
*/
|
|
|
|
|
2011-01-19 13:07:45 +00:00
|
|
|
#ifndef OPTIONS_H
|
|
|
|
#define OPTIONS_H
|
2011-01-17 15:43:03 +00:00
|
|
|
|
2011-07-22 13:49:06 +01:00
|
|
|
#include "types.h"
|
2012-12-27 15:34:51 +00:00
|
|
|
#include "image.h"
|
2011-01-28 12:34:16 +00:00
|
|
|
|
2011-03-01 13:23:09 +00:00
|
|
|
typedef struct {
|
2011-09-10 17:41:20 +01:00
|
|
|
/* file list: */
|
2011-05-29 10:45:58 +01:00
|
|
|
char **filenames;
|
2011-09-11 20:01:24 +01:00
|
|
|
bool from_stdin;
|
2013-03-19 20:11:29 +00:00
|
|
|
bool to_stdout;
|
2011-09-11 20:01:24 +01:00
|
|
|
bool recursive;
|
2011-05-25 08:23:23 +01:00
|
|
|
int filecnt;
|
|
|
|
int startnum;
|
2011-01-28 12:34:16 +00:00
|
|
|
|
2011-09-10 17:41:20 +01:00
|
|
|
/* image: */
|
2011-01-28 12:34:16 +00:00
|
|
|
scalemode_t scalemode;
|
|
|
|
float zoom;
|
2014-07-25 21:52:31 +01:00
|
|
|
bool animate;
|
2013-11-13 19:54:09 +00:00
|
|
|
int gamma;
|
2014-01-04 17:38:40 +00:00
|
|
|
int slideshow;
|
2011-01-28 12:34:16 +00:00
|
|
|
|
2011-09-10 17:41:20 +01:00
|
|
|
/* window: */
|
2011-09-11 20:01:24 +01:00
|
|
|
bool fullscreen;
|
2012-02-16 22:20:27 +00:00
|
|
|
bool hide_bar;
|
2011-01-30 21:00:58 +00:00
|
|
|
char *geometry;
|
2012-10-28 23:53:50 +00:00
|
|
|
char *res_name;
|
2011-01-30 15:39:16 +00:00
|
|
|
|
2011-09-10 17:41:20 +01:00
|
|
|
/* misc flags: */
|
2011-09-11 20:01:24 +01:00
|
|
|
bool quiet;
|
|
|
|
bool thumb_mode;
|
|
|
|
bool clean_cache;
|
2011-01-19 13:07:45 +00:00
|
|
|
} options_t;
|
2011-01-17 15:43:03 +00:00
|
|
|
|
2011-01-19 13:07:45 +00:00
|
|
|
extern const options_t *options;
|
2011-01-17 15:43:03 +00:00
|
|
|
|
2011-10-12 17:38:29 +01:00
|
|
|
void print_usage(void);
|
|
|
|
void print_version(void);
|
2011-01-19 13:07:45 +00:00
|
|
|
|
2011-01-19 17:16:44 +00:00
|
|
|
void parse_options(int, char**);
|
2011-01-19 13:07:45 +00:00
|
|
|
|
|
|
|
#endif /* OPTIONS_H */
|