src/clfswm.lisp (main-unprotected): Add a close hook. And close the notify window...
[clfswm.git] / src / clfswm-corner.lisp
blob4f346f0434a0dd3e6d6f9434f2db3beb6907cfbc
1 ;;; --------------------------------------------------------------------------
2 ;;; CLFSWM - FullScreen Window Manager
3 ;;;
4 ;;; --------------------------------------------------------------------------
5 ;;; Documentation: Corner functions
6 ;;; --------------------------------------------------------------------------
7 ;;;
8 ;;; (C) 2010 Philippe Brochard <hocwp@free.fr>
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)
30 (symbol-macrolet ((sw (xlib:screen-width *screen*))
31 (sh (xlib:screen-height *screen*))
32 (cs *corner-size*))
33 (defun in-corner (corner x y)
34 "Return t if (x, y) is in corner.
35 Corner is one of :bottom-right :bottom-left :top-right :top-left"
36 (multiple-value-bind (xmin ymin xmax ymax)
37 (case corner
38 (:bottom-right (values (- sw cs) (- sh cs) sw sh))
39 (:bottom-left (values 0 (- sh cs) cs sh))
40 (:top-left (values 0 0 cs cs))
41 (:top-right (values (- sw cs) 0 sw cs))
42 (t (values 10 10 0 0)))
43 (and (<= xmin x xmax)
44 (<= ymin y ymax)))))
47 (symbol-macrolet ((sw (xlib:screen-width *screen*))
48 (sh (xlib:screen-height *screen*))
49 (cs *corner-size*))
50 (defun find-corner (x y)
51 (cond ((and (< cs x (- sw cs)) (< cs y (- sh cs))) nil)
52 ((and (<= 0 x cs) (<= 0 y cs)) :top-left)
53 ((and (<= (- sw cs) x sw) (<= 0 y cs)) :top-right)
54 ((and (<= 0 x cs) (<= (- sh cs) y sh)) :bottom-left)
55 ((and (<= (- sw cs) x sw) (<= (- sh cs) y sh)) :bottom-right)
56 (t nil))))
61 (defun do-corner-action (x y corner-list)
62 (when (frame-p *current-root*)
63 (let ((corner (find-corner x y)))
64 (when corner
65 (let ((fun (second (assoc corner corner-list))))
66 (when fun
67 (funcall fun)))))))
73 ;;;***************************************;;;
74 ;;; CONFIG - Corner actions definitions: ;;;
75 ;;;***************************************;;;
76 (defun find-window-in-query-tree (target-win)
77 (dolist (win (xlib:query-tree *root*))
78 (when (child-equal-p win target-win)
79 (return t))))
81 (defun wait-window-in-query-tree (wait-test)
82 (loop
83 (dolist (win (xlib:query-tree *root*))
84 (when (funcall wait-test win)
85 (return-from wait-window-in-query-tree win)))))
88 (defun generic-present-body (cmd wait-test win &optional focus-p)
89 (stop-button-event)
90 (unless (find-window-in-query-tree win)
91 (do-shell cmd)
92 (setf win (wait-window-in-query-tree wait-test))
93 (grab-all-buttons win)
94 (hide-window win))
95 (cond ((window-hidden-p win)
96 (unhide-window win)
97 (when focus-p
98 (focus-window win))
99 (raise-window win))
100 (t (hide-window win)
101 (show-all-children nil)))
102 win)
106 (let (win)
107 (defun close-virtual-keyboard ()
108 (when win
109 (xlib:destroy-window win)
110 (xlib:display-finish-output *display*)
111 (setf win nil)))
112 (defun present-virtual-keyboard ()
113 "Present a virtual keyboard"
114 (setf win (generic-present-body *virtual-keyboard-cmd*
115 (lambda (win)
116 (string-equal (xlib:get-wm-class win) "xvkbd"))
117 win))
121 (let (win)
122 (defun equal-clfswm-terminal-id (window)
123 (when win
124 (equal (xlib:window-id window) (xlib:window-id win))))
125 (defun close-clfswm-terminal ()
126 (when win
127 (xlib:destroy-window win)
128 (xlib:display-finish-output *display*)
129 (setf win nil)))
130 (defun present-clfswm-terminal ()
131 "Hide/Unhide a terminal"
132 (setf win (generic-present-body *clfswm-terminal-cmd*
133 (lambda (win)
134 (string-equal (xlib:wm-name win) *clfswm-terminal-name*))