diff options
author | Chris Feng <chris.w.feng@gmail.com> | 2015-09-07T09·33+0800 |
---|---|---|
committer | Chris Feng <chris.w.feng@gmail.com> | 2015-09-07T09·33+0800 |
commit | eafd031c556ecfe986c656ca72fcde7e06ac819a (patch) | |
tree | d814f9b2d18cfd5b0a38ffe06f4e57c8e0f8ab4b /exwm-floating.el | |
parent | 637ac157192dcae0785cc27a613bc59626950592 (diff) |
Allow hide/show mode-line on floating frames
* exwm-core.el: new buffer-local variable exwm--floating-mode-line-format for saving mode-line-format when mode-line is hidden * exwm-floating.el (exwm-floating--fit-frame-to-window) (exwm-floating-hide-mode-line, exwm-floating-show-mode-line): new functions for resizing frames, hiding/showing mode-line respectively; (exwm-floating--set-floating): use exwm-floating--fit-frame-to-window to resize frames
Diffstat (limited to 'exwm-floating.el')
-rw-r--r-- | exwm-floating.el | 65 |
1 files changed, 54 insertions, 11 deletions
diff --git a/exwm-floating.el b/exwm-floating.el index 6bb635a5657d..4ea495d0d256 100644 --- a/exwm-floating.el +++ b/exwm-floating.el @@ -166,17 +166,7 @@ (+ width exwm-floating-border-width) (+ height exwm-floating-border-width)))) ;; Fit frame to client - (xcb:+request exwm--connection - (make-instance 'xcb:ConfigureWindow - :window outer-id - :value-mask (logior xcb:ConfigWindow:Width - xcb:ConfigWindow:Height - xcb:ConfigWindow:StackMode) - :width (+ width (* 2 exwm-floating-border-width)) - :height (+ height (* 2 exwm-floating-border-width) - (window-mode-line-height) - (window-header-line-height)) - :stack-mode xcb:StackMode:Above)) ;top-most + (exwm-floating--fit-frame-to-window outer-id width height) ;; Reparent window to this frame (xcb:+request exwm--connection (make-instance 'xcb:ChangeWindowAttributes @@ -246,6 +236,59 @@ (exwm-floating--unset-floating exwm--id) (exwm-floating--set-floating exwm--id)))) +(defun exwm-floating--fit-frame-to-window (&optional frame-outer-id + width height) + "Resize a floating frame to make it fit the size of the window. + +Default to resize `exwm--floating-frame' unless FRAME-OUTER-ID is non-nil. +This function will issue an `xcb:GetGeometry' request unless WIDTH and HEIGHT +are provided. You should call `xcb:flush' and assign `window-size-fixed' a +non-nil value afterwards." + (setq window-size-fixed nil) + (unless (and width height) + (let ((geometry (xcb:+request-unchecked+reply exwm--connection + (make-instance 'xcb:GetGeometry :drawable exwm--id)))) + (setq width (slot-value geometry 'width) + height (slot-value geometry 'height)))) + (xcb:+request exwm--connection + (make-instance 'xcb:ConfigureWindow + :window (or frame-outer-id + (frame-parameter exwm--floating-frame + 'exwm-outer-id)) + :value-mask (logior xcb:ConfigWindow:Width + xcb:ConfigWindow:Height + xcb:ConfigWindow:StackMode) + :width (+ width (* 2 exwm-floating-border-width)) + :height (+ height (* 2 exwm-floating-border-width) + (window-mode-line-height) + (window-header-line-height)) + :stack-mode xcb:StackMode:Above))) ;top-most + +(defun exwm-floating-hide-mode-line () + "Hide mode-line of a floating frame." + (interactive) + (unless (eq major-mode 'exwm-mode) + (user-error "[EXWM] Please use this command with EXWM buffers")) + (when (and exwm--floating-frame mode-line-format) + (setq exwm--floating-mode-line-format mode-line-format + mode-line-format nil) + (exwm-floating--fit-frame-to-window) + (xcb:flush exwm--connection) + (setq window-size-fixed t))) + +(defun exwm-floating-show-mode-line () + "Show mode-line of a floating frame." + (interactive) + (unless (eq major-mode 'exwm-mode) + (user-error "[EXWM] Please use this command with EXWM buffers")) + (when (and exwm--floating-frame (not mode-line-format)) + (setq mode-line-format exwm--floating-mode-line-format + exwm--floating-mode-line-format nil) + (exwm-floating--fit-frame-to-window) + (exwm-input-grab-keyboard) ;mode-line-format may be outdated + (xcb:flush exwm--connection) + (setq window-size-fixed t))) + (defvar exwm-floating--moveresize-calculate nil "Calculate move/resize parameters [frame-id event-mask x y width height].") |