awesome/awesome.c

380 lines
12 KiB
C
Raw Normal View History

2007-09-12 14:29:51 +02:00
/*
* awesome.c - awesome main functions
*
* 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-05 20:15:00 +02:00
#include <errno.h>
#include <locale.h>
#include <stdio.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-13 15:57:35 +02:00
#include <X11/extensions/shape.h>
2007-09-13 16:00:03 +02:00
#include <X11/extensions/Xrandr.h>
2007-09-05 20:15:00 +02:00
2007-09-10 12:06:54 +02:00
#include "awesome.h"
2007-09-05 20:15:00 +02:00
#include "event.h"
#include "layout.h"
#include "tag.h"
2007-09-15 12:45:55 +02:00
#include "screen.h"
#include "util.h"
#include "statusbar.h"
2007-09-05 20:15:00 +02:00
Client *clients = NULL;
Client *sel = NULL;
Client *stack = NULL;
DC *dc;
2007-09-05 20:15:00 +02:00
/* static */
static int (*xerrorxlib) (Display *, XErrorEvent *);
static Bool readin = True, running = True;
2007-09-05 20:15:00 +02:00
static void
2007-09-12 17:43:14 +02:00
cleanup(Display *disp, DC *drawcontext, awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
2007-09-16 00:36:56 +02:00
int screen;
2007-09-05 20:15:00 +02:00
close(STDIN_FILENO);
2007-09-16 00:36:56 +02:00
2007-09-05 20:15:00 +02:00
while(stack)
{
unban(stack);
2007-09-12 17:43:14 +02:00
unmanage(stack, drawcontext, NormalState, awesomeconf);
2007-09-05 20:15:00 +02:00
}
2007-09-16 00:36:56 +02:00
for(screen = 0; screen < ScreenCount(disp); screen++)
{
if(drawcontext[screen].font.set)
XFreeFontSet(disp, drawcontext[screen].font.set);
else
XFreeFont(disp, drawcontext[screen].font.xfont);
XUngrabKey(disp, AnyKey, AnyModifier, RootWindow(disp, screen));
XFreePixmap(disp, awesomeconf[screen].statusbar.drawable);
XFreeGC(disp, drawcontext[screen].gc);
XDestroyWindow(disp, awesomeconf[screen].statusbar.window);
XFreeCursor(disp, drawcontext[screen].cursor[CurNormal]);
XFreeCursor(disp, drawcontext[screen].cursor[CurResize]);
XFreeCursor(disp, drawcontext[screen].cursor[CurMove]);
}
2007-09-05 20:15:00 +02:00
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;
2007-09-10 16:47:20 +02:00
status = XGetWindowProperty(disp, w, XInternAtom(disp, "WM_STATE", False),
0L, 2L, False, XInternAtom(disp, "WM_STATE", False),
2007-09-05 20:15:00 +02:00
&real, &format, &n, &extra, (unsigned char **) &p);
if(status != Success)
return -1;
if(n != 0)
result = *p;
XFree(p);
return result;
}
static void
scan(Display *disp, int screen, DC *drawcontext, 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, RootWindow(disp, screen), &d1, &d2, &wins, &num))
2007-09-16 00:36:56 +02:00
{
for(i = 0; i < num; i++)
2007-09-05 20:15:00 +02:00
{
if(!XGetWindowAttributes(disp, wins[i], &wa)
|| wa.override_redirect
|| XGetTransientForHint(disp, wins[i], &d1))
continue;
2007-09-16 00:36:56 +02:00
if(wa.map_state == IsViewable || getstate(disp, wins[i]) == IconicState)
manage(disp, screen, drawcontext, wins[i], &wa, awesomeconf);
}
/* 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))
manage(disp, screen, drawcontext, wins[i], &wa, awesomeconf);
2007-09-05 20:15:00 +02:00
}
}
if(wins)
XFree(wins);
}
2007-09-11 17:48:20 +02:00
enum { NetSupported, NetWMName, NetLast }; /* EWMH atoms */
Atom netatom[NetWMName];
2007-09-07 11:38:03 +02:00
/** Setup everything before running
* \param disp Display ref
* \param screen Screen number
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
setup(Display *disp, int screen, DC *drawcontext, awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
XSetWindowAttributes wa;
/* init cursors */
2007-09-12 18:16:20 +02:00
drawcontext->cursor[CurNormal] = XCreateFontCursor(disp, XC_left_ptr);
drawcontext->cursor[CurResize] = XCreateFontCursor(disp, XC_sizing);
drawcontext->cursor[CurMove] = XCreateFontCursor(disp, XC_fleur);
2007-09-05 20:15:00 +02:00
/* select for events */
wa.event_mask = SubstructureRedirectMask | SubstructureNotifyMask
| EnterWindowMask | LeaveWindowMask | StructureNotifyMask;
2007-09-12 18:16:20 +02:00
wa.cursor = drawcontext->cursor[CurNormal];
XChangeWindowAttributes(disp, RootWindow(disp, screen), CWEventMask | CWCursor, &wa);
XSelectInput(disp, RootWindow(disp, screen), wa.event_mask);
grabkeys(disp, screen, awesomeconf);
2007-09-10 17:05:42 +02:00
compileregs(awesomeconf->rules, awesomeconf->nrules);
2007-09-05 20:15:00 +02:00
/* bar */
2007-09-12 17:41:11 +02:00
drawcontext->h = awesomeconf->statusbar.height = drawcontext->font.height + 2;
initstatusbar(disp, screen, drawcontext, &awesomeconf->statusbar);
drawcontext->gc = XCreateGC(disp, RootWindow(disp, screen), 0, 0);
2007-09-12 17:41:11 +02:00
XSetLineAttributes(disp, drawcontext->gc, 1, LineSolid, CapButt, JoinMiter);
if(!drawcontext->font.set)
XSetFont(disp, drawcontext->gc, drawcontext->font.xfont->fid);
// netatom[NetSupported] = XInternAtom(disp, "_NET_SUPPORTED", False);
// netatom[NetWMName] = XInternAtom(disp, "_NET_WM_NAME", False);
// XChangeProperty(disp, RootWindow(disp, screen), netatom[NetSupported],
// XA_ATOM, 32, PropModeReplace, (unsigned char *) netatom, NetLast);
loadawesomeprops(disp, screen, awesomeconf);
2007-09-05 20:15:00 +02:00
}
/*
* Startup Error handler to check if another window manager
* is already running.
*/
2007-09-12 14:32:24 +02:00
static int __attribute__ ((noreturn))
2007-09-05 20:15:00 +02:00
xerrorstart(Display * dsply __attribute__ ((unused)), XErrorEvent * ee __attribute__ ((unused)))
{
2007-09-12 14:32:24 +02:00
eprint("awesome: another window manager is already running\n");
2007-09-05 20:15:00 +02:00
}
/* extern */
void
uicb_quit(Display *disp __attribute__ ((unused)),
2007-09-16 01:05:43 +02:00
int screen __attribute__ ((unused)),
2007-09-12 18:11:27 +02:00
DC *drawcontext __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;
}
int
get_windows_area_x(Statusbar statusbar __attribute__ ((unused)))
{
return 0;
}
int
get_windows_area_y(Statusbar statusbar)
{
if(statusbar.position == BarTop)
return statusbar.height;
return 0;
}
int
get_windows_area_height(Display *disp, Statusbar statusbar)
{
if(statusbar.position == BarTop || statusbar.position == BarBot)
return DisplayHeight(disp, DefaultScreen(disp)) - statusbar.height;
return DisplayHeight(disp, DefaultScreen(disp));
}
int
get_windows_area_width(Display *disp,
Statusbar statusbar __attribute__ ((unused)))
{
return DisplayWidth(disp, DefaultScreen(disp));
}
2007-09-05 20:15:00 +02:00
/* 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;
2007-09-13 15:57:35 +02:00
int r, xfd, e_dummy;
2007-09-05 20:15:00 +02:00
fd_set rd;
XEvent ev;
Display * dpy;
awesome_config *awesomeconf;
2007-09-13 16:00:03 +02:00
int shape_event, randr_event_base;
2007-09-16 00:36:56 +02:00
int screen;
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);
XSetErrorHandler(xerrorstart);
/* this causes an error if some other window manager is running */
2007-09-16 00:36:56 +02:00
for(screen = 0; screen < ScreenCount(dpy); screen++)
XSelectInput(dpy, RootWindow(dpy, screen), SubstructureRedirectMask);
2007-09-05 20:15:00 +02:00
2007-09-05 20:15:00 +02:00
XSync(dpy, False);
XSetErrorHandler(NULL);
xerrorxlib = XSetErrorHandler(xerror);
XSync(dpy, False);
awesomeconf = p_new(awesome_config, ScreenCount(dpy));
dc = p_new(DC, ScreenCount(dpy));
for(screen = 0; screen < ScreenCount(dpy); screen++)
{
parse_config(dpy, screen, &dc[screen], &awesomeconf[screen]);
setup(dpy, screen, &dc[screen], &awesomeconf[screen]);
drawstatusbar(dpy, screen, &dc[screen], &awesomeconf[screen]);
}
2007-09-05 20:15:00 +02:00
2007-09-10 12:06:54 +02:00
void (*handler[LASTEvent]) (XEvent *, awesome_config *) =
{
[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,
2007-09-13 15:57:35 +02:00
[UnmapNotify] = handle_event_unmapnotify,
};
/* check for shape extension */
if((awesomeconf[0].have_shape = XShapeQueryExtension(dpy, &shape_event, &e_dummy)))
2007-09-13 15:57:35 +02:00
handler[shape_event] = handle_event_shape;
/* check for randr extension */
if((awesomeconf[0].have_randr = XRRQueryExtension(dpy, &randr_event_base, &e_dummy)))
2007-09-13 16:00:03 +02:00
handler[randr_event_base + RRScreenChangeNotify] = handle_event_randr_screen_change_notify;
for(screen = 0; screen < ScreenCount(dpy); screen++)
{
awesomeconf[screen].have_shape = awesomeconf[0].have_shape;
awesomeconf[screen].have_randr = awesomeconf[0].have_randr;
scan(dpy, screen, &dc[screen], &awesomeconf[screen]);
}
2007-09-13 15:57:35 +02:00
XSync(dpy, False);
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))
{
switch (r = read(STDIN_FILENO, awesomeconf[0].statustext, sizeof(awesomeconf[0].statustext) - 1))
2007-09-05 20:15:00 +02:00
{
case -1:
strncpy(awesomeconf[0].statustext, strerror(errno), sizeof(awesomeconf[0].statustext) - 1);
awesomeconf[0].statustext[sizeof(awesomeconf[0].statustext) - 1] = '\0';
2007-09-05 20:15:00 +02:00
readin = False;
break;
case 0:
strncpy(awesomeconf[0].statustext, "EOF", 4);
2007-09-05 20:15:00 +02:00
readin = False;
break;
default:
for(awesomeconf[0].statustext[r] = '\0', p = awesomeconf[0].statustext + a_strlen(awesomeconf[0].statustext) - 1;
p >= awesomeconf[0].statustext && *p == '\n'; *p-- = '\0');
for(; p >= awesomeconf[0].statustext && *p != '\n'; --p);
if(p > awesomeconf[0].statustext)
strncpy(awesomeconf[0].statustext, p + 1, sizeof(awesomeconf[0].statustext));
2007-09-05 20:15:00 +02:00
}
drawstatusbar(dpy, 0, &dc[0], &awesomeconf[0]);
2007-09-05 20:15:00 +02:00
}
while(XPending(dpy))
{
XNextEvent(dpy, &ev);
if(handler[ev.type])
2007-09-16 13:52:38 +02:00
handler[ev.type](&ev, awesomeconf); /* call handler */
2007-09-05 20:15:00 +02:00
}
}
cleanup(dpy, dc, awesomeconf);
2007-09-05 20:15:00 +02:00
XCloseDisplay(dpy);
return 0;
}