src/*.lisp: Use with-xlib-protect macro to prevent a not implemented event x-error
[clfswm.git] / src / clfswm.lisp
blob0529b027a53d6f866f0934de1b2e8d5ce48d099e
1 ;;; --------------------------------------------------------------------------
2 ;;; CLFSWM - FullScreen Window Manager
3 ;;;
4 ;;; --------------------------------------------------------------------------
5 ;;; Documentation: Main functions
6 ;;; --------------------------------------------------------------------------
7 ;;;
8 ;;; (C) 2012 Philippe Brochard <pbrochard@common-lisp.net>
9 ;;;
10 ;;; This program is free software; you can redistribute it and/or modify
11 ;;; it under the terms of the GNU General Public License as published by
12 ;;; the Free Software Foundation; either version 3 of the License, or
13 ;;; (at your option) any later version.
14 ;;;
15 ;;; This program is distributed in the hope that it will be useful,
16 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;;; GNU General Public License for more details.
19 ;;;
20 ;;; You should have received a copy of the GNU General Public License
21 ;;; along with this program; if not, write to the Free Software
22 ;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 ;;;
24 ;;; --------------------------------------------------------------------------
26 (in-package :clfswm)
29 (define-handler main-mode :key-press (code state)
30 (funcall-key-from-code *main-keys* code state))
32 (define-handler main-mode :button-press (code state window root-x root-y)
33 (unless (funcall-button-from-code *main-mouse* code state window root-x root-y *fun-press*)
34 (replay-button-event)))
36 (define-handler main-mode :button-release (code state window root-x root-y)
37 (unless (funcall-button-from-code *main-mouse* code state window root-x root-y *fun-release*)
38 (replay-button-event)))
40 (define-handler main-mode :motion-notify (window root-x root-y)
41 (unless (compress-motion-notify)
42 (funcall-button-from-code *main-mouse* 'motion
43 (modifiers->state *default-modifiers*)
44 window root-x root-y *fun-press*)))
46 (define-handler main-mode :configure-request (stack-mode window x y width height border-width value-mask)
47 (labels ((has-x (mask) (= 1 (logand mask 1)))
48 (has-y (mask) (= 2 (logand mask 2)))
49 (has-w (mask) (= 4 (logand mask 4)))
50 (has-h (mask) (= 8 (logand mask 8)))
51 (has-bw (mask) (= 16 (logand mask 16)))
52 (has-stackmode (mask) (= 64 (logand mask 64)))
53 (adjust-from-request ()
54 (when (has-x value-mask) (setf (x-drawable-x window) x))
55 (when (has-y value-mask) (setf (x-drawable-y window) y))
56 (when (has-h value-mask) (setf (x-drawable-height window) height))
57 (when (has-w value-mask) (setf (x-drawable-width window) width))))
58 (xlib:with-state (window)
59 (when (has-bw value-mask)
60 (setf (x-drawable-border-width window) border-width))
61 (let ((current-root (find-current-root)))
62 (if (find-child window current-root)
63 (let ((parent (find-parent-frame window current-root)))
64 (if (and parent (managed-window-p window parent))
65 (adapt-child-to-parent window parent)
66 (adjust-from-request)))
67 (adjust-from-request)))
68 (send-configuration-notify window (x-drawable-x window) (x-drawable-y window)
69 (x-drawable-width window) (x-drawable-height window)
70 (x-drawable-border-width window))
71 (when (has-stackmode value-mask)
72 (case stack-mode
73 (:above
74 (unless (null-size-window-p window)
75 (when (or (child-equal-p window (current-child))
76 (is-in-current-child-p window))
77 (raise-window window)
78 (focus-window window)
79 (focus-all-children window (find-parent-frame window (find-current-root)))))))))))
82 (define-handler main-mode :map-request (window send-event-p)
83 (unless send-event-p
84 (unhide-window window)
85 (process-new-window window)
86 (map-window window)
87 (unless (null-size-window-p window)
88 (multiple-value-bind (never-managed raise)
89 (never-managed-window-p window)
90 (unless (and never-managed raise)
91 (show-all-children))))))
94 (define-handler main-mode :unmap-notify (send-event-p event-window window)
95 (unless (and (not send-event-p)
96 (not (xlib:window-equal window event-window)))
97 (when (find-child window *root-frame*)
98 (clean-windows-in-all-frames)
99 (show-all-children)
100 (delete-child-in-all-frames window)
101 (show-all-children))))
104 (define-handler main-mode :destroy-notify (send-event-p event-window window)
105 (unless (or send-event-p
106 (xlib:window-equal window event-window))
107 (when (find-child window *root-frame*)
108 (clean-windows-in-all-frames)
109 (show-all-children)
110 (delete-child-in-all-frames window)
111 (show-all-children))))
113 (define-handler main-mode :enter-notify (window root-x root-y)
114 (unless (and (> root-x (- (xlib:screen-width *screen*) 3))
115 (> root-y (- (xlib:screen-height *screen*) 3)))
116 (case (if (frame-p (current-child))
117 (frame-focus-policy (current-child))
118 *default-focus-policy*)
119 (:sloppy (focus-window window))
120 (:sloppy-strict (when (and (frame-p (current-child))
121 (child-member window (frame-child (current-child))))
122 (focus-window window)))
123 (:sloppy-select (let* ((child (find-child-under-mouse root-x root-y))
124 (parent (find-parent-frame child)))
125 (unless (or (child-root-p child)
126 (equal (typecase child
127 (xlib:window parent)
128 (t child))
129 (current-child)))
130 (focus-all-children child parent)
131 (show-all-children)))))))
133 (define-handler main-mode :exposure (window)
134 (awhen (find-frame-window window)
135 (display-frame-info it)))
137 (define-handler main-mode :resize-request (window)
138 (dbg :resize-request window))
141 (defun error-handler (display error-key &rest key-vals &key asynchronous &allow-other-keys)
142 "Handle X errors"
143 (cond
144 ;; ignore asynchronous window errors
145 ((and asynchronous
146 (find error-key '(xlib:window-error xlib:drawable-error xlib:match-error)))
147 (format t "Ignoring XLib asynchronous error: ~s~%" error-key))
148 ((eq error-key 'xlib:access-error)
149 (write-line "Another window manager is running.")
150 (throw 'exit-clfswm nil))
151 ;; all other asynchronous errors are printed.
152 (asynchronous
153 (format t "Caught Asynchronous X Error: ~s ~s" error-key key-vals))
155 (apply 'error error-key :display display :error-key error-key key-vals))))
158 (defun main-loop ()
159 (loop
160 (with-xlib-protect (:main-loop nil)
161 (call-hook *loop-hook*)
162 (process-timers)
163 ;;(with-xlib-protect ()
164 (when (xlib:event-listen *display* *loop-timeout*)
165 (xlib:process-event *display* :handler #'handle-event))
166 (xlib:display-finish-output *display*))))
170 (defun open-display (display-str protocol)
171 (multiple-value-bind (host display-num) (parse-display-string display-str)
172 (setf *display* (xlib:open-display host :display display-num :protocol protocol)
173 (xlib:display-error-handler *display*) 'error-handler
174 (getenv "DISPLAY") display-str)))
178 (defun default-init-hook ()
179 (let ((frame (add-frame (create-frame :name "Default"
180 :layout nil :x 0.05 :y 0.05
181 :w 0.9 :h 0.9)
182 *root-frame*)))
183 (setf (current-child) frame)))
186 (defun init-display ()
187 (reset-root-list)
188 (reset-bind-or-jump-slots)
189 (reset-open-menu)
190 (fill-handle-event-fun-symbols)
191 (assoc-keyword-handle-event 'main-mode)
192 (setf *screen* (first (xlib:display-roots *display*))
193 *root* (xlib:screen-root *screen*)
194 *no-focus-window* (xlib:create-window :parent *root* :x 0 :y 0 :width 1 :height 1)
195 *default-font* (xlib:open-font *display* *default-font-string*)
196 *pixmap-buffer* (xlib:create-pixmap :width (xlib:screen-width *screen*)
197 :height (xlib:screen-height *screen*)
198 :depth (xlib:screen-root-depth *screen*)
199 :drawable *root*)
200 *in-second-mode* nil)
201 (store-root-background)
202 (init-modifier-list)
203 (xgrab-init-pointer)
204 (xgrab-init-keyboard)
205 (init-last-child)
206 (call-hook *binding-hook*)
207 (clear-timers)
208 (map-window *no-focus-window*)
209 (dbg *display*)
210 (setf (xlib:window-event-mask *root*) (xlib:make-event-mask :substructure-redirect
211 :substructure-notify
212 :property-change
213 :resize-redirect
214 :exposure
215 :button-press
216 :button-release
217 :pointer-motion))
218 ;;(intern-atoms *display*)
219 (netwm-set-properties)
220 (xlib:display-force-output *display*)
221 (setf *child-selection* nil)
222 (setf *root-frame* (create-frame :name "Root" :number 0)
223 (current-child) *root-frame*)
224 (call-hook *init-hook*)
225 (unsure-at-least-one-root)
226 (process-existing-windows *screen*)
227 (show-all-children)
228 (grab-main-keys)
229 (xlib:display-finish-output *display*)
230 (optimize-event-hook))
235 (defun read-conf-file ()
236 (let* ((conf (conf-file-name)))
237 (if conf
238 (handler-case (load conf)
239 (error (c)
240 (format t "~2%*** Error loading configuration file: ~A ***~&~A~%" conf c)
241 (values nil (format nil "~s" c) conf))
242 (:no-error (&rest args)
243 (declare (ignore args))
244 (values t nil conf)))
245 (values t nil nil))))
252 (defun exit-clfswm ()
253 "Exit clfswm"
254 (throw 'exit-clfswm nil))
256 (defun reset-clfswm ()
257 "Reset clfswm"
258 (throw 'exit-main-loop nil))
263 (defun main-unprotected (&key (display (or (getenv "DISPLAY") ":0")) protocol
264 (base-dir (asdf:system-source-directory :clfswm))
265 (read-conf-file-p t) (alternate-conf nil)
266 error-msg)
267 (setf *contrib-dir* (merge-pathnames "contrib/" base-dir))
268 (conf-file-name alternate-conf)
269 (when read-conf-file-p
270 (read-conf-file))
271 (create-configuration-menu :clear t)
272 (call-hook *main-entrance-hook*)
273 (handler-case
274 (open-display display protocol)
275 (xlib:access-error (c)
276 (format t "~&~A~&Maybe another window manager is running. [1]~%" c)
277 (force-output)
278 (exit-clfswm)))
279 (handler-case
280 (init-display)
281 (xlib:access-error (c)
282 (ungrab-main-keys)
283 (xlib:destroy-window *no-focus-window*)
284 (xlib:close-display *display*)
285 (format t "~&~A~&Maybe another window manager is running. [2]~%" c)
286 (force-output)
287 (exit-clfswm)))
288 (when error-msg
289 (info-mode error-msg))
290 (catch 'exit-main-loop
291 (unwind-protect
292 (main-loop)
293 (progn
294 (ungrab-main-keys)
295 (xlib:destroy-window *no-focus-window*)
296 (xlib:free-pixmap *pixmap-buffer*)
297 (destroy-all-frames-window)
298 (call-hook *close-hook*)
299 (clear-event-hooks)
300 (xlib:close-display *display*)
301 #+:event-debug
302 (format t "~2&Unhandled events: ~A~%" *unhandled-events*)))))
306 (defun main (&key (display (or (getenv "DISPLAY") ":0")) protocol
307 (base-dir (asdf:system-source-directory :clfswm))
308 (read-conf-file-p t)
309 (alternate-conf nil))
310 (let (error-msg)
311 (catch 'exit-clfswm
312 (loop
313 (handler-case
314 (if *other-window-manager*
315 (run-other-window-manager)
316 (main-unprotected :display display :protocol protocol :base-dir base-dir
317 :read-conf-file-p read-conf-file-p
318 :alternate-conf alternate-conf
319 :error-msg error-msg))
320 (error (c)
321 (let ((msg (format nil "CLFSWM Error: ~A." c)))
322 (format t "~&~A~%Reinitializing...~%" msg)
323 (setf error-msg (list (list msg *info-color-title*)
324 "Reinitializing...")))))))))