xzgv  0.9.1
About: A picture viewer for X, with a thumbnail-based file selector (uses GTK+ and Imlib).
  Fossies Dox: xzgv-0.9.1.tar.gz  ("inofficial" and yet experimental doxygen-generated source code documentation)  

 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
rcfile.h
Go to the documentation of this file.
1 /* xzgv - picture viewer for X, with file selector.
2  * Copyright (C) 1999-2003 Russell Marks. See main.c for license details.
3  *
4  * rcfile.h - protos for rcfile.c and config vars.
5  */
6 
7 #define XZGV_VER "0.9.1"
8 
9 /* geometry bitmask for mainwin_flags */
10 #define GEOM_BITS_X_SET 1
11 #define GEOM_BITS_Y_SET 2
12 #define GEOM_BITS_W_SET 4
13 #define GEOM_BITS_H_SET 8
14 
16  {
18  };
19 
20 extern enum sorttypes filesel_sorttype;
21 
22 extern int mainwin_x,mainwin_y;
23 extern int mainwin_w,mainwin_h;
24 extern int mainwin_flags;
25 extern int default_sel_width;
26 
27 /* config vars */
28 extern int zoom;
29 extern int zoom_reduce_only;
30 extern int interp;
31 extern int have_statusbar;
32 extern int tn_msgs;
33 extern int thin_rows;
34 extern int auto_hide;
35 extern int revert;
36 extern int revert_orient;
37 extern int fullscreen;
38 extern int show_tagged;
39 extern int fast_recursive_update;
40 extern int hicol_dither;
41 extern int skip_parent;
42 extern int click_nextpic;
43 extern int mouse_scale_x;
44 extern double picgamma;
45 extern int image_bigness_threshold;
46 extern int delete_single_prompt;
47 extern int careful_jpeg;
48 extern int sort_timestamp_type;
49 extern int use_exif_orient;
50 
51 extern void get_config(void);
52 extern int parse_options(int argc,char *argv[]);