awesome/config.h

338 lines
7.3 KiB
C
Raw Normal View History

2007-12-10 13:43:28 +01:00
/*
2007-09-12 14:29:51 +02:00
* config.h - configuration management header
*
2008-01-02 16:59:43 +01:00
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
2007-09-12 14:29:51 +02:00
*/
2007-09-05 20:15:00 +02:00
#ifndef AWESOME_CONFIG_H
#define AWESOME_CONFIG_H
2007-09-05 20:15:00 +02:00
2007-10-15 12:40:45 +02:00
#include <regex.h>
2007-12-27 17:12:49 +01:00
#include "draw.h"
#include "layout.h"
2008-01-12 17:01:21 +01:00
#include "util.h"
#include "list.h"
2007-09-05 20:15:00 +02:00
/** Bar possible position */
2008-01-04 19:12:07 +01:00
typedef enum
{
Top,
Bottom,
Left,
Right,
Off
} Position;
2007-09-05 20:15:00 +02:00
typedef enum
{
Float,
Tile,
Auto,
} RuleFloat;
2007-12-23 15:16:10 +01:00
/** Common colors */
2007-09-05 20:15:00 +02:00
enum
2007-12-23 15:16:10 +01:00
{ ColBorder, ColFG, ColBG, ColLast };
2007-09-05 20:15:00 +02:00
enum
{ CurNormal, CurResize, CurMove, CurLast }; /* cursor */
2007-09-12 18:16:20 +02:00
2007-11-12 19:25:10 +01:00
typedef struct Rule Rule;
struct Rule
2007-09-05 20:15:00 +02:00
{
char *icon;
char *xprop;
2007-11-12 18:21:03 +01:00
int screen;
RuleFloat isfloating;
Bool not_master;
2008-01-02 12:44:18 +01:00
regex_t *prop_r;
regex_t *tags_r;
regex_t *xpropval_r;
2007-11-12 19:25:10 +01:00
Rule *next;
};
2007-09-05 20:15:00 +02:00
2008-01-12 20:45:12 +01:00
DO_SLIST(Rule, rule, p_delete);
typedef struct AwesomeConf AwesomeConf;
2007-09-05 20:15:00 +02:00
typedef struct Key Key;
struct Key
2007-09-05 20:15:00 +02:00
{
unsigned long mod;
KeySym keysym;
Uicb *func;
char *arg;
Key *next;
};
2007-09-05 20:15:00 +02:00
2008-01-12 20:53:19 +01:00
DO_SLIST(Key, key, p_delete);
typedef struct Button Button;
struct Button
{
unsigned long mod;
unsigned int button;
Uicb *func;
char *arg;
Button *next;
};
2008-01-12 20:56:41 +01:00
DO_SLIST(Button, button, p_delete);
2007-12-30 21:00:34 +01:00
/** Widget */
typedef struct Widget Widget;
2007-12-30 21:00:34 +01:00
typedef struct Statusbar Statusbar;
struct Widget
{
/** Widget name */
char *name;
/** Draw function */
int (*draw)(Widget *, DrawCtx *, int, int);
/** Update function */
void (*tell)(Widget *, char *);
/** ButtonPressedEvent handler */
void (*button_press)(Widget *, XButtonPressedEvent *);
/** Statusbar */
Statusbar *statusbar;
/** Alignement */
2008-01-04 19:17:20 +01:00
Alignment alignment;
2007-12-30 21:00:34 +01:00
/** Misc private data */
void *data;
/** True if user supplied coords */
Bool user_supplied_x;
Bool user_supplied_y;
2008-01-04 21:46:25 +01:00
/** Area */
Area area;
2007-12-30 21:00:34 +01:00
/** Buttons bindings */
Button *buttons;
/** Font */
XftFont *font;
2008-01-07 18:12:38 +01:00
/** Cache */
struct
{
Bool needs_update;
int flags;
} cache;
2007-12-30 21:00:34 +01:00
/** Next widget */
Widget *next;
};
2008-01-12 21:35:44 +01:00
DO_SLIST(Widget, widget, p_delete);
2007-12-30 21:00:34 +01:00
/** Status bar */
struct Statusbar
{
2007-12-30 21:00:34 +01:00
/** Statusbar name */
char *name;
/** Bar width */
int width;
/** Bar height */
int height;
/** Layout txt width */
int txtlayoutwidth;
/** Default position */
2008-01-04 19:12:07 +01:00
Position dposition;
/** Bar position */
2008-01-04 19:12:07 +01:00
Position position;
2007-09-07 17:29:36 +02:00
/** Window */
Window window;
/** Screen */
int screen;
/** Widget list */
Widget *widgets;
/** Drawable */
Drawable drawable;
2007-12-30 21:00:34 +01:00
/** Next statusbar */
Statusbar *next;
};
2008-01-12 21:39:41 +01:00
DO_SLIST(Statusbar, statusbar, p_delete);
2007-10-11 21:50:32 +02:00
typedef struct Client Client;
struct Client
{
/** Client name */
char name[256];
/** Window geometry */
2008-01-05 19:38:50 +01:00
Area geometry;
/** Floating window geometry */
Area f_geometry;
/** Max window geometry */
Area m_geometry;
2007-10-11 21:50:32 +02:00
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
int minax, maxax, minay, maxay;
int border, oldborder;
2007-12-23 15:16:10 +01:00
/** Has urgency hint */
Bool isurgent;
/** Store previous floating state before maximizing */
Bool wasfloating;
/** True if the window is floating */
Bool isfloating;
/** True if the window is fixed */
Bool isfixed;
/** True if the window is maximized */
Bool ismax;
/** True if the client must be skipped from client list */
Bool skip;
/** True if the client must be skipped from task bar client list */
Bool skiptb;
2007-10-11 21:50:32 +02:00
/** Next client */
Client *next;
/** Window of the client */
Window win;
/** Client logical screen */
int screen;
/** True if the client is a new one */
Bool newcomer;
2007-10-11 21:50:32 +02:00
};
2008-01-12 17:01:21 +01:00
DO_SLIST(Client, client, p_delete);
2007-12-14 21:51:54 +01:00
typedef struct FocusList FocusList;
struct FocusList
{
Client *client;
FocusList *prev;
};
/** Tag type */
typedef struct Tag Tag;
struct Tag
{
/** Tag name */
char *name;
/** True if selected */
Bool selected;
/** True if was selected before selecting others tags */
Bool was_selected;
/** Current tag layout */
Layout *layout;
2007-11-11 11:48:26 +01:00
/** Master width factor */
double mwfact;
2007-11-11 11:53:10 +01:00
/** Number of master windows */
int nmaster;
2007-11-11 11:55:20 +01:00
/** Number of columns in tile layout */
int ncol;
/** Next tag */
Tag *next;
};
/** TagClientLink type */
typedef struct TagClientLink TagClientLink;
struct TagClientLink
{
Tag *tag;
Client *client;
TagClientLink *next;
};
2007-11-27 23:03:55 +01:00
/** Padding type */
typedef struct
{
/** Padding at top */
int top;
/** Padding at bottom */
int bottom;
/** Padding at left */
int left;
/** Padding at right */
int right;
} Padding;
typedef struct
2007-09-05 20:15:00 +02:00
{
/** Number of pixels to snap windows */
int snap;
/** Border size */
int borderpx;
/** Transparency of unfocused clients */
int opacity_unfocused;
/** Focus move pointer */
Bool focus_move_pointer;
/** Allow floats to be lowered on focus change */
Bool allow_lower_floats;
/** Respect resize hints */
Bool resize_hints;
/** Sloppy focus: focus follow mouse */
Bool sloppy_focus;
2008-01-07 18:54:45 +01:00
/** Focus new clients */
Bool new_get_focus;
/** True if new clients should become master */
Bool new_become_master;
/** Normal colors */
XColor colors_normal[ColLast];
/** Selected colors */
XColor colors_selected[ColLast];
2007-12-23 15:16:10 +01:00
/** Urgency colors */
XColor colors_urgent[ColLast];
2007-09-05 20:15:00 +02:00
/** Tag list */
2007-09-24 15:37:52 +02:00
Tag *tags;
2007-09-05 20:15:00 +02:00
/** Layout list */
Layout *layouts;
/** Status bar */
Statusbar *statusbar;
/** Padding */
Padding padding;
/** Font */
XftFont *font;
} VirtScreen;
/** Main configuration structure */
struct AwesomeConf
{
/** Display ref */
Display *display;
/** Logical screens */
VirtScreen *screens;
/** Number of logical screens */
int nscreens;
2007-09-05 20:15:00 +02:00
/** Rules list */
Rule *rules;
/** Keys bindings list */
2007-09-05 20:15:00 +02:00
Key *keys;
/** Mouse bindings list */
struct
{
Button *root;
Button *client;
} buttons;
2007-09-05 20:15:00 +02:00
/** Numlock mask */
unsigned int numlockmask;
2007-09-13 15:57:35 +02:00
/** Check for XShape extension */
Bool have_shape;
2007-09-13 16:00:03 +02:00
/** Check for XRandR extension */
Bool have_randr;
2007-10-10 13:29:46 +02:00
/** Cursors */
Cursor cursor[CurLast];
2007-10-11 21:50:32 +02:00
/** Clients list */
Client *clients;
2007-10-31 11:37:38 +01:00
/** Path to config file */
char *configpath;
2007-12-14 21:51:54 +01:00
/** Selected clients on this tag */
FocusList *focus;
2007-12-28 11:34:35 +01:00
/** Link between tags and clients */
TagClientLink *tclink;
/** Command line passed to awesome */
char *argv;
2007-09-05 20:15:00 +02:00
};
void config_parse(const char *);
2007-09-05 20:15:00 +02:00
#endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80