diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-04-05 20:27:03 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-04-05 20:27:03 +0000 |
| commit | cbbf90a718ecc6836ef7a77b9040aebb9da348b8 (patch) | |
| tree | a53bcdc993f850bc0500daaebd5b1bd0b7b50ee1 /openbox/engine.h | |
| parent | 88f8ebada97c4c82252badeb57b7e71a2940600b (diff) | |
change how rc parsing will work. a=b will be parsed in any [section] and given to a separate parsing callback. no more general config infrastructure needed/
Diffstat (limited to 'openbox/engine.h')
| -rw-r--r-- | openbox/engine.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/openbox/engine.h b/openbox/engine.h index 0ab578ce..76bb1495 100644 --- a/openbox/engine.h +++ b/openbox/engine.h @@ -3,7 +3,23 @@ #include "../engines/engineinterface.h" +/* The engine to load */ +extern char *engine_name; +/* The theme to load */ +extern char *engine_theme; +/* The titlebar layout */ +extern char *engine_layout; +/* The titlebar font */ +extern char *engine_font; +/* The titlebar font's shadow */ +extern gboolean engine_shadow; +/* The titlebar font's shadow offset */ +extern int engine_shadow_offset; +/* The titlebar font's shadow transparency */ +extern int engine_shadow_tint; + void engine_startup(); +void engine_load(); void engine_shutdown(); EngineFrameNew *engine_frame_new; |
