clearified client creation process

This commit is contained in:
frese 2003-04-22 15:43:57 +00:00
parent d158788001
commit de88cf5fb6
3 changed files with 38 additions and 18 deletions

View File

@ -43,6 +43,15 @@
((deinit-client) ((deinit-client)
(deinit-client wm (second msg))) (deinit-client wm (second msg)))
((configure-window)
(let ((window (second msg))
(changes (third msg)))
;; TODO: exact sizes ?!
(configure-window dpy window
(append (make-window-change-alist
(border-width 0))
changes))))
((draw-client-window) ((draw-client-window)
(draw-client-window wm (second msg) gc)) (draw-client-window wm (second msg) gc))
((fit-client) ((fit-client)
@ -57,8 +66,7 @@
(let* ((client (second msg)) (let* ((client (second msg))
(dpy (wm:dpy wm)) (dpy (wm:dpy wm))
(window (client:window client)) (window (client:window client))
(state (if (and (window-exists? dpy window) (state (if (window-contains-focus? dpy window)
(window-contains-focus? dpy window))
'focused 'focused
'normal)) 'normal))
(titlebar (car (client:data client))) (titlebar (car (client:data client)))
@ -71,7 +79,6 @@
(define (init-client wm client maybe-rect) (define (init-client wm client maybe-rect)
(let ((dpy (wm:dpy wm))) (let ((dpy (wm:dpy wm)))
(set-window-border-width! dpy (client:window client) 0)
(let* ((r (initial-client-rect wm (client:window client) maybe-rect)) (let* ((r (initial-client-rect wm (client:window client) maybe-rect))
(channel (make-channel)) (channel (make-channel))
(titlebar (create-client-titlebar channel wm client)) (titlebar (create-client-titlebar channel wm client))

View File

@ -121,13 +121,17 @@
(set-wm-state! (root-wm:dpy root-wm) window (wm-state normal) none) (set-wm-state! (root-wm:dpy root-wm) window (wm-state normal) none)
(wm-manage-window (root-wm:current-manager root-wm) window)) (wm-manage-window (root-wm:current-manager root-wm) window))
(define (root-wm-configure-window root-wm window changes)
(wm-configure-window (root-wm:current-manager root-wm) window changes))
(define (handle-xevent root-wm exit xevent) (define (handle-xevent root-wm exit xevent)
(let ((type (any-event-type xevent)) (let ((type (any-event-type xevent))
(dpy (root-wm:dpy root-wm))) (dpy (root-wm:dpy root-wm)))
(cond (cond
((configure-request-event? xevent) ((configure-request-event? xevent)
;; TODO: maybe let it configure by the future manager... (root-wm-configure-window
(configure-window dpy (configure-request-event-window xevent) root-wm
(configure-request-event-window xevent)
(configure-request-event-window-change-alist xevent))) (configure-request-event-window-change-alist xevent)))
((map-request-event? xevent) ((map-request-event? xevent)
(root-wm-manage-window root-wm (map-request-event-window xevent))) (root-wm-manage-window root-wm (map-request-event-window xevent)))

View File

@ -61,6 +61,15 @@
((deinit-client) ((deinit-client)
(deinit-client wm data (second msg))) (deinit-client wm data (second msg)))
((configure-window)
(let ((window (second msg))
(changes (third msg)))
;; TODO: exact sizes ?!
(configure-window dpy window
(append (make-window-change-alist
(border-width 0))
changes))))
((draw-client-window) #f) ((draw-client-window) #f)
((fit-client) ((fit-client)
@ -80,8 +89,9 @@
((update-client-state) ((update-client-state)
(let* ((client (second msg)) (let* ((client (second msg))
(dpy (wm:dpy wm)) (dpy (wm:dpy wm))
(window (client:window client)) (window (client:window client)))
(state (if (window-contains-focus? dpy window) (if (window-exists? dpy (client:window client))
(let ((state (if (window-contains-focus? dpy window)
'focused 'focused
(if (window-viewable? dpy window) (if (window-viewable? dpy window)
'active 'active
@ -89,7 +99,7 @@
(titlebar (assq/false client (data:titlebars data))) (titlebar (assq/false client (data:titlebars data)))
(name (client-name dpy client))) (name (client-name dpy client)))
(set-titlebar-state! titlebar state) (set-titlebar-state! titlebar state)
(set-titlebar-title! titlebar name))) (set-titlebar-title! titlebar name)))))
((select-next) (select-next-client wm (second msg))) ((select-next) (select-next-client wm (second msg)))
((select-previous) (select-previous-client wm (second msg))) ((select-previous) (select-previous-client wm (second msg)))
@ -133,7 +143,6 @@
;; TODO: transients! ;; TODO: transients!
(let ((dpy (wm:dpy wm)) (let ((dpy (wm:dpy wm))
(options (wm:options wm))) (options (wm:options wm)))
(set-window-border-width! dpy (client:window client) 0)
(let* ((channel (make-channel)) (let* ((channel (make-channel))
(titlebar (create-client-titlebar channel wm client))) (titlebar (create-client-titlebar channel wm client)))
(set-data:titlebars! data (append (data:titlebars data) (set-data:titlebars! data (append (data:titlebars data)
@ -141,7 +150,7 @@
(fit-titlebars wm data) (fit-titlebars wm data)
(update-titlebars wm data) (update-titlebars wm data)
(fit-client-window wm client) (fit-client-window wm client)
(fit-client wm client) ;;(fit-client wm client)
(install-dragging-control channel dpy (install-dragging-control channel dpy
(titlebar:window titlebar) (titlebar:window titlebar)