nsxiv/options.h

58 lines
1.3 KiB
C
Raw Normal View History

/* sxiv: options.h
2012-02-15 19:16:24 +01:00
* Copyright (c) 2012 Bert Muennich <be.muennich at googlemail.com>
2011-01-17 16:43:03 +01:00
*
2011-09-03 23:11:45 +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-09-03 23:11:45 +02: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-09-03 23:11:45 +02:00
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2011-01-17 16:43:03 +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-09-10 18:41:20 +02:00
/* file list: */
2011-05-29 11:45:58 +02:00
char **filenames;
2011-09-11 21:01:24 +02:00
bool from_stdin;
bool recursive;
2011-05-25 09:23:23 +02:00
int filecnt;
int startnum;
2011-01-28 13:34:16 +01:00
2011-09-10 18:41:20 +02:00
/* image: */
2011-01-28 13:34:16 +01:00
scalemode_t scalemode;
float zoom;
2011-09-11 21:01:24 +02:00
bool aa;
2011-01-28 13:34:16 +01:00
2011-09-10 18:41:20 +02:00
/* window: */
2011-09-11 21:01:24 +02:00
bool fixed_win;
bool fullscreen;
2012-02-16 23:20:27 +01:00
bool hide_bar;
char *geometry;
2011-01-30 16:39:16 +01:00
2011-09-10 18:41:20 +02:00
/* misc flags: */
2011-09-11 21:01:24 +02:00
bool quiet;
bool thumb_mode;
bool clean_cache;
} options_t;
2011-01-17 16:43:03 +01:00
extern const options_t *options;
2011-01-17 16:43:03 +01:00
2011-10-12 18:38:29 +02:00
void print_usage(void);
void print_version(void);
2011-01-19 18:16:44 +01:00
void parse_options(int, char**);
#endif /* OPTIONS_H */