1 #ifndef PREFS_H
2 #define PREFS_H
3 
4 extern struct prefs_struct {
5   int fastquit;
6   int sizeborder;
7   int forcemove;
8   int borderwidth;
9   int autoraise;
10   int opaquemove;
11   int opaqueresize;
12   int customiconsonly;
13   int shortlabelicons;
14   char *icondir, *module_path, *defaulticon;
15   int focus, manage_all, screenmenu;
16   int titlebarclock;			/* display titlebar clock? */
17   char *titleclockformat;		/* format to use for the clock */
18   int titleclockinterval;		/* how often do we update the clock?*/
19   struct _Style *firststyle, *laststyle;
20 } prefs;
21 
22 #define FM_MANUAL 0
23 #define FM_ALWAYS 1
24 #define FM_AUTO 2
25 
26 #define FOC_FOLLOWMOUSE 0
27 #define FOC_CLICKTOTYPE 1
28 #define FOC_SLOPPY 2
29 
30 #endif
31