2007-09-05 20:15:00 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <locale.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <X11/cursorfont.h>
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <X11/Xproto.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
2007-09-10 12:06:54 +02:00
|
|
|
#include "awesome.h"
|
2007-09-05 20:15:00 +02:00
|
|
|
#include "util.h"
|
|
|
|
#include "event.h"
|
|
|
|
#include "layout.h"
|
|
|
|
#include "tag.h"
|
|
|
|
|
2007-09-07 17:36:21 +02:00
|
|
|
int wax, way, waw, wah;
|
2007-09-07 16:46:46 +02:00
|
|
|
Atom wmatom[WMLast], netatom[NetLast];
|
2007-09-05 20:15:00 +02:00
|
|
|
Client *clients = NULL;
|
|
|
|
Client *sel = NULL;
|
|
|
|
Client *stack = NULL;
|
|
|
|
Cursor cursor[CurLast];
|
|
|
|
DC dc;
|
|
|
|
|
|
|
|
/* static */
|
|
|
|
|
|
|
|
static int (*xerrorxlib) (Display *, XErrorEvent *);
|
|
|
|
static Bool otherwm = False, readin = True;
|
|
|
|
static Bool running = True;
|
|
|
|
|
|
|
|
|
|
|
|
Bool
|
|
|
|
gettextprop(Display *disp, Window w, Atom atom, char *text, unsigned int size)
|
|
|
|
{
|
|
|
|
char **list = NULL;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
XTextProperty name;
|
|
|
|
|
|
|
|
if(!text || size == 0)
|
|
|
|
return False;
|
|
|
|
|
|
|
|
text[0] = '\0';
|
|
|
|
XGetTextProperty(disp, w, &name, atom);
|
|
|
|
|
|
|
|
if(!name.nitems)
|
|
|
|
return False;
|
|
|
|
|
|
|
|
if(name.encoding == XA_STRING)
|
|
|
|
strncpy(text, (char *) name.value, size - 1);
|
|
|
|
else if(XmbTextPropertyToTextList(disp, &name, &list, &n) >= Success && n > 0 && *list)
|
|
|
|
{
|
|
|
|
strncpy(text, *list, size - 1);
|
|
|
|
XFreeStringList(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
text[size - 1] = '\0';
|
|
|
|
XFree(name.value);
|
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-09-10 12:06:54 +02:00
|
|
|
cleanup(Display *disp, awesome_config *awesomeconf)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
|
|
|
close(STDIN_FILENO);
|
|
|
|
while(stack)
|
|
|
|
{
|
|
|
|
unban(stack);
|
2007-09-10 12:06:54 +02:00
|
|
|
unmanage(stack, &dc, NormalState, awesomeconf);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
if(dc.font.set)
|
|
|
|
XFreeFontSet(disp, dc.font.set);
|
|
|
|
else
|
|
|
|
XFreeFont(disp, dc.font.xfont);
|
|
|
|
XUngrabKey(disp, AnyKey, AnyModifier, DefaultRootWindow(disp));
|
|
|
|
XFreePixmap(disp, dc.drawable);
|
|
|
|
XFreeGC(disp, dc.gc);
|
2007-09-10 12:06:54 +02:00
|
|
|
XDestroyWindow(disp, awesomeconf->statusbar.window);
|
2007-09-05 20:15:00 +02:00
|
|
|
XFreeCursor(disp, cursor[CurNormal]);
|
|
|
|
XFreeCursor(disp, cursor[CurResize]);
|
|
|
|
XFreeCursor(disp, cursor[CurMove]);
|
|
|
|
XSetInputFocus(disp, PointerRoot, RevertToPointerRoot, CurrentTime);
|
|
|
|
XSync(disp, False);
|
|
|
|
}
|
|
|
|
|
|
|
|
static long
|
|
|
|
getstate(Display *disp, Window w)
|
|
|
|
{
|
|
|
|
int format, status;
|
|
|
|
long result = -1;
|
|
|
|
unsigned char *p = NULL;
|
|
|
|
unsigned long n, extra;
|
|
|
|
Atom real;
|
|
|
|
status = XGetWindowProperty(disp, w, wmatom[WMState], 0L, 2L, False, wmatom[WMState],
|
|
|
|
&real, &format, &n, &extra, (unsigned char **) &p);
|
|
|
|
if(status != Success)
|
|
|
|
return -1;
|
|
|
|
if(n != 0)
|
|
|
|
result = *p;
|
|
|
|
XFree(p);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-09-10 12:06:54 +02:00
|
|
|
scan(Display *disp, awesome_config *awesomeconf)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
|
|
|
unsigned int i, num;
|
|
|
|
Window *wins, d1, d2;
|
|
|
|
XWindowAttributes wa;
|
|
|
|
|
|
|
|
wins = NULL;
|
|
|
|
if(XQueryTree(disp, DefaultRootWindow(disp), &d1, &d2, &wins, &num))
|
|
|
|
for(i = 0; i < num; i++)
|
|
|
|
{
|
|
|
|
if(!XGetWindowAttributes(disp, wins[i], &wa)
|
|
|
|
|| wa.override_redirect || XGetTransientForHint(disp, wins[i], &d1))
|
|
|
|
continue;
|
|
|
|
if(wa.map_state == IsViewable || getstate(disp, wins[i]) == IconicState)
|
2007-09-10 12:06:54 +02:00
|
|
|
manage(disp, &dc, wins[i], &wa, awesomeconf);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
/* now the transients */
|
|
|
|
for(i = 0; i < num; i++)
|
|
|
|
{
|
|
|
|
if(!XGetWindowAttributes(disp, wins[i], &wa))
|
|
|
|
continue;
|
|
|
|
if(XGetTransientForHint(disp, wins[i], &d1)
|
|
|
|
&& (wa.map_state == IsViewable || getstate(disp, wins[i]) == IconicState))
|
2007-09-10 12:06:54 +02:00
|
|
|
manage(disp, &dc, wins[i], &wa, awesomeconf);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
if(wins)
|
|
|
|
XFree(wins);
|
|
|
|
}
|
|
|
|
|
2007-09-07 11:38:03 +02:00
|
|
|
/** Setup everything before running
|
|
|
|
* \param disp Display ref
|
2007-09-10 12:06:54 +02:00
|
|
|
* \param awesomeconf awesome config ref
|
2007-09-07 11:38:03 +02:00
|
|
|
* \todo clean things...
|
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
static void
|
2007-09-10 12:06:54 +02:00
|
|
|
setup(Display *disp, awesome_config *awesomeconf)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
|
|
|
XSetWindowAttributes wa;
|
|
|
|
|
|
|
|
/* init atoms */
|
|
|
|
wmatom[WMProtocols] = XInternAtom(disp, "WM_PROTOCOLS", False);
|
|
|
|
wmatom[WMDelete] = XInternAtom(disp, "WM_DELETE_WINDOW", False);
|
|
|
|
wmatom[WMName] = XInternAtom(disp, "WM_NAME", False);
|
|
|
|
wmatom[WMState] = XInternAtom(disp, "WM_STATE", False);
|
|
|
|
netatom[NetSupported] = XInternAtom(disp, "_NET_SUPPORTED", False);
|
|
|
|
netatom[NetWMName] = XInternAtom(disp, "_NET_WM_NAME", False);
|
|
|
|
XChangeProperty(disp, DefaultRootWindow(disp), netatom[NetSupported], XA_ATOM, 32,
|
|
|
|
PropModeReplace, (unsigned char *) netatom, NetLast);
|
|
|
|
/* init cursors */
|
|
|
|
cursor[CurNormal] = XCreateFontCursor(disp, XC_left_ptr);
|
|
|
|
cursor[CurResize] = XCreateFontCursor(disp, XC_sizing);
|
|
|
|
cursor[CurMove] = XCreateFontCursor(disp, XC_fleur);
|
|
|
|
/* select for events */
|
|
|
|
wa.event_mask = SubstructureRedirectMask | SubstructureNotifyMask
|
|
|
|
| EnterWindowMask | LeaveWindowMask | StructureNotifyMask;
|
|
|
|
wa.cursor = cursor[CurNormal];
|
|
|
|
XChangeWindowAttributes(disp, DefaultRootWindow(disp), CWEventMask | CWCursor, &wa);
|
|
|
|
XSelectInput(disp, DefaultRootWindow(disp), wa.event_mask);
|
2007-09-10 12:06:54 +02:00
|
|
|
grabkeys(disp, awesomeconf);
|
|
|
|
compileregs(awesomeconf);
|
2007-09-05 20:15:00 +02:00
|
|
|
/* bar */
|
2007-09-10 12:06:54 +02:00
|
|
|
dc.h = awesomeconf->statusbar.height = dc.font.height + 2;
|
2007-09-05 20:15:00 +02:00
|
|
|
wa.override_redirect = 1;
|
|
|
|
wa.background_pixmap = ParentRelative;
|
|
|
|
wa.event_mask = ButtonPressMask | ExposureMask;
|
2007-09-10 12:06:54 +02:00
|
|
|
awesomeconf->statusbar.window = XCreateWindow(disp, DefaultRootWindow(disp), 0, 0, DisplayWidth(disp, DefaultScreen(disp)), awesomeconf->statusbar.height, 0,
|
2007-09-07 17:29:36 +02:00
|
|
|
DefaultDepth(disp, DefaultScreen(disp)), CopyFromParent,
|
|
|
|
DefaultVisual(disp, DefaultScreen(disp)),
|
|
|
|
CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
|
2007-09-10 12:06:54 +02:00
|
|
|
XDefineCursor(disp, awesomeconf->statusbar.window, cursor[CurNormal]);
|
|
|
|
updatebarpos(disp, awesomeconf->statusbar);
|
|
|
|
XMapRaised(disp, awesomeconf->statusbar.window);
|
2007-09-05 20:15:00 +02:00
|
|
|
/* pixmap for everything */
|
2007-09-10 12:06:54 +02:00
|
|
|
dc.drawable = XCreatePixmap(disp, DefaultRootWindow(disp), DisplayWidth(disp, DefaultScreen(disp)), awesomeconf->statusbar.height, DefaultDepth(disp, DefaultScreen(disp)));
|
2007-09-05 20:15:00 +02:00
|
|
|
dc.gc = XCreateGC(disp, DefaultRootWindow(disp), 0, 0);
|
|
|
|
XSetLineAttributes(disp, dc.gc, 1, LineSolid, CapButt, JoinMiter);
|
|
|
|
if(!dc.font.set)
|
|
|
|
XSetFont(disp, dc.gc, dc.font.xfont->fid);
|
2007-09-10 12:06:54 +02:00
|
|
|
loadawesomeprops(disp, awesomeconf);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Startup Error handler to check if another window manager
|
|
|
|
* is already running.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
xerrorstart(Display * dsply __attribute__ ((unused)), XErrorEvent * ee __attribute__ ((unused)))
|
|
|
|
{
|
|
|
|
otherwm = True;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* extern */
|
|
|
|
|
|
|
|
void
|
|
|
|
uicb_quit(Display *disp __attribute__ ((unused)),
|
2007-09-10 12:06:54 +02:00
|
|
|
awesome_config *awesomeconf __attribute__((unused)),
|
2007-09-05 20:15:00 +02:00
|
|
|
const char *arg __attribute__ ((unused)))
|
|
|
|
{
|
|
|
|
readin = running = False;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-09-07 16:35:46 +02:00
|
|
|
updatebarpos(Display *disp, Statusbar statusbar)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
|
|
|
XEvent ev;
|
|
|
|
|
2007-09-07 17:36:21 +02:00
|
|
|
wax = 0;
|
|
|
|
way = 0;
|
2007-09-07 17:19:03 +02:00
|
|
|
wah = DisplayHeight(disp, DefaultScreen(disp));
|
|
|
|
waw = DisplayWidth(disp, DefaultScreen(disp));
|
2007-09-07 16:35:46 +02:00
|
|
|
switch (statusbar.position)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
|
|
|
default:
|
2007-09-07 16:13:59 +02:00
|
|
|
wah -= statusbar.height;
|
|
|
|
way += statusbar.height;
|
2007-09-07 17:36:21 +02:00
|
|
|
XMoveWindow(disp, statusbar.window, 0, 0);
|
2007-09-05 20:15:00 +02:00
|
|
|
break;
|
|
|
|
case BarBot:
|
2007-09-07 16:13:59 +02:00
|
|
|
wah -= statusbar.height;
|
2007-09-07 17:36:21 +02:00
|
|
|
XMoveWindow(disp, statusbar.window, 0, wah);
|
2007-09-05 20:15:00 +02:00
|
|
|
break;
|
|
|
|
case BarOff:
|
2007-09-07 17:36:21 +02:00
|
|
|
XMoveWindow(disp, statusbar.window, 0, 0 - statusbar.height);
|
2007-09-05 20:15:00 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
XSync(disp, False);
|
|
|
|
while(XCheckMaskEvent(disp, EnterWindowMask, &ev));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* There's no way to check accesses to destroyed windows, thus those cases are
|
|
|
|
* ignored (especially on UnmapNotify's). Other types of errors call Xlibs
|
|
|
|
* default error handler, which may call exit.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xerror(Display * edpy, XErrorEvent * ee)
|
|
|
|
{
|
|
|
|
if(ee->error_code == BadWindow
|
|
|
|
|| (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
|
|
|
|
|| (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
|
|
|
|
|| (ee->request_code == X_PolyFillRectangle
|
|
|
|
&& ee->error_code == BadDrawable)
|
|
|
|
|| (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
|
|
|
|
|| (ee->request_code == X_ConfigureWindow
|
|
|
|
&& ee->error_code == BadMatch) || (ee->request_code == X_GrabKey
|
|
|
|
&& ee->error_code == BadAccess)
|
|
|
|
|| (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
|
|
|
|
return 0;
|
2007-09-10 12:06:54 +02:00
|
|
|
fprintf(stderr, "awesome: fatal error: request code=%d, error code=%d\n",
|
2007-09-05 20:15:00 +02:00
|
|
|
ee->request_code, ee->error_code);
|
|
|
|
|
|
|
|
return xerrorxlib(edpy, ee); /* may call exit */
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
int r, xfd;
|
|
|
|
fd_set rd;
|
|
|
|
XEvent ev;
|
|
|
|
Display * dpy;
|
|
|
|
Window root;
|
2007-09-10 12:06:54 +02:00
|
|
|
awesome_config awesomeconf;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
|
|
|
if(argc == 2 && !strcmp("-v", argv[1]))
|
2007-09-10 12:06:54 +02:00
|
|
|
eprint("awesome-" VERSION " © 2007 Julien Danjou\n");
|
2007-09-05 20:15:00 +02:00
|
|
|
else if(argc != 1)
|
2007-09-10 12:06:54 +02:00
|
|
|
eprint("usage: awesome [-v]\n");
|
2007-09-05 20:15:00 +02:00
|
|
|
setlocale(LC_CTYPE, "");
|
|
|
|
|
|
|
|
|
|
|
|
if(!(dpy = XOpenDisplay(NULL)))
|
2007-09-10 12:06:54 +02:00
|
|
|
eprint("awesome: cannot open display\n");
|
2007-09-05 20:15:00 +02:00
|
|
|
xfd = ConnectionNumber(dpy);
|
2007-09-07 17:25:10 +02:00
|
|
|
root = RootWindow(dpy, DefaultScreen(dpy));
|
2007-09-05 20:15:00 +02:00
|
|
|
XSetErrorHandler(xerrorstart);
|
|
|
|
|
|
|
|
/* this causes an error if some other window manager is running */
|
|
|
|
XSelectInput(dpy, root, SubstructureRedirectMask);
|
|
|
|
XSync(dpy, False);
|
|
|
|
|
|
|
|
if(otherwm)
|
2007-09-10 12:06:54 +02:00
|
|
|
eprint("awesome: another window manager is already running\n");
|
2007-09-05 20:15:00 +02:00
|
|
|
|
|
|
|
XSync(dpy, False);
|
|
|
|
XSetErrorHandler(NULL);
|
|
|
|
xerrorxlib = XSetErrorHandler(xerror);
|
|
|
|
XSync(dpy, False);
|
2007-09-10 12:06:54 +02:00
|
|
|
parse_config(dpy, DefaultScreen(dpy), &dc, &awesomeconf);
|
|
|
|
setup(dpy, &awesomeconf);
|
|
|
|
drawstatus(dpy, &awesomeconf);
|
|
|
|
scan(dpy, &awesomeconf);
|
2007-09-05 20:15:00 +02:00
|
|
|
XSync(dpy, False);
|
|
|
|
|
2007-09-10 12:06:54 +02:00
|
|
|
void (*handler[LASTEvent]) (XEvent *, awesome_config *) =
|
2007-09-07 12:29:54 +02:00
|
|
|
{
|
|
|
|
[ButtonPress] = handle_event_buttonpress,
|
|
|
|
[ConfigureRequest] = handle_event_configurerequest,
|
|
|
|
[ConfigureNotify] = handle_event_configurenotify,
|
|
|
|
[DestroyNotify] = handle_event_destroynotify,
|
|
|
|
[EnterNotify] = handle_event_enternotify,
|
|
|
|
[LeaveNotify] = handle_event_leavenotify,
|
|
|
|
[Expose] = handle_event_expose,
|
|
|
|
[KeyPress] = handle_event_keypress,
|
|
|
|
[MappingNotify] = handle_event_mappingnotify,
|
|
|
|
[MapRequest] = handle_event_maprequest,
|
|
|
|
[PropertyNotify] = handle_event_propertynotify,
|
|
|
|
[UnmapNotify] = handle_event_unmapnotify
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-09-05 20:15:00 +02:00
|
|
|
/* main event loop, also reads status text from stdin */
|
|
|
|
while(running)
|
|
|
|
{
|
|
|
|
FD_ZERO(&rd);
|
|
|
|
if(readin)
|
|
|
|
FD_SET(STDIN_FILENO, &rd);
|
|
|
|
FD_SET(xfd, &rd);
|
|
|
|
if(select(xfd + 1, &rd, NULL, NULL, NULL) == -1)
|
|
|
|
{
|
|
|
|
if(errno == EINTR)
|
|
|
|
continue;
|
|
|
|
eprint("select failed\n");
|
|
|
|
}
|
|
|
|
if(FD_ISSET(STDIN_FILENO, &rd))
|
|
|
|
{
|
2007-09-10 12:06:54 +02:00
|
|
|
switch (r = read(STDIN_FILENO, awesomeconf.statustext, sizeof(awesomeconf.statustext) - 1))
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
|
|
|
case -1:
|
2007-09-10 12:06:54 +02:00
|
|
|
strncpy(awesomeconf.statustext, strerror(errno), sizeof(awesomeconf.statustext) - 1);
|
|
|
|
awesomeconf.statustext[sizeof(awesomeconf.statustext) - 1] = '\0';
|
2007-09-05 20:15:00 +02:00
|
|
|
readin = False;
|
|
|
|
break;
|
|
|
|
case 0:
|
2007-09-10 12:06:54 +02:00
|
|
|
strncpy(awesomeconf.statustext, "EOF", 4);
|
2007-09-05 20:15:00 +02:00
|
|
|
readin = False;
|
|
|
|
break;
|
|
|
|
default:
|
2007-09-10 12:06:54 +02:00
|
|
|
for(awesomeconf.statustext[r] = '\0', p = awesomeconf.statustext + strlen(awesomeconf.statustext) - 1;
|
|
|
|
p >= awesomeconf.statustext && *p == '\n'; *p-- = '\0');
|
|
|
|
for(; p >= awesomeconf.statustext && *p != '\n'; --p);
|
|
|
|
if(p > awesomeconf.statustext)
|
|
|
|
strncpy(awesomeconf.statustext, p + 1, sizeof(awesomeconf.statustext));
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
2007-09-10 12:06:54 +02:00
|
|
|
drawstatus(dpy, &awesomeconf);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
while(XPending(dpy))
|
|
|
|
{
|
|
|
|
XNextEvent(dpy, &ev);
|
|
|
|
if(handler[ev.type])
|
2007-09-10 12:06:54 +02:00
|
|
|
(handler[ev.type]) (&ev, &awesomeconf); /* call handler */
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
}
|
2007-09-10 12:06:54 +02:00
|
|
|
cleanup(dpy, &awesomeconf);
|
2007-09-05 20:15:00 +02:00
|
|
|
XCloseDisplay(dpy);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|