2007-12-10 13:43:28 +01:00
|
|
|
/*
|
2007-09-12 14:29:51 +02:00
|
|
|
* config.h - configuration management header
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
|
|
|
* Copyright © 2007 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
|
|
|
|
2007-09-10 16:11:57 +02:00
|
|
|
#ifndef AWESOME_CONFIG_H
|
|
|
|
#define AWESOME_CONFIG_H
|
2007-09-05 20:15:00 +02:00
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
2007-10-01 19:22:57 +02:00
|
|
|
#include <X11/Xft/Xft.h>
|
2007-10-15 12:40:45 +02:00
|
|
|
#include <regex.h>
|
2007-12-15 07:53:53 +01:00
|
|
|
#include <draw.h>
|
2007-09-05 20:15:00 +02:00
|
|
|
|
|
|
|
/** Bar possible position */
|
|
|
|
enum
|
2007-11-11 18:59:11 +01:00
|
|
|
{ BarTop, BarBot, BarLeft, BarRight, BarOff };
|
2007-09-05 20:15:00 +02:00
|
|
|
|
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
|
|
|
|
2007-10-03 17:26:14 +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
|
|
|
{
|
2007-09-16 23:12:53 +02:00
|
|
|
char *prop;
|
|
|
|
char *tags;
|
2007-11-12 18:21:03 +01:00
|
|
|
int screen;
|
2007-09-05 20:15:00 +02:00
|
|
|
Bool isfloating;
|
2007-10-15 12:40:45 +02:00
|
|
|
regex_t *propregex;
|
|
|
|
regex_t *tagregex;
|
2007-11-12 19:25:10 +01:00
|
|
|
Rule *next;
|
|
|
|
};
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-12-19 04:46:44 +01:00
|
|
|
typedef struct AwesomeConf AwesomeConf;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-12-14 17:57:05 +01:00
|
|
|
typedef struct Layout Layout;
|
|
|
|
struct Layout
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-12-27 00:13:44 +01:00
|
|
|
char *image;
|
2007-12-16 02:45:38 +01:00
|
|
|
void (*arrange) (int);
|
2007-12-14 17:57:05 +01:00
|
|
|
Layout *next;
|
|
|
|
};
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-11-12 17:22:40 +01:00
|
|
|
typedef struct Key Key;
|
|
|
|
struct Key
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
|
|
|
unsigned long mod;
|
|
|
|
KeySym keysym;
|
2007-12-16 02:45:38 +01:00
|
|
|
void (*func) (int, char *);
|
2007-09-16 23:12:53 +02:00
|
|
|
char *arg;
|
2007-11-12 17:22:40 +01:00
|
|
|
Key *next;
|
|
|
|
};
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-11-11 15:40:01 +01:00
|
|
|
typedef struct Button Button;
|
|
|
|
struct Button
|
|
|
|
{
|
|
|
|
unsigned long mod;
|
|
|
|
unsigned int button;
|
2007-12-16 02:45:38 +01:00
|
|
|
void (*func) (int, char *);
|
2007-11-11 15:40:01 +01:00
|
|
|
char *arg;
|
2007-11-12 13:21:28 +01:00
|
|
|
Button *next;
|
2007-11-11 15:40:01 +01:00
|
|
|
};
|
|
|
|
|
2007-09-07 16:13:59 +02:00
|
|
|
/** Status bar */
|
2007-12-15 07:53:53 +01:00
|
|
|
typedef struct Widget Widget;
|
2007-09-07 16:13:59 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
2007-09-07 16:35:46 +02:00
|
|
|
/** Bar width */
|
2007-09-07 16:13:59 +02:00
|
|
|
int width;
|
2007-09-07 16:35:46 +02:00
|
|
|
/** Bar height */
|
2007-09-07 16:13:59 +02:00
|
|
|
int height;
|
2007-10-10 19:59:14 +02:00
|
|
|
/** Layout txt width */
|
|
|
|
int txtlayoutwidth;
|
2007-11-10 10:17:54 +01:00
|
|
|
/** Default position */
|
|
|
|
int dposition;
|
2007-09-07 16:35:46 +02:00
|
|
|
/** Bar position */
|
|
|
|
int position;
|
2007-09-07 17:29:36 +02:00
|
|
|
/** Window */
|
|
|
|
Window window;
|
2007-09-15 23:04:04 +02:00
|
|
|
/** Screen */
|
|
|
|
int screen;
|
2007-12-15 07:53:53 +01:00
|
|
|
/** Screen */
|
2007-12-15 22:28:40 +01:00
|
|
|
Widget *widgets;
|
2007-09-07 16:13:59 +02:00
|
|
|
} Statusbar;
|
|
|
|
|
2007-10-11 21:50:32 +02:00
|
|
|
typedef struct Client Client;
|
|
|
|
struct Client
|
|
|
|
{
|
|
|
|
/** Client name */
|
|
|
|
char name[256];
|
|
|
|
/** Window geometry */
|
|
|
|
int x, y, w, h;
|
|
|
|
/** Real window geometry for floating */
|
|
|
|
int rx, ry, rw, rh;
|
|
|
|
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
|
|
|
|
int minax, maxax, minay, maxay;
|
|
|
|
long flags;
|
|
|
|
int border, oldborder;
|
2007-12-23 15:16:10 +01:00
|
|
|
/** Has urgency hint */
|
|
|
|
Bool isurgent;
|
2007-10-22 11:21:27 +02:00
|
|
|
/** 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;
|
2007-10-11 21:50:32 +02:00
|
|
|
/** Next client */
|
|
|
|
Client *next;
|
|
|
|
/** Previous client */
|
|
|
|
Client *prev;
|
|
|
|
/** Window of the client */
|
|
|
|
Window win;
|
|
|
|
/** Client display */
|
|
|
|
Display *display;
|
|
|
|
/** Client logical screen */
|
|
|
|
int screen;
|
|
|
|
/** Client physical screen */
|
|
|
|
int phys_screen;
|
|
|
|
};
|
|
|
|
|
2007-12-14 21:51:54 +01:00
|
|
|
typedef struct FocusList FocusList;
|
|
|
|
struct FocusList
|
|
|
|
{
|
|
|
|
Client *client;
|
|
|
|
FocusList *prev;
|
|
|
|
};
|
|
|
|
|
2007-10-25 19:47:37 +02:00
|
|
|
/** Tag type */
|
2007-12-14 19:02:38 +01:00
|
|
|
typedef struct Tag Tag;
|
|
|
|
struct Tag
|
2007-10-25 19:47:37 +02:00
|
|
|
{
|
|
|
|
/** 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;
|
2007-12-14 19:02:38 +01:00
|
|
|
/** Next tag */
|
|
|
|
Tag *next;
|
|
|
|
};
|
2007-10-25 19:47:37 +02:00
|
|
|
|
2007-12-14 14:29:32 +01:00
|
|
|
/** 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;
|
|
|
|
|
2007-12-11 20:56:51 +01:00
|
|
|
typedef struct
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-12-11 20:56:51 +01: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;
|
|
|
|
/** 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-12-14 14:29:32 +01:00
|
|
|
TagClientLink *tclink;
|
2007-09-05 20:15:00 +02:00
|
|
|
/** Layout list */
|
|
|
|
Layout *layouts;
|
2007-12-11 20:56:51 +01:00
|
|
|
/** Status bar */
|
2007-12-18 08:17:46 +01:00
|
|
|
Statusbar *statusbar;
|
2007-12-11 20:56:51 +01:00
|
|
|
/** Padding */
|
|
|
|
Padding padding;
|
|
|
|
/** Font */
|
|
|
|
XftFont *font;
|
|
|
|
} VirtScreen;
|
|
|
|
|
2007-12-15 07:53:53 +01:00
|
|
|
|
|
|
|
struct Widget
|
|
|
|
{
|
|
|
|
char *name;
|
2007-12-16 04:28:29 +01:00
|
|
|
int (*draw)(Widget *, DrawCtx *, int, int);
|
2007-12-17 10:57:17 +01:00
|
|
|
void (*tell)(Widget *, char *);
|
2007-12-15 07:53:53 +01:00
|
|
|
Statusbar *statusbar;
|
|
|
|
int alignment;
|
2007-12-17 10:57:17 +01:00
|
|
|
void *data;
|
2007-12-27 11:22:57 +01:00
|
|
|
int location;
|
|
|
|
int width;
|
2007-12-15 22:28:40 +01:00
|
|
|
Widget *next;
|
2007-12-15 07:53:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-12-11 20:56:51 +01:00
|
|
|
/** Main configuration structure */
|
2007-12-19 04:46:44 +01:00
|
|
|
struct AwesomeConf
|
2007-12-11 20:56:51 +01:00
|
|
|
{
|
|
|
|
/** Display ref */
|
|
|
|
Display *display;
|
|
|
|
/** Logical screens */
|
|
|
|
VirtScreen *screens;
|
2007-09-05 20:15:00 +02:00
|
|
|
/** Rules list */
|
|
|
|
Rule *rules;
|
2007-11-11 15:40:01 +01:00
|
|
|
/** Keys bindings list */
|
2007-09-05 20:15:00 +02:00
|
|
|
Key *keys;
|
2007-11-11 15:40:01 +01:00
|
|
|
/** Mouse bindings list */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
Button *tag;
|
2007-11-11 15:55:13 +01:00
|
|
|
Button *title;
|
2007-11-11 16:01:49 +01:00
|
|
|
Button *layout;
|
2007-11-12 10:53:48 +01:00
|
|
|
Button *root;
|
2007-11-14 17:18:16 +01:00
|
|
|
Button *client;
|
2007-11-11 15:40:01 +01:00
|
|
|
} 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 */
|
2007-12-11 20:56:51 +01:00
|
|
|
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-09-05 20:15:00 +02:00
|
|
|
};
|
|
|
|
|
2007-12-16 13:22:13 +01:00
|
|
|
void config_parse(const char *);
|
2007-09-05 20:15:00 +02:00
|
|
|
|
|
|
|
#endif
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|