about summary refs log tree commit diff stats
path: root/client.c
Commit message (Expand)AuthorAgeFilesLines
* added configure(), but this doesn't really fix those frking broken SDL appsarg@mmvi2006-09-261-0/+18
* fixed issue pointed out by Jukkaarg@mmvi2006-09-221-4/+0
* implemented the maximization as I described on the mailinglist, this feels be...arg@mmvi2006-09-221-37/+4
* reviewed client.carg@mmvi2006-09-201-0/+1
* offscreen client appearance fixesarg@mmvi2006-09-151-0/+10
* focus() enforces visibility of a client if not NULLarg@mmvi2006-09-151-1/+1
* removed a bunch of lines through making function signatures more consistent w...Anselm R. Garbe2006-09-121-34/+16
* small change to comments, renamed two set* functions in client.c into update*Anselm R. Garbe2006-09-111-4/+4
* added some commentsAnselm R. Garbe2006-09-111-3/+3
* applied sanders patch of not manipulating sel 1.5Anselm R. Garbe2006-09-081-2/+4
* hotfixAnselm R. Garbe2006-09-071-1/+1
* simplified unmanageAnselm R. Garbe2006-09-071-8/+2
* using a global stack for focus recovery on arrange() - seems to work greatAnselm R. Garbe2006-09-071-2/+14
* no this is betterAnselm R. Garbe2006-09-061-7/+0
* does this preserve z order for anthony?Anselm R. Garbe2006-09-061-2/+7
* maybe this might workAnselm R. Garbe2006-09-061-0/+2
* sanders solution is convincing and elegantAnselm R. Garbe2006-09-061-8/+0
* seems to preserve floating client z-layer order (even with reorder() calls)Anselm R. Garbe2006-09-061-0/+8
* moved transient_for tag inheritance to settagsAnselm R. Garbe2006-09-061-6/+2
* no, reodering floating clients definately breaks the manage() policy which at...Anselm R. Garbe2006-09-061-2/+0
* no, ordering floating clients at the end seems betterAnselm R. Garbe2006-09-051-0/+2
* simplified manageAnselm R. Garbe2006-09-041-5/+2
* hotfixing with sanders hintAnselm R. Garbe2006-09-041-1/+3
* fixing the issue ss="s">"NotFoundError": 8u16, "NotSupportedError": 9u16, "InUseAttributeError": 10u16, "InvalidStateError": 11u16, "SyntaxError": 12u16, "InvalidModificationError": 13u16, "NamespaceError": 14u16, "InvalidAccessError": 15u16, "TypeMismatchError": 17u16, "SecurityError": 18u16, "NetworkError": 19u16, "AbortError": 20u16, "URLMismatchError": 21u16, "QuotaExceededError": 22u16, "TimeoutError": 23u16, "InvalidNodeTypeError": 24u16, "DataCloneError": 25u16 } type DOMException* = ref object of JSError name* {.jsget.}: string code {.jsget.}: uint16 DOMResult*[T] = Result[T, DOMException] jsDestructor(DOMException) proc newDOMException*(message = ""; name = "Error"): DOMException {.jsctor.} = let ex = DOMException(e: jeDOMException, name: name, message: message) for it in NamesTable: if it[0] == name: ex.code = it[1] break return ex template errDOMException*(message, name: string): untyped = err(newDOMException(message, name)) func message0(this: DOMException): string {.jsfget: "message".} = return this.message proc addDOMExceptionModule*(ctx: JSContext) = ctx.registerType(DOMException, JS_CLASS_ERROR, errid = opt(jeDOMException)) href='/acidbong/suckless/dwm/commit/client.c?h=5.7.2&id=2c0d1cc87bf084ed3f1cdb4be881fb4f64f5773a'>fixed a core dumpAnselm R.Garbe2006-08-141-1/+0
* implemented restack behavior (floats are on top in tiled mode)Anselm R.Garbe2006-08-141-18/+8
* implement multi-tag selection through button3 click on the specific tagAnselm R.Garbe2006-08-111-2/+2
* applied Sander's patch as wellAnselm R.Garbe2006-08-111-2/+1
* simplified unmanageAnselm R.Garbe2006-08-111-7/+2