X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fconfig.h;h=e959a2dc6f6f4787dc190b2ca02970bb9ba3ca1f;hb=206b96202c6cae83a1867e3266edafa5a10e327f;hp=ea1885cc9c1dd0dd56502c3f3bf4921e9fb61721;hpb=470ee00012ccb05db9e0255a38376bffa25dd9b2;p=i3%2Fi3 diff --git a/include/config.h b/include/config.h index ea1885cc..e959a2dc 100644 --- a/include/config.h +++ b/include/config.h @@ -2,7 +2,7 @@ * vim:ts=4:sw=4:expandtab * * i3 - an improved dynamic tiling window manager - * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE) + * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE) * * include/config.h: Contains all structs/variables for the configurable * part of i3 as well as functions handling the configuration file (calling @@ -54,6 +54,7 @@ struct Colortriple { uint32_t border; uint32_t background; uint32_t text; + uint32_t indicator; }; /** @@ -149,6 +150,12 @@ struct Config { * buttons to do things with floating windows (move, resize) */ uint32_t floating_modifier; + /** Maximum and minimum dimensions of a floating window */ + int32_t floating_maximum_width; + int32_t floating_maximum_height; + int32_t floating_minimum_width; + int32_t floating_minimum_height; + /* Color codes are stored here */ struct config_client { uint32_t background; @@ -198,6 +205,18 @@ struct Barconfig { /** Bar display mode (hide unless modifier is pressed or show in dock mode) */ enum { M_DOCK = 0, M_HIDE = 1 } mode; + /** Bar modifier (to show bar when in hide mode). */ + enum { + M_NONE = 0, + M_CONTROL = 1, + M_SHIFT = 2, + M_MOD1 = 3, + M_MOD2 = 4, + M_MOD3 = 5, + M_MOD4 = 6, + M_MOD5 = 7 + } modifier; + /** Bar position (bottom by default). */ enum { P_BOTTOM = 0, P_TOP = 1 } position; @@ -225,17 +244,21 @@ struct Barconfig { char *background; char *statusline; - char *focused_workspace_text; + char *focused_workspace_border; char *focused_workspace_bg; + char *focused_workspace_text; - char *active_workspace_text; + char *active_workspace_border; char *active_workspace_bg; + char *active_workspace_text; - char *inactive_workspace_text; + char *inactive_workspace_border; char *inactive_workspace_bg; + char *inactive_workspace_text; - char *urgent_workspace_text; + char *urgent_workspace_border; char *urgent_workspace_bg; + char *urgent_workspace_text; } colors; TAILQ_ENTRY(Barconfig) configs; @@ -254,7 +277,7 @@ void load_configuration(xcb_connection_t *conn, const char *override_configfile, * Translates keysymbols to keycodes for all bindings which use keysyms. * */ -void translate_keysyms(); +void translate_keysyms(void); /** * Ungrabs all keys, to be called before re-grabbing the keys because of a