src/clfswm-internal.lisp (show-all-children): Hide only children hidden by normal...
[clfswm.git] / src / package.lisp
bloba76a445368cb327be09984b983f2efc62b7f93fb
1 ;;; --------------------------------------------------------------------------
2 ;;; CLFSWM - FullScreen Window Manager
3 ;;;
4 ;;; --------------------------------------------------------------------------
5 ;;; Documentation: Package definition
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 :cl-user)
28 (defpackage clfswm
29 (:use :common-lisp :my-html :tools :version)
30 ;; (:shadow :defun)
31 (:export :main
32 :reload-clfswm
33 :reset-clfswm
34 :exit-clfswm))
37 ;;;;; Uncomment the line below if you want to see all ignored X errors
38 ;;(pushnew :xlib-debug *features*)
40 ;;;;; Uncomment the line below if you want to see all event debug messages
41 ;;(pushnew :event-debug *features*)
43 (in-package :clfswm)
45 ;;; CONFIG - Compress motion notify ?
46 ;; This variable may be useful to speed up some slow version of CLX.
47 ;; It is particulary useful with CLISP/MIT-CLX (and others).
48 (defconfig *have-to-compress-notify* t nil
49 "Compress event notify?
50 This variable may be useful to speed up some slow version of CLX.
51 It is particulary useful with CLISP/MIT-CLX.")
53 (defconfig *transparent-background* t nil
54 "Enable transparent background: one of nil, :pseudo, t (xcompmgr must be started)")
56 (defconfig *default-transparency* 0.8 nil
57 "Default transparency for all windows when in xcompmgr transparency mode")
59 (defconfig *show-root-frame-p* nil nil
60 "Show the root frame information or not")
63 (defconfig *border-size* 1 nil
64 "Windows and frames border size")
68 (defparameter *modifier-alias* '((:alt :mod-1) (:alt-l :mod-1)
69 (:numlock :mod-2)
70 (:super_l :mod-4)
71 (:alt-r :mod-5) (:alt-gr :mod-5)
72 (:capslock :lock))
73 "Syntax: (modifier-alias effective-modifier)")
76 (defparameter *display* nil)
77 (defparameter *screen* nil)
78 (defparameter *root* nil)
79 (defparameter *no-focus-window* nil)
81 (defparameter *background-image* nil)
82 (defparameter *background-gc* nil)
84 (defconfig *loop-timeout* 1 nil
85 "Maximum time (in seconds) to wait before calling *loop-hook*")
87 (defparameter *pixmap-buffer* nil)
89 (defparameter *contrib-dir* "")
91 (defparameter *default-font* nil)
92 ;;(defparameter *default-font-string* "9x15")
93 (defconfig *default-font-string* "fixed" nil
94 "The default font used in clfswm")
96 (defconfig *color-move-window* "DeepPink" 'Main-mode
97 "Color when moving or resizing a windows")
99 (defparameter *child-selection* nil)
101 ;;; CONFIG - Default frame datas
102 (defconfig *default-frame-data*
103 (list '(:tile-size 0.8) '(:tile-space-size 0.1)
104 '(:fast-layout (tile-left-layout tile-layout))
105 '(:main-layout-windows nil))
107 "Default slots set in frame date")
110 ;;; CONFIG - Default managed window type for a frame
111 ;;; type can be :all, :normal, :transient, :maxsize, :desktop, :dock, :toolbar, :menu, :utility, :splash, :dialog
112 (defconfig *default-managed-type* '(:normal) nil
113 "Default managed window types")
114 ;;(defparameter *default-managed-type* '(:normal :maxsize :transient))
115 ;;(defparameter *default-managed-type* '(:normal :transient :maxsize :desktop :dock :toolbar :menu :utility :splash :dialog))
116 ;;(defparameter *default-managed-type* '())
117 ;;(defparameter *default-managed-type* '(:all))
120 ;;; CONFIG - Default focus policy
121 (defconfig *default-focus-policy* :click nil
122 "Default mouse focus policy. One of :click, :sloppy, :sloppy-strict or :sloppy-select.")
124 (defstruct child-rect child parent selected-p x y w h)
126 (defstruct root child original current-child x y w h)
128 (defclass frame ()
129 ((name :initarg :name :accessor frame-name :initform nil)
130 (number :initarg :number :accessor frame-number :initform 0)
131 ;;; Float size between 0 and 1 - Manipulate only this variable and not real size
132 (x :initarg :x :accessor frame-x :initform 0.1)
133 (y :initarg :y :accessor frame-y :initform 0.1)
134 (w :initarg :w :accessor frame-w :initform 0.8)
135 (h :initarg :h :accessor frame-h :initform 0.8)
136 ;;; Real size (integer) in screen size - Don't set directly this variables
137 ;;; they may be recalculated by the layout manager.
138 (rx :initarg :rx :accessor frame-rx :initform 0)
139 (ry :initarg :ry :accessor frame-ry :initform 0)
140 (rw :initarg :rw :accessor frame-rw :initform 800)
141 (rh :initarg :rh :accessor frame-rh :initform 600)
142 ;; (root :initarg :root :accessor frame-root :initform nil
143 ;; :documentation "A list a physical coordinates (x y w h) if frame is a root frame. Nil otherwise")
144 (layout :initarg :layout :accessor frame-layout :initform nil
145 :documentation "Layout to display windows on a frame")
146 (nw-hook :initarg :nw-hook :accessor frame-nw-hook :initform nil
147 :documentation "Hook done by the frame when a new window is mapped")
148 (managed-type :initarg :managed-type :accessor frame-managed-type
149 :initform *default-managed-type*
150 :documentation "Managed window type")
151 (forced-managed-window :initarg :forced-managed-window
152 :accessor frame-forced-managed-window
153 :initform nil
154 :documentation "A list of forced managed windows (wm-name or window)")
155 (forced-unmanaged-window :initarg :forced-unmanaged-window
156 :accessor frame-forced-unmanaged-window
157 :initform nil
158 :documentation "A list of forced unmanaged windows (wm-name or window)")
159 (show-window-p :initarg :show-window-p :accessor frame-show-window-p :initform t)
160 (hidden-children :initarg :hidden-children :accessor frame-hidden-children :initform nil
161 :documentation "A list of hidden children")
162 (selected-pos :initarg :selected-pos :accessor frame-selected-pos :initform 0
163 :documentation "The position in the child list of the selected child")
164 (focus-policy :initarg :focus-ploicy :accessor frame-focus-policy
165 :initform *default-focus-policy*)
166 (window :initarg :window :accessor frame-window :initform nil)
167 (gc :initarg :gc :accessor frame-gc :initform nil)
168 (child :initarg :child :accessor frame-child :initform nil)
169 (data :initarg :data :accessor frame-data
170 :initform *default-frame-data*
171 :documentation "An assoc list to store additional data")))
175 (defparameter *root-frame* nil
176 "Root of the root - ie the root frame")
178 (defparameter *main-keys* nil)
179 (defparameter *main-mouse* nil)
180 (defparameter *second-keys* nil)
181 (defparameter *second-mouse* nil)
182 (defparameter *info-keys* nil)
183 (defparameter *info-mouse* nil)
184 (defparameter *query-keys* nil)
185 (defparameter *circulate-keys* nil)
186 (defparameter *circulate-keys-release* nil)
187 (defparameter *expose-keys* nil)
188 (defparameter *expose-mouse* nil)
191 (defparameter *other-window-manager* nil)
194 (defstruct menu name item doc)
195 (defstruct menu-item key value)
198 (defparameter *menu* (make-menu :name 'main :doc "Main menu"))
203 (defconfig *binding-hook* nil 'Hook
204 "Hook executed when keys/buttons are bounds")
206 (defconfig *loop-hook* nil 'Hook
207 "Hook executed on each event loop")
209 (defconfig *main-entrance-hook* nil 'Hook
210 "Hook executed on the main function entrance after
211 loading configuration file and before opening the display.")
214 (defparameter *in-second-mode* nil)
217 ;;; Placement variables. A list of two absolute coordinates
218 ;;; or a function: 'Y-X-placement' for absolute placement or
219 ;;; 'Y-X-child-placement' for child relative placement or
220 ;;; 'Y-X-root-placement' for root relative placement.
221 ;;; Where Y-X are one of:
223 ;;; top-left top-middle top-right
224 ;;; middle-left middle-middle middle-right
225 ;;; bottom-left bottom-middle bottom-right
227 (defconfig *banish-pointer-placement* 'bottom-right-root-placement
228 'Placement "Pointer banishment placement")
229 (defconfig *second-mode-placement* 'top-middle-root-placement
230 'Placement "Second mode window placement")
231 (defconfig *info-mode-placement* 'top-left-root-placement
232 'Placement "Info mode window placement")
233 (defconfig *query-mode-placement* 'top-left-root-placement
234 'Placement "Query mode window placement")
235 (defconfig *circulate-mode-placement* 'bottom-middle-root-placement
236 'Placement "Circulate mode window placement")
237 (defconfig *expose-mode-placement* 'top-left-child-placement
238 'Placement "Expose mode window placement (Selection keys position)")
239 (defconfig *expose-query-placement* 'bottom-left-root-placement
240 'Placement "Expose mode query window placement")
241 (defconfig *notify-window-placement* 'bottom-right-root-placement
242 'Placement "Notify window placement")
243 (defconfig *ask-close/kill-placement* 'top-right-root-placement
244 'Placement "Ask close/kill window placement")
245 (defconfig *unmanaged-window-placement* 'middle-middle-root-placement
246 'Placement "Unmanager window placement")
249 (defparameter *in-process-existing-windows* nil)
251 ;; For debug - redefine defun
252 ;;(shadow :defun)
254 ;;(defmacro defun (name args &body body)
255 ;; `(progn
256 ;; (format t "defun: ~A ~A~%" ',name ',args)
257 ;; (force-output)
258 ;; (cl:defun ,name ,args
259 ;; (handler-case
260 ;; (progn
261 ;; ,@body)
262 ;; (error (c)
263 ;; (format t "New defun: Error in ~A : ~A~%" ',name c)
264 ;; (format t "Root tree=~A~%All windows=~A~%"
265 ;; (xlib:query-tree *root*) (get-all-windows))
266 ;; (force-output))))))
271 (defmacro make-x-drawable (argname type)
272 "Drawable wrapper to prevent type error in some CLX versions.
273 Replace xlib:drawable-* functions with x-drawable-* equivalents"
274 (let ((fun-symbol (create-symbol 'x-drawable- argname))
275 (set-symbol (create-symbol 'set-x-drawable- argname))
276 (xlib-equiv-symbol (create-symbol-in-package :xlib 'drawable- argname)))
277 `(progn
278 (declaim (inline ,fun-symbol))
279 (defun ,fun-symbol (window)
280 (,xlib-equiv-symbol window))
281 (defun ,set-symbol (window ,argname)
282 (if (typep ,argname ',type)
283 (setf (,xlib-equiv-symbol window) ,argname)
284 (dbg ',(create-symbol 'drawable-type-error- argname) window ,argname (xlib:wm-name window))))
285 (defsetf ,fun-symbol ,set-symbol))))
289 (make-x-drawable x (signed-byte 16))
290 (make-x-drawable y (signed-byte 16))
291 (make-x-drawable width (unsigned-byte 16))
292 (make-x-drawable height (unsigned-byte 16))
293 (make-x-drawable border-width (unsigned-byte 16))