Skip to content
bindings-second-mode.lisp 12.4 KiB
Newer Older
Philippe Brochard's avatar
Philippe Brochard committed
;;; --------------------------------------------------------------------------
;;; CLFSWM - FullScreen Window Manager
;;;
;;; --------------------------------------------------------------------------
;;; Documentation: Bindings keys and mouse for second mode
;;;
;;; Note: Mod-1 is the Alt or Meta key, Mod-2 is the Numlock key.
;;; --------------------------------------------------------------------------
;;;
;;; (C) 2012 Philippe Brochard <pbrochard@common-lisp.net>
Philippe Brochard's avatar
Philippe Brochard committed
;;;
;;; This program is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or
;;; (at your option) any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with this program; if not, write to the Free Software
;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
;;;
;;; --------------------------------------------------------------------------

(in-package :clfswm)

;;;,-----
;;;| Second keys
;;;|
;;;| CONFIG - Second mode bindings
;;;`-----
(add-hook *binding-hook* 'init-*second-keys* 'init-*second-mouse*)
Philippe Brochard's avatar
Philippe Brochard committed

Philippe Brochard's avatar
Philippe Brochard committed
(defun open-frame-menu ()
  "Open the frame menu"
  (open-menu (find-menu 'frame-menu)))

(defun open-window-menu ()
  "Open the window menu"
  (open-menu (find-menu 'window-menu)))

(defun open-action-by-name-menu ()
  "Open the action by name menu"
  (open-menu (find-menu 'action-by-name-menu)))

(defun open-action-by-number-menu ()
  "Open the action by number menu"
  (open-menu (find-menu 'action-by-number-menu)))

(defun open-frame-movement-menu ()
  "Open the frame movement menu (pack/fill/resize)"
  (open-menu (find-menu 'frame-movement-menu)))
(defun open-root-menu ()
  "Open the root menu"
(defun open-child-menu ()
  "Open the child menu"
  (open-menu (find-menu 'child-menu)))
Philippe Brochard's avatar
Philippe Brochard committed
  "Tile the current frame"

(defun stop-all-pending-actions ()
  "Stop all pending actions"
  (clear-all-nw-hooks)
  (leave-second-mode))


Philippe Brochard's avatar
Philippe Brochard committed
;;; default shell programs
(defmacro define-shell (key name docstring cmd)
  "Define a second key to start a shell command"
  `(define-second-key ,key
       (defun ,name ()
	 ,docstring
	 (setf *second-mode-leave-function* (let ((cmd ,cmd))
					      (lambda ()
						(do-shell cmd))))
Philippe Brochard's avatar
Philippe Brochard committed
	 (leave-second-mode))))


  (define-second-key ("F1" :mod-1) 'help-on-clfswm)
  (define-second-key ("m") 'open-menu)
  (define-second-key ("less") 'open-menu)
  (define-second-key ("less" :control) 'open-menu)
  (define-second-key ("f") 'open-frame-menu)
  (define-second-key ("w") 'open-window-menu)
  (define-second-key ("n") 'open-action-by-name-menu)
  (define-second-key ("u") 'open-action-by-number-menu)
  (define-second-key ("p") 'open-frame-movement-menu)
  (define-second-key ("r") 'open-root-menu)
  (define-second-key ("c") 'open-child-menu)
  (define-second-key ("x") 'update-layout-managed-children-position)
  (define-second-key ("g" :control) 'stop-all-pending-actions)
  (define-second-key ("q") 'sm-delete-focus-window)
  (define-second-key ("k") 'sm-ask-close/kill-current-window)
  (define-second-key ("i") 'identify-key)
  (define-second-key ("colon") 'eval-from-query-string)
  (define-second-key ("exclam") 'run-program-from-query-string)
  (define-second-key ("Return") 'leave-second-mode)
  (define-second-key ("Escape") 'leave-second-mode)
  (define-second-key ("t" :shift) 'tile-current-frame)
  (define-second-key ("Home" :mod-1 :control :shift) 'exit-clfswm)
  (define-second-key ("Right" :mod-1) 'select-next-brother)
  (define-second-key ("Left" :mod-1) 'select-previous-brother)

  (define-second-key ("Right" :mod-1 :shift) 'select-next-brother-take-current)
  (define-second-key ("Left" :mod-1 :shift) 'select-previous-brother-take-current)

  (define-second-key ("Down" :mod-1) 'select-previous-level)
  (define-second-key ("Up" :mod-1) 'select-next-level)
  (define-second-key ("Left" :control :mod-1) 'select-brother-spatial-move-left)
  (define-second-key ("Right" :control :mod-1) 'select-brother-spatial-move-right)
  (define-second-key ("Up" :control :mod-1) 'select-brother-spatial-move-up)
  (define-second-key ("Down" :control :mod-1) 'select-brother-spatial-move-down)

  (define-second-key ("Left" :control :mod-1 :shift) 'select-brother-spatial-move-left-take-current)
  (define-second-key ("Right" :control :mod-1 :shift) 'select-brother-spatial-move-right-take-current)
  (define-second-key ("Up" :control :mod-1 :shift) 'select-brother-spatial-move-up-take-current)
  (define-second-key ("Down" :control :mod-1 :shift) 'select-brother-spatial-move-down-take-current)

  (define-second-key ("j") 'swap-frame-geometry)
  (define-second-key ("h") 'rotate-frame-geometry)
  (define-second-key ("h" :shift) 'anti-rotate-frame-geometry)
  (define-second-key ("Page_Up") 'select-next-root)
  (define-second-key ("Page_Down") 'select-previous-root)
  (define-second-key ("Page_Up" :control) 'rotate-root-geometry-next)
  (define-second-key ("Page_Down" :control) 'rotate-root-geometry-previous)
  (define-second-key ("Right") 'speed-mouse-right)
  (define-second-key ("Left") 'speed-mouse-left)
  (define-second-key ("Down") 'speed-mouse-down)
  (define-second-key ("Up") 'speed-mouse-up)
  (define-second-key ("Left" :control) 'speed-mouse-undo)
  (define-second-key ("Up" :control) 'speed-mouse-first-history)
  (define-second-key ("Down" :control) 'speed-mouse-reset)

  (define-second-key ("Tab" :mod-1) 'select-next-child)
  (define-second-key ("Tab" :mod-1 :shift) 'select-previous-child)
  (define-second-key ("Tab" :mod-1 :control) 'select-next-subchild)
  (define-second-key ("Tab") 'switch-to-last-child)
  (define-second-key ("Return" :mod-1) 'enter-frame)
  (define-second-key ("Return" :mod-1 :shift) 'leave-frame)
  (define-second-key ("Return" :mod-1 :control) 'frame-toggle-maximize)
  (define-second-key ("Return" :mod-5) 'frame-toggle-maximize)
  (define-second-key ("Page_Up" :mod-1) 'frame-lower-child)
  (define-second-key ("Page_Down" :mod-1) 'frame-raise-child)
  (define-second-key ("Home" :mod-1) 'switch-to-root-frame)
  (define-second-key ("Home" :mod-1 :shift) 'switch-and-select-root-frame)
  (define-second-key ("Menu") 'toggle-show-root-frame)
  (define-second-key ("b" :mod-1) 'banish-pointer)
  (define-second-key ("o") 'set-open-in-new-frame-in-parent-frame-nw-hook)
  (define-second-key ("o" :control) 'set-open-in-new-frame-in-root-frame-nw-hook)
  (define-second-key ("a") 'add-default-frame)
  (define-second-key ("a" :control) 'add-frame-in-parent-frame)
  (define-second-key ("plus") 'inc-tile-layout-size)
  (define-second-key ("minus") 'dec-tile-layout-size)
  (define-second-key ("plus" :control) 'inc-slow-tile-layout-size)
  (define-second-key ("minus" :control) 'dec-slow-tile-layout-size)
  (define-second-key ("Escape" :control) 'ask-close/kill-current-window)
  ;; Selection
  (define-second-key ("x" :control) 'cut-current-child)
  (define-second-key ("x" :control :mod-1) 'clear-selection)
  (define-second-key ("c" :control) 'copy-current-child)
  (define-second-key ("v" :control) 'paste-selection)
  (define-second-key ("v" :control :shift) 'paste-selection-no-clear)
  (define-second-key ("Delete" :control) 'remove-current-child)
  (define-second-key ("Delete") 'delete-current-child)
  (define-shell ("t") b-start-xterm "start an xterm" "cd $HOME && exec xterm")
  (define-shell ("e") b-start-emacs "start emacs" "cd $HOME && exec emacs")
  (define-shell ("e" :control) b-start-emacsremote
    "start an emacs for another user"
    "exec xterm -e emacsremote")
  (define-second-key ("F10" :mod-1) 'fast-layout-switch)
  (define-second-key ("F10" :shift :control) 'toggle-show-root-frame)
Philippe Brochard's avatar
Philippe Brochard committed
  (define-second-key ("F10") 'expose-windows-mode)
  (define-second-key ("F10" :control) 'expose-all-windows-mode)
  (define-second-key ("F12" :shift) 'show-all-frames-info-key)
  (define-second-key ("F12" :shift :mod-1) 'show-all-frames-info)
  ;; Bind or jump functions
  (define-second-key ("1" :mod-1) 'bind-or-jump 1)
  (define-second-key ("2" :mod-1) 'bind-or-jump 2)
  (define-second-key ("3" :mod-1) 'bind-or-jump 3)
  (define-second-key ("4" :mod-1) 'bind-or-jump 4)
  (define-second-key ("5" :mod-1) 'bind-or-jump 5)
  (define-second-key ("6" :mod-1) 'bind-or-jump 6)
  (define-second-key ("7" :mod-1) 'bind-or-jump 7)
  (define-second-key ("8" :mod-1) 'bind-or-jump 8)
  (define-second-key ("9" :mod-1) 'bind-or-jump 9)
  (define-second-key ("0" :mod-1) 'bind-or-jump 10)
  ;;; Transparency
  (define-second-key ("t" :control :shift) 'key-inc-transparency)
  (define-second-key ("t" :control) 'key-dec-transparency))

(add-hook *binding-hook* 'set-default-second-keys)
Philippe Brochard's avatar
Philippe Brochard committed




;;; Mouse action
(defun sm-mouse-click-to-focus-and-move (window root-x root-y)
  "Move and focus the current child - Create a new frame on the root window.
Philippe Brochard's avatar
Philippe Brochard committed
  (declare (ignore window))
  (or (do-corner-action root-x root-y *corner-second-mode-left-button*)
      (mouse-focus-move/resize-generic root-x root-y #'move-frame nil)))
Philippe Brochard's avatar
Philippe Brochard committed

(defun sm-mouse-click-to-focus-and-resize (window root-x root-y)
  "Resize and focus the current child - Create a new frame on the root window.
Philippe Brochard's avatar
Philippe Brochard committed
  (declare (ignore window))
  (or (do-corner-action root-x root-y *corner-second-mode-right-button*)
      (mouse-focus-move/resize-generic root-x root-y #'resize-frame nil)))
Philippe Brochard's avatar
Philippe Brochard committed

(defun sm-mouse-middle-click (window root-x root-y)
  "Do actions on corners"
  (declare (ignore window))
  (or (do-corner-action root-x root-y *corner-second-mode-middle-button*)
      (replay-button-event)))


Philippe Brochard's avatar
Philippe Brochard committed


(defun sm-mouse-select-next-level (window root-x root-y)
  "Select the next level in frame"
  (declare (ignore window root-x root-y))
  (select-next-level))




(defun sm-mouse-select-previous-level (window root-x root-y)
  "Select the previous level in frame"
  (declare (ignore window root-x root-y))
  (select-previous-level))



(defun sm-mouse-enter-frame (window root-x root-y)
  "Enter in the selected frame - ie make it the root frame"
  (declare (ignore window root-x root-y))
  (enter-frame))



(defun sm-mouse-leave-frame (window root-x root-y)
  "Leave the selected frame - ie make its parent the root frame"
  (declare (ignore window root-x root-y))
  (leave-frame))


(defun sm-mouse-click-to-focus-and-move-window (window root-x root-y)
  "Move and focus the current child - Create a new frame on the root window"
  (declare (ignore window))
  (mouse-focus-move/resize-generic root-x root-y #'move-frame t))


(defun sm-mouse-click-to-focus-and-resize-window (window root-x root-y)
  "Resize and focus the current child - Create a new frame on the root window"
  (declare (ignore window))
  (mouse-focus-move/resize-generic root-x root-y #'resize-frame t))


(defun sm-mouse-click-to-focus-and-move-window-constrained (window root-x root-y)
  "Move (constrained by other frames) and focus the current child - Create a new frame on the root window"
  (declare (ignore window))
  (mouse-focus-move/resize-generic root-x root-y #'move-frame-constrained t))


(defun sm-mouse-click-to-focus-and-resize-window-constrained (window root-x root-y)
  "Resize (constrained by other frames) and focus the current child - Create a new frame on the root window"
  (declare (ignore window))
  (mouse-focus-move/resize-generic root-x root-y #'resize-frame-constrained t))


Philippe Brochard's avatar
Philippe Brochard committed

(defun set-default-second-mouse ()
  (define-second-mouse (1) 'sm-mouse-click-to-focus-and-move)
  (define-second-mouse (2) 'sm-mouse-middle-click)
  (define-second-mouse (3) 'sm-mouse-click-to-focus-and-resize)
  (define-second-mouse (1 :mod-1) 'sm-mouse-click-to-focus-and-move-window)
  (define-second-mouse (3 :mod-1) 'sm-mouse-click-to-focus-and-resize-window)
  (define-second-mouse (1 :mod-1 :shift) 'sm-mouse-click-to-focus-and-move-window-constrained)
  (define-second-mouse (3 :mod-1 :shift) 'sm-mouse-click-to-focus-and-resize-window-constrained)
  (define-second-mouse (1 :control :mod-1) 'mouse-move-child-over-frame)
  (define-second-mouse (4) 'sm-mouse-select-next-level)
  (define-second-mouse (5) 'sm-mouse-select-previous-level)
  (define-second-mouse (4 :mod-1) 'sm-mouse-enter-frame)
  (define-second-mouse (5 :mod-1) 'sm-mouse-leave-frame))
Philippe Brochard's avatar
Philippe Brochard committed

(add-hook *binding-hook* 'set-default-second-mouse)