about summary refs log tree commit diff stats
path: root/main.c
Commit message (Collapse)AuthorAgeFilesLines
...
* implemented nmaster appearance in mode label (using %u)Anselm R. Garbe2007-01-081-2/+3
|
* experimental version which allows master clients being increased/decreasedAnselm R. Garbe2007-01-051-1/+2
|
* changed arg's color schemearg@mig292007-01-021-3/+3
|
* correctionsarg@mig292007-01-021-2/+2
|
* next version will contain updated copyright noticearg@mig292007-01-021-2/+2
|
* fixed cleanup, using clients instead of sel 2.8arg@mig292007-01-021-3/+3
|
* with this patch everything works fine for mearg@mig292006-12-071-0/+2
|
* improved the memory leak preventionarg@mig292006-12-061-1/+4
|
* applied Jukka's patch preventing some cornercases and making the EOF error ↵arg@mig292006-11-271-1/+2
| | | | message correct
* applied yet another proposal of Manuelarg@mig292006-11-261-2/+2
|
* applied Jukka's sizeof K&R compliance patch, applied Manuels' last-line ↵arg@mig292006-11-261-6/+8
| | | | printage proposal for stdin reading.
* applied Jukka's stdinread patcharg@mig292006-11-261-2/+3
|
* applied Manuels patch (thanks to Manuel!)arg@mig292006-11-251-14/+21
|
* applied Gottox patchesarg@mig292006-11-211-2/+3
|
* applied Gottox' windowarea patcharg@mig292006-11-161-1/+6
|
* code polishing, removed unnecessary newlinesAnselm R. Garbe2006-10-061-21/+9
|
* removed the stack position stuffAnselm R. Garbe2006-10-051-4/+1
|
* keep master ratio on resizecol -> arrangeAnselm R. Garbe2006-10-051-3/+3
|
* added symbols for different modesAnselm R. Garbe2006-09-291-2/+5
|
* removed useless updatemasterAnselm R. Garbe2006-09-291-1/+1
|
* added the new dotile as described on mlAnselm R. Garbe2006-09-291-1/+1
|
* first step to a more flexible dotile() algorithmAnselm R. Garbe2006-09-291-2/+2
|
* applied Jukkas patcharg@mmvi2006-09-251-3/+3
|
* implemented the maximization as I described on the mailinglist, this feels ↵arg@mmvi2006-09-221-1/+0
| | | | better to me.
* removed a bunch of lines through making function signatures more consistent ↵Anselm R. Garbe2006-09-121-19/+11
| | | | with my style ( { does not belong to a new line, if function args are single-lined)
* applied Christof Musik's multihead patch for a pathologic cornercaseAnselm R. Garbe2006-09-121-1/+2
|
* fixed some other comments, now also the code side seems to be at a level to ↵Anselm R. Garbe2006-09-111-2/+2
| | | | be reviewed by experienced programmers
* using a global stack for focus recovery on arrange() - seems to work greatAnselm R. Garbe2006-09-071-0/+1
|
* small fixAnselm R. Garbe2006-09-061-0/+1
|
* applied Sanders max_and_focus.patchAnselm R. Garbe2006-09-041-0/+1
|
* trying a different configurationAnselm R. Garbe2006-08-251-3/+3
|
* fixed typoAnselm R. Garbe2006-08-251-1/+1
|
* removed a bunch of lines, made mode symbols configurableAnselm R. Garbe2006-08-251-1/+1
|
* new color stuff/new rendering stuffAnselm R. Garbe2006-08-251-5/+9
|
* back to 3 colorsAnselm R. Garbe2006-08-251-4/+3
|
* 3->4 colorsAnselm R. Garbe2006-08-241-3/+4
|
* changing tag indicator through underlineAnselm R. Garbe2006-08-241-0/+1
|
* removed a blank lineAnselm R. Garbe2006-08-231-1/+0
|
* separated setup stuff into main.c:setup() - this makes main() more readableAnselm R. Garbe2006-08-231-86/+95
|
* rearranged getprotoAnselm R. Garbe2006-08-221-6/+5
|
* removed winprop (merged into getproto)Anselm R. Garbe2006-08-221-27/+7
|
* removed DEFTAGAnselm R. Garbe2006-08-221-1/+1
|
* small renamings of two static functionsAnselm R.Garbe2006-08-211-2/+2
|
* small changes to dwm.1, rearranged order within main event loopAnselm R.Garbe2006-08-211-4/+4
|
* corrected order of cleanup code Anselm R.Garbe2006-08-161-1/+1
|
* we close stdin as wellAnselm R.Garbe2006-08-161-3/+4
|
* extended cleanupAnselm R.Garbe2006-08-151-0/+7
|
* applied jk_to_tab patchAnselm R.Garbe2006-08-151-2/+1
|
* changed main event loopAnselm R.Garbe2006-08-151-10/+7
|
* removed NUMLOCKMASK, added dynamically calculated numlockmask insteadAnselm R.Garbe2006-08-141-7/+19
|
{ int ocx, ocy; int nw, nh; Corner sticky; XEvent ev; ocx = c->x; ocy = c->y; if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync, None, cursor[CurResize], CurrentTime) != GrabSuccess) return; XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w, c->h); for(;;) { XMaskEvent(dpy, MOUSEMASK | ExposureMask, &ev); switch(ev.type) { default: break; case Expose: handler[Expose](&ev); break; case MotionNotify: XSync(dpy, False); if((nw = abs(ocx - ev.xmotion.x))) c->w = abs(ocx - ev.xmotion.x); if((nh = abs(ocy - ev.xmotion.y))) c->h = abs(ocy - ev.xmotion.y); c->x = (ocx <= ev.xmotion.x) ? ocx : ocx - c->w; c->y = (ocy <= ev.xmotion.y) ? ocy : ocy - c->h; if(ocx <= ev.xmotion.x) sticky = (ocy <= ev.xmotion.y) ? TopLeft : BotLeft; else sticky = (ocy <= ev.xmotion.y) ? TopRight : BotRight; resize(c, True, sticky); break; case ButtonRelease: XUngrabPointer(dpy, CurrentTime); return; } } } static void buttonpress(XEvent *e) { int x; Arg a; Client *c; XButtonPressedEvent *ev = &e->xbutton; if(barwin == ev->window) { x = 0; for(a.i = 0; a.i < ntags; a.i++) { x += textw(tags[a.i]); if(ev->x < x) { if(ev->button == Button1) { if(ev->state & MODKEY) tag(&a); else view(&a); } else if(ev->button == Button3) { if(ev->state & MODKEY) toggletag(&a); else toggleview(&a); } return; } } if(ev->x < x + bmw) { if(ev->button == Button1) togglemode(NULL); } } else if((c = getclient(ev->window))) { focus(c); if(maximized || CLEANMASK(ev->state) != MODKEY) return; if(ev->button == Button1 && (arrange == dofloat || c->isfloat)) { restack(c); movemouse(c); } else if(ev->button == Button2) zoom(NULL); else if(ev->button == Button3 && (arrange == dofloat || c->isfloat)) { restack(c); resizemouse(c); } } } static void synconfig(Client *c, int x, int y, int w, int h, unsigned int border) { XEvent synev; synev.type = ConfigureNotify; synev.xconfigure.display = dpy; synev.xconfigure.event = c->win; synev.xconfigure.window = c->win; synev.xconfigure.x = x; synev.xconfigure.y = y; synev.xconfigure.width = w; synev.xconfigure.height = h; synev.xconfigure.border_width = border; synev.xconfigure.above = None; XSendEvent(dpy, c->win, True, NoEventMask, &synev); } static void configurerequest(XEvent *e) { unsigned long newmask; Client *c; XConfigureRequestEvent *ev = &e->xconfigurerequest; XWindowChanges wc; if((c = getclient(ev->window))) { if((c == sel) && !c->isfloat && (arrange != dofloat) && maximized) { synconfig(c, sx, sy + bh, sw - 2, sh - 2 - bh, ev->border_width); XSync(dpy, False); return; } gravitate(c, True); if(ev->value_mask & CWX) c->x = ev->x; if(ev->value_mask & CWY) c->y = ev->y; if(ev->value_mask & CWWidth) c->w = ev->width; if(ev->value_mask & CWHeight) c->h = ev->height; if(ev->value_mask & CWBorderWidth) c->border = ev->border_width; gravitate(c, False); wc.x = c->x; wc.y = c->y; wc.width = c->w; wc.height = c->h; newmask = ev->value_mask & (~(CWSibling | CWStackMode | CWBorderWidth)); if(newmask) XConfigureWindow(dpy, c->win, newmask, &wc); else synconfig(c, c->x, c->y, c->w, c->h, c->border); XSync(dpy, False); if(c->isfloat) resize(c, False, TopLeft); else arrange(NULL); } else { wc.x = ev->x; wc.y = ev->y; wc.width = ev->width; wc.height = ev->height; wc.border_width = ev->border_width; wc.sibling = ev->above; wc.stack_mode = ev->detail; XConfigureWindow(dpy, ev->window, ev->value_mask, &wc); XSync(dpy, False); } } static void destroynotify(XEvent *e) { Client *c; XDestroyWindowEvent *ev = &e->xdestroywindow; if((c = getclient(ev->window))) unmanage(c); } static void enternotify(XEvent *e) { Client *c; XCrossingEvent *ev = &e->xcrossing; if(ev->mode != NotifyNormal || ev->detail == NotifyInferior) return; if((c = getclient(ev->window)) || (c = getctitle(ev->window))) focus(c); else if(ev->window == root) { issel = True; XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime); drawall(); } } static void expose(XEvent *e) { Client *c; XExposeEvent *ev = &e->xexpose; if(ev->count == 0) { if(barwin == ev->window) drawstatus(); else if((c = getctitle(ev->window))) drawtitle(c); } } static void keypress(XEvent *e) { static unsigned int len = sizeof(key) / sizeof(key[0]); unsigned int i; KeySym keysym; XKeyEvent *ev = &e->xkey; keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0); for(i = 0; i < len; i++) { if(keysym == key[i].keysym && CLEANMASK(key[i].mod) == CLEANMASK(ev->state)) { if(key[i].func) key[i].func(&key[i].arg); return; } } } static void leavenotify(XEvent *e) { XCrossingEvent *ev = &e->xcrossing; if((ev->window == root) && !ev->same_screen) { issel = False; drawall(); } } static void mappingnotify(XEvent *e) { XMappingEvent *ev = &e->xmapping; XRefreshKeyboardMapping(ev); if(ev->request == MappingKeyboard) grabkeys(); } static void maprequest(XEvent *e) { static XWindowAttributes wa; XMapRequestEvent *ev = &e->xmaprequest; if(!XGetWindowAttributes(dpy, ev->window, &wa)) return; if(wa.override_redirect) { XSelectInput(dpy, ev->window, (StructureNotifyMask | PropertyChangeMask)); return; } if(!getclient(ev->window)) manage(ev->window, &wa); } static void propertynotify(XEvent *e) { Client *c; Window trans; XPropertyEvent *ev = &e->xproperty; if(ev->state == PropertyDelete) return; /* ignore */ if((c = getclient(ev->window))) { if(ev->atom == wmatom[WMProtocols]) { c->proto = getproto(c->win); return; } switch (ev->atom) { default: break; case XA_WM_TRANSIENT_FOR: XGetTransientForHint(dpy, c->win, &trans); if(!c->isfloat && (c->isfloat = (trans != 0))) arrange(NULL); break; case XA_WM_NORMAL_HINTS: updatesize(c); break; } if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) { updatetitle(c); drawtitle(c); } } } static void unmapnotify(XEvent *e) { Client *c; XUnmapEvent *ev = &e->xunmap; if((c = getclient(ev->window))) unmanage(c); } /* extern */ void (*handler[LASTEvent]) (XEvent *) = { [ButtonPress] = buttonpress, [ConfigureRequest] = configurerequest, [DestroyNotify] = destroynotify, [EnterNotify] = enternotify, [LeaveNotify] = leavenotify, [Expose] = expose, [KeyPress] = keypress, [MappingNotify] = mappingnotify, [MapRequest] = maprequest, [PropertyNotify] = propertynotify, [UnmapNotify] = unmapnotify }; void grabkeys() { static unsigned int len = sizeof(key) / sizeof(key[0]); unsigned int i; KeyCode code; XUngrabKey(dpy, AnyKey, AnyModifier, root); for(i = 0; i < len; i++) { code = XKeysymToKeycode(dpy, key[i].keysym); XGrabKey(dpy, code, key[i].mod, root, True, GrabModeAsync, GrabModeAsync); XGrabKey(dpy, code, key[i].mod | LockMask, root, True, GrabModeAsync, GrabModeAsync); XGrabKey(dpy, code, key[i].mod | numlockmask, root, True, GrabModeAsync, GrabModeAsync); XGrabKey(dpy, code, key[i].mod | numlockmask | LockMask, root, True, GrabModeAsync, GrabModeAsync); } } void procevent() { XEvent ev; while(XPending(dpy)) { XNextEvent(dpy, &ev); if(handler[ev.type]) (handler[ev.type])(&ev); /* call handler */ } }