2011-01-19 14:07:45 +01:00
|
|
|
/* sxiv: options.h
|
2011-01-17 16:43:03 +01:00
|
|
|
* Copyright (c) 2011 Bert Muennich <muennich at informatik.hu-berlin.de>
|
|
|
|
*
|
2011-08-18 01:18:26 +02:00
|
|
|
* 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.
|
|
|
|
*
|
2011-01-17 16:43:03 +01:00
|
|
|
* 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.
|
2011-08-18 01:18:26 +02:00
|
|
|
*
|
2011-01-17 16:43:03 +01:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2011-08-18 01:18:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301, USA.
|
2011-01-17 16:43:03 +01:00
|
|
|
*/
|
|
|
|
|
2011-01-19 14:07:45 +01:00
|
|
|
#ifndef OPTIONS_H
|
|
|
|
#define OPTIONS_H
|
2011-01-17 16:43:03 +01:00
|
|
|
|
2011-01-28 13:34:16 +01:00
|
|
|
#include "image.h"
|
2011-07-22 14:49:06 +02:00
|
|
|
#include "types.h"
|
2011-01-28 13:34:16 +01:00
|
|
|
|
2011-03-01 14:23:09 +01:00
|
|
|
typedef struct {
|
2011-05-29 11:45:58 +02:00
|
|
|
char **filenames;
|
2011-02-14 17:51:04 +01:00
|
|
|
unsigned char from_stdin;
|
2011-05-25 09:23:23 +02:00
|
|
|
int filecnt;
|
|
|
|
int startnum;
|
2011-01-28 13:34:16 +01:00
|
|
|
|
|
|
|
scalemode_t scalemode;
|
|
|
|
float zoom;
|
|
|
|
unsigned char aa;
|
2011-02-16 16:47:12 +01:00
|
|
|
unsigned char thumbnails;
|
2011-01-28 13:34:16 +01:00
|
|
|
|
2011-02-01 16:40:37 +01:00
|
|
|
unsigned char fixed;
|
2011-01-28 13:34:16 +01:00
|
|
|
unsigned char fullscreen;
|
2011-01-30 22:00:58 +01:00
|
|
|
char *geometry;
|
2011-01-30 16:39:16 +01:00
|
|
|
|
2011-01-30 22:23:36 +01:00
|
|
|
unsigned char quiet;
|
2011-04-08 14:44:00 +02:00
|
|
|
unsigned char clean_cache;
|
2011-02-02 09:01:05 +01:00
|
|
|
unsigned char recursive;
|
2011-01-19 14:07:45 +01:00
|
|
|
} options_t;
|
2011-01-17 16:43:03 +01:00
|
|
|
|
2011-01-19 14:07:45 +01:00
|
|
|
extern const options_t *options;
|
2011-01-17 16:43:03 +01:00
|
|
|
|
2011-01-19 14:07:45 +01:00
|
|
|
void print_usage();
|
|
|
|
void print_version();
|
|
|
|
|
2011-01-19 18:16:44 +01:00
|
|
|
void parse_options(int, char**);
|
2011-01-19 14:07:45 +01:00
|
|
|
|
|
|
|
#endif /* OPTIONS_H */
|