emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/exwm d998b42 34/64: Provide hooks run when the floating


From: Chris Feng
Subject: [elpa] externals/exwm d998b42 34/64: Provide hooks run when the floating state of a window changes (close #28)
Date: Thu, 17 Sep 2015 23:18:02 +0000

branch: externals/exwm
commit d998b42b89bc9e248b6d2250c56ddd17ec4b17cf
Author: Chris Feng <address@hidden>
Commit: Chris Feng <address@hidden>

    Provide hooks run when the floating state of a window changes (close #28)
---
 exwm-floating.el |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/exwm-floating.el b/exwm-floating.el
index 06d6fa5..bc6b1a2 100644
--- a/exwm-floating.el
+++ b/exwm-floating.el
@@ -36,6 +36,11 @@
 (defvar exwm-floating-border-color "blue"
   "Border color of the floating window.")
 
+(defvar exwm-floating-setup-hook nil
+  "Normal hook run when a window has been made floating.")
+(defvar exwm-floating-exit-hook nil
+  "Normal hook run when a window has exited floating state.")
+
 (defun exwm-floating--set-floating (id)
   "Make window ID floating."
   (interactive)
@@ -180,7 +185,8 @@
             exwm--floating-frame frame)
       (set-window-buffer window (current-buffer)) ;this changes current buffer
       (set-window-dedicated-p window t))
-    (select-window window)))
+    (select-window window))
+  (run-hooks 'exwm-floating-setup-hook))
 
 (defun exwm-floating--unset-floating (id)
   "Make window ID non-floating."
@@ -213,7 +219,8 @@
             exwm--frame exwm-workspace--current))
     (let ((window (frame-selected-window exwm-workspace--current)))
       (set-window-buffer window buffer)
-      (select-window window))))
+      (select-window window)))
+  (run-hooks 'exwm-floating-exit-hook))
 
 (defun exwm-floating-toggle-floating ()
   "Toggle the current window between floating and non-floating states."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]