mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 03:20:21 -07:00
Make FlexibleManipulate comply with new mouse dragging system
This commit is contained in:
parent
504d011dd6
commit
1902feb3ce
@ -71,13 +71,15 @@ mouseWindow f w = whenX (isClient w) $ withDisplay $ \d -> do
|
|||||||
mul = mapP (\x -> 2 - 2 * abs(x - 0.5)) fc --Fudge factors: interpolation between 1 when on edge, 2 in middle
|
mul = mapP (\x -> 2 - 2 * abs(x - 0.5)) fc --Fudge factors: interpolation between 1 when on edge, 2 in middle
|
||||||
atl = ((1, 1) - fc) * mul
|
atl = ((1, 1) - fc) * mul
|
||||||
abr = fc * mul
|
abr = fc * mul
|
||||||
mouseDrag $ \(_, _, _, _, _, ex, ey, _, _, _) -> do
|
mouseDrag (\ex ey -> io $ do
|
||||||
let offset = (fromIntegral ex, fromIntegral ey) - pointer
|
let offset = (fromIntegral ex, fromIntegral ey) - pointer
|
||||||
npos = wpos + offset * atl
|
npos = wpos + offset * atl
|
||||||
nbr = (wpos + wsize) + offset * abr
|
nbr = (wpos + wsize) + offset * abr
|
||||||
ntl = minP (nbr - (32, 32)) npos --minimum size
|
ntl = minP (nbr - (32, 32)) npos --minimum size
|
||||||
nwidth = applySizeHints sh $ mapP round (nbr - ntl)
|
nwidth = applySizeHints sh $ mapP round (nbr - ntl)
|
||||||
moveResizeWindow d w (round $ fst ntl) (round $ snd ntl) `uncurry` nwidth
|
moveResizeWindow d w (round $ fst ntl) (round $ snd ntl) `uncurry` nwidth
|
||||||
|
return ())
|
||||||
|
(float w)
|
||||||
|
|
||||||
float w
|
float w
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user