Kludge to better position xfce4 notification popups (if you want to run those at...
[notion/jeffpc.git] / ioncore / conf.c
blob2714ed836266debe69ed1ddcd1b2f5322847f39d
1 /*
2 * ion/ioncore/conf.c
4 * Copyright (c) Tuomo Valkonen 1999-2009.
6 * See the included file LICENSE for details.
7 */
9 #include <stdlib.h>
10 #include <string.h>
12 #include <libtu/map.h>
13 #include <libtu/minmax.h>
14 #include <libtu/objp.h>
15 #include <libtu/map.h>
16 #include <libextl/readconfig.h>
18 #include "common.h"
19 #include "global.h"
20 #include "modules.h"
21 #include "rootwin.h"
22 #include "bindmaps.h"
23 #include "kbresize.h"
24 #include "reginfo.h"
25 #include "group-ws.h"
26 #include "llist.h"
29 StringIntMap frame_idxs[]={
30 {"last", LLIST_INDEX_LAST},
31 {"next", LLIST_INDEX_AFTER_CURRENT},
32 {"next-act", LLIST_INDEX_AFTER_CURRENT_ACT},
33 END_STRINGINTMAP
36 static bool get_winprop_fn_set=FALSE;
37 static ExtlFn get_winprop_fn;
39 static bool get_layout_fn_set=FALSE;
40 static ExtlFn get_layout_fn;
43 /*EXTL_DOC
44 * Set ioncore basic settings. The table \var{tab} may contain the
45 * following fields.
47 * \begin{tabularx}{\linewidth}{lX}
48 * \tabhead{Field & Description}
49 * \var{opaque_resize} & (boolean) Controls whether interactive move and
50 * resize operations simply draw a rubberband during
51 * the operation (false) or immediately affect the
52 * object in question at every step (true). \\
53 * \var{warp} & (boolean) Should focusing operations move the
54 * pointer to the object to be focused? \\
55 * \var{switchto} & (boolean) Should a managing \type{WMPlex} switch
56 * to a newly mapped client window? \\
57 * \var{screen_notify} & (boolean) Should notification tooltips be displayed
58 * for hidden workspaces with activity? \\
59 * \var{frame_default_index} & (string) Specifies where to add new regions
60 * on the mutually exclusive list of a frame. One of
61 * \codestr{last}, \codestr{next}, (for after current),
62 * or \codestr{next-act}
63 * (for after current and anything with activity right
64 * after it). \\
65 * \var{dblclick_delay} & (integer) Delay between clicks of a double click.\\
66 * \var{kbresize_delay} & (integer) Delay in milliseconds for ending keyboard
67 * resize mode after inactivity. \\
68 * \var{kbresize_t_max} & (integer) Controls keyboard resize acceleration.
69 * See description below for details. \\
70 * \var{kbresize_t_min} & (integer) See below. \\
71 * \var{kbresize_step} & (floating point) See below. \\
72 * \var{kbresize_maxacc} & (floating point) See below. \\
73 * \var{edge_resistance} & (integer) Resize edge resistance in pixels. \\
74 * \var{framed_transients} & (boolean) Put transients in nested frames. \\
75 * \var{float_placement_method} & (string) How to place floating frames.
76 * One of \codestr{udlr} (up-down, then left-right),
77 * \codestr{lrud} (left-right, then up-down), or
78 * \codestr{random}. \\
79 * \var{float_placement_padding} & (integer) Pixels between frames when
80 * \var{float_placement_method} is \codestr{udlr} or
81 * \codestr{lrud}. \\
82 * \var{mousefocus} & (string) Mouse focus mode:
83 * \codestr{disabled} or \codestr{sloppy}. \\
84 * \var{unsqueeze} & (boolean) Auto-unsqueeze transients/menus/queries/etc. \\
85 * \var{autoraise} & (boolean) Autoraise regions in groups on goto. \\
86 * \var{usertime_diff_current} & (integer) Controls switchto timeout. \\
87 * \var{usertime_diff_new} & (integer) Controls switchto timeout. \\
88 * \end{tabularx}
90 * When a keyboard resize function is called, and at most \var{kbresize_t_max}
91 * milliseconds has passed from a previous call, acceleration factor is reset
92 * to 1.0. Otherwise, if at least \var{kbresize_t_min} milliseconds have
93 * passed from the from previous acceleration update or reset the squere root
94 * of the acceleration factor is incremented by \var{kbresize_step}. The
95 * maximum acceleration factor (pixels/call modulo size hints) is given by
96 * \var{kbresize_maxacc}. The default values are (200, 50, 30, 100).
98 EXTL_EXPORT
99 void ioncore_set(ExtlTab tab)
101 int dd, rd;
102 char *wst, *tmp;
103 ExtlTab t;
104 ExtlFn fn;
106 extl_table_gets_b(tab, "opaque_resize", &(ioncore_g.opaque_resize));
107 extl_table_gets_b(tab, "warp", &(ioncore_g.warp_enabled));
108 extl_table_gets_b(tab, "switchto", &(ioncore_g.switchto_new));
109 extl_table_gets_b(tab, "screen_notify", &(ioncore_g.screen_notify));
110 extl_table_gets_b(tab, "framed_transients", &(ioncore_g.framed_transients));
111 extl_table_gets_b(tab, "unsqueeze", &(ioncore_g.unsqueeze_enabled));
112 extl_table_gets_b(tab, "autoraise", &(ioncore_g.autoraise));
114 if(extl_table_gets_s(tab, "frame_default_index", &tmp)){
115 ioncore_g.frame_default_index=stringintmap_value(frame_idxs,
116 tmp,
117 ioncore_g.frame_default_index);
118 free(tmp);
121 if(extl_table_gets_s(tab, "mousefocus", &tmp)){
122 if(strcmp(tmp, "disabled")==0)
123 ioncore_g.no_mousefocus=TRUE;
124 else if(strcmp(tmp, "sloppy")==0)
125 ioncore_g.no_mousefocus=FALSE;
126 free(tmp);
129 if(extl_table_gets_i(tab, "dblclick_delay", &dd))
130 ioncore_g.dblclick_delay=maxof(0, dd);
132 if(extl_table_gets_i(tab, "usertime_diff_current", &dd))
133 ioncore_g.usertime_diff_current=maxof(0, dd);
135 if(extl_table_gets_i(tab, "usertime_diff_new", &dd))
136 ioncore_g.usertime_diff_new=maxof(0, dd);
138 ioncore_set_moveres_accel(tab);
140 ioncore_groupws_set(tab);
142 /* Internal -- therefore undocumented above */
143 if(extl_table_gets_f(tab, "_get_winprop", &fn)){
144 if(get_winprop_fn_set)
145 extl_unref_fn(get_winprop_fn);
146 get_winprop_fn=fn;
147 get_winprop_fn_set=TRUE;
150 if(extl_table_gets_f(tab, "_get_layout", &fn)){
151 if(get_layout_fn_set)
152 extl_unref_fn(get_layout_fn);
153 get_layout_fn=fn;
154 get_layout_fn_set=TRUE;
160 /*EXTL_DOC
161 * Get ioncore basic settings. For details see \fnref{ioncore.set}.
163 EXTL_SAFE
164 EXTL_EXPORT
165 ExtlTab ioncore_get()
167 ExtlTab tab=extl_create_table();
169 extl_table_sets_b(tab, "opaque_resize", ioncore_g.opaque_resize);
170 extl_table_sets_b(tab, "warp", ioncore_g.warp_enabled);
171 extl_table_sets_b(tab, "switchto", ioncore_g.switchto_new);
172 extl_table_sets_i(tab, "dblclick_delay", ioncore_g.dblclick_delay);
173 extl_table_sets_b(tab, "screen_notify", ioncore_g.screen_notify);
174 extl_table_sets_b(tab, "framed_transients", ioncore_g.framed_transients);
175 extl_table_sets_b(tab, "unsqueeze", ioncore_g.unsqueeze_enabled);
176 extl_table_sets_b(tab, "autoraise", ioncore_g.autoraise);
179 extl_table_sets_s(tab, "frame_default_index",
180 stringintmap_key(frame_idxs,
181 ioncore_g.frame_default_index,
182 NULL));
184 extl_table_sets_s(tab, "mousefocus", (ioncore_g.no_mousefocus
185 ? "disabled"
186 : "sloppy"));
188 ioncore_get_moveres_accel(tab);
190 ioncore_groupws_get(tab);
192 return tab;
196 ExtlTab ioncore_get_winprop(WClientWin *cwin)
198 ExtlTab tab=extl_table_none();
200 if(get_winprop_fn_set){
201 extl_protect(NULL);
202 extl_call(get_winprop_fn, "o", "t", cwin, &tab);
203 extl_unprotect(NULL);
206 return tab;
210 ExtlTab ioncore_get_layout(const char *layout)
212 ExtlTab tab=extl_table_none();
214 if(get_layout_fn_set){
215 extl_protect(NULL);
216 extl_call(get_layout_fn, "s", "t", layout, &tab);
217 extl_unprotect(NULL);
220 return tab;
224 /*EXTL_DOC
225 * Get important directories (the fields \var{userdir},
226 * \var{sessiondir}, \var{searchpath} in the returned table).
228 EXTL_SAFE
229 EXTL_EXPORT
230 ExtlTab ioncore_get_paths(ExtlTab tab)
232 tab=extl_create_table();
233 extl_table_sets_s(tab, "userdir", extl_userdir());
234 extl_table_sets_s(tab, "sessiondir", extl_sessiondir());
235 extl_table_sets_s(tab, "searchpath", extl_searchpath());
236 return tab;
240 /*EXTL_DOC
241 * Set important directories (the fields \var{sessiondir}, \var{searchpath}
242 * of \var{tab}).
244 EXTL_EXPORT
245 bool ioncore_set_paths(ExtlTab tab)
247 char *s;
249 if(extl_table_gets_s(tab, "userdir", &s)){
250 warn(TR("User directory can not be set."));
251 free(s);
252 return FALSE;
255 if(extl_table_gets_s(tab, "sessiondir", &s)){
256 extl_set_sessiondir(s);
257 free(s);
258 return FALSE;
261 if(extl_table_gets_s(tab, "searchpath", &s)){
262 extl_set_searchpath(s);
263 free(s);
264 return FALSE;
267 return TRUE;
271 /* Exports these in ioncore. */
273 /*EXTL_DOC
274 * Lookup script \var{file}. If \var{try_in_dir} is set, it is tried
275 * before the standard search path.
277 EXTL_SAFE
278 EXTL_EXPORT_AS(ioncore, lookup_script)
279 char *extl_lookup_script(const char *file, const char *sp);
282 /*EXTL_DOC
283 * Get a file name to save (session) data in. The string \var{basename}
284 * should contain no path or extension components.
286 EXTL_SAFE
287 EXTL_EXPORT_AS(ioncore, get_savefile)
288 char *extl_get_savefile(const char *basename);
291 /*EXTL_DOC
292 * Write \var{tab} in file with basename \var{basename} in the
293 * session directory.
295 EXTL_SAFE
296 EXTL_EXPORT_AS(ioncore, write_savefile)
297 bool extl_write_savefile(const char *basename, ExtlTab tab);
300 /*EXTL_DOC
301 * Read a savefile.
303 EXTL_SAFE
304 EXTL_EXPORT_AS(ioncore, read_savefile)
305 ExtlTab extl_extl_read_savefile(const char *basename);
309 bool ioncore_read_main_config(const char *cfgfile)
311 bool ret;
312 int unset=0;
314 if(cfgfile==NULL)
315 cfgfile="cfg_notion";
317 ret=extl_read_config(cfgfile, ".", TRUE);
319 unset+=(ioncore_screen_bindmap->nbindings==0);
320 unset+=(ioncore_mplex_bindmap->nbindings==0);
321 unset+=(ioncore_frame_bindmap->nbindings==0);
323 if(unset>0){
324 warn(TR("Some bindmaps were empty, loading ioncore_efbb."));
325 extl_read_config("ioncore_efbb", NULL, TRUE);
328 return (ret && unset==0);