about summary refs log tree commit diff stats
Commit message (Expand)AuthorAgeFilesLines
* Fix Makefile for non-GNU findrage 3112019-06-031-1/+1
* Fix #116 0.1.0Drew DeVault2019-06-031-1/+1
* Add delete to the default binds.confDrew DeVault2019-06-021-0/+1
* hldiff.py: don't highlight -/+ in filenamesDrew DeVault2019-06-021-2/+2
* Add Tabs historyReto Brunner2019-06-021-4/+34
* Wait for listing to complete before sending DoneDrew DeVault2019-06-021-0/+3
* Don't send Done until finished fetching messagesDrew DeVault2019-06-021-0/+3
* Remove worker callbacks when Done is receivedDrew DeVault2019-06-022-5/+13
* Add date to message viewerDrew DeVault2019-06-022-5/+11
* widget: Add ProvidesMessage interfaceKevin Kuehler2019-06-0210-18/+93
* Update tcell forkDrew DeVault2019-06-022-1/+3
* Only add message to store if store existsKevin Kuehler2019-06-021-8/+12
* Enumerate Cc and Bcc lists in composerDrew DeVault2019-06-021-1/+20
* Fix infinite recursion in reply.go:findPlaintextDrew DeVault2019-06-021-1/+1
* Simplify layout of message viewer gridDrew DeVault2019-06-021-17/+3
* Fetch plaintext part when replyingDrew DeVault2019-06-011-6/+34
* Use forked version of tcellDrew DeVault2019-06-013-4/+15
* widgets/terminal: Don't segfault on resizeKevin Kuehler2019-06-011-10/+15
* Remove more GNU-isms from MakefileSam Whited2019-06-011-11/+18
* Remove "wildcard" GNU-ism from MakefileSam Whited2019-05-301-15/+2
* Add :save and :pipe commands to viewerGalen Abell2019-05-278-37/+194
* Update terminal color handling per vterm changesDrew DeVault2019-05-263-44/+25
* Update to the latest go-libvtermDrew DeVault2019-05-264-5/+15
* Update go-libvtermDrew DeVault2019-05-262-1/+3
* Skip non selectable mailboxes in directory listingReto Brunner2019-05-261-0/+13
* Add aerc-announce to README.mdDrew DeVault2019-05-261-3/+6
* Implement :edit in compose screenDrew DeVault2019-05ighlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*
 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
 * See LICENSE file for license details.
 */

#include <X11/Xlib.h>

/********** CUSTOMIZE **********/

#define FONT				"-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*"
#define BGCOLOR				"#0a2c2d"
#define FGCOLOR				"#ddeeee"
#define BORDERCOLOR			"#176164"
#define MODKEY				 Mod1Mask /* Mod4Mask */
/*
#define BGCOLOR				"#666699"
#define FGCOLOR				"#eeeeee"
#define BORDERCOLOR			"#9999CC"
*/
#define MASTERW				52 /* percent */
#define WM_PROTOCOL_DELWIN	1

/* tags */
enum { Tscratch, Tdev, Twww, Twork, TLast };

/********** CUSTOMIZE **********/

typedef union Arg Arg;
typedef struct Client Client;
typedef enum Corner Corner;
typedef struct DC DC;
typedef struct Fnt Fnt;

union Arg {
	const char **argv;
	int i;
};

/* atoms */
enum { NetSupported, NetWMName, NetLast };
enum { WMProtocols, WMDelete, WMLast };

/* cursor */
enum { CurNormal, CurResize, CurMove, CurLast };

enum Corner { TopLeft, TopRight, BotLeft, BotRight };

struct Fnt {
	int ascent;
	int descent;
	int height;
	XFontSet set;
	XFontStruct *xfont;
};

struct DC { /* draw context */
	int x, y, w, h;
	unsigned long bg;
	unsigned long fg;
	unsigned long border;
	Drawable drawable;
	Fnt font;
	GC gc;
};

struct Client {
	char name[256];
	char *tags[TLast];
	int proto;
	int x, y, w, h;
	int tx, ty, tw, th; /* title */
	int basew, baseh, incw, inch, maxw, maxh, minw, minh;
	int grav;
	unsigned int border;
	long flags; 
	Bool isfloat;
	Client *next;
	Client *revert;
	Window win;
	Window title;
};

extern char *tags[TLast], stext[1024];
extern int tsel, screen, sx, sy, sw, sh, bx, by, bw, bh, mw;
extern void (*handler[LASTEvent])(XEvent *);
extern void (*arrange)(Arg *);
extern Atom wmatom[WMLast], netatom[NetLast];
extern Bool running, issel;
extern Client *clients, *sel;
extern Cursor cursor[CurLast];
extern DC dc;
extern Display *dpy;
extern Window root, barwin;

/* client.c */
extern void ban(Client *c);
extern void focus(Client *c);
extern void focusnext(Arg *arg);
extern void focusprev(Arg *arg);
extern Client *getclient(Window w);
extern Client *getctitle(Window w);
extern void gravitate(Client *c, Bool invert);
extern void higher(Client *c);
extern void killclient(Arg *arg);
extern void lower(Client *c);
extern void manage(Window w, XWindowAttributes *wa);
extern void maximize(Arg *arg);
extern void pop(Client *c);
extern void resize(Client *c, Bool inc, Corner sticky);
extern void setsize(Client *c);
extern void settitle(Client *c);
extern void unmanage(Client *c);
extern void zoom(Arg *arg);

/* draw.c */
extern void drawall();
extern void drawstatus();
extern void drawtitle(Client *c);
extern unsigned long getcolor(const char *colstr);
extern void setfont(const char *fontstr);
extern unsigned int textw(char *text);

/* event.c */
extern void grabkeys();

/* main.c */
extern int getproto(Window w);
extern void quit(Arg *arg);
extern void sendevent(Window w, Atom a, long value);
extern int xerror(Display *dsply, XErrorEvent *ee);

/* tag.c */
extern void appendtag(Arg *arg);
extern void dofloat(Arg *arg);
extern void dotile(Arg *arg);
extern Client *getnext(Client *c, unsigned int t);
extern void heretag(Arg *arg);
extern void replacetag(Arg *arg);
extern void settags(Client *c);
extern void view(Arg *arg);

/* util.c */
extern void *emallocz(unsigned int size);
extern void eprint(const char *errstr, ...);
extern void spawn(Arg *arg);