"Fossies" - the Fresh Open Source Software Archive 
Member "xzgv-0.9.2/src/rcfile.h" (3 Sep 2017, 1308 Bytes) of package /linux/misc/old/xzgv-0.9.2.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "rcfile.h" see the
Fossies "Dox" file reference documentation.
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.2"
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
15 enum sorttypes
16 {
17 sort_name,sort_ext,sort_size,sort_time
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 zoom_panorama;
31 extern int zoom_panorama_sb;
32 extern int interp;
33 extern int have_statusbar;
34 extern int tn_msgs;
35 extern int thin_rows;
36 extern int auto_hide;
37 extern int revert;
38 extern int revert_orient;
39 extern int fullscreen;
40 extern int show_tagged;
41 extern int fast_recursive_update;
42 extern int hicol_dither;
43 extern int skip_parent;
44 extern int click_nextpic;
45 extern int mouse_scale_x;
46 extern int image_bigness_threshold;
47 extern int delete_single_prompt;
48 extern int careful_jpeg;
49 extern int sort_timestamp_type;
50 extern int use_exif_orient;
51 extern int show_images_only;
52
53 extern void get_config(void);
54 extern int parse_options(int argc,char *argv[]);