aboutsummaryrefslogtreecommitdiff
path: root/src/safe_x11/window.rs
AgeCommit message (Collapse)AuthorFilesLines
2020-06-22Use MaybeUninit::uninit() in favor of mem::uninitialized()HEADmasterMatias Linares1-7/+7
2016-09-04Add Mouse drag support.Matias Linares1-2/+13
This concludes the first 'release' :p.
2016-06-03Add Clippy as dependency.Matias Linares1-6/+6
This brings a lot of clean up on the code.
2016-01-27Refactor resize sticky codeMatias Linares1-0/+50
2016-01-27Refactor move sticky.Matias Linares1-10/+87
2015-12-27Better fullscreen handling.Matias Linares1-14/+23
2015-12-07Implement desktops.Matias Linares1-2/+18
It's somewhat buggy. But works :). There're 2 desktops only for now, maybe later I will implement something more dynamic
2015-11-30Add resize-win-sticky.Matias Linares1-0/+20
The move window sticky is working weirdly. The movement should be using the attrs.x and attrs.y instead the attrs.x/y + attrs.width/height. But it's working :).
2015-11-29Begin ef EWMH support and sticky movementMatias Linares1-1/+67
The implementationn of the EWMH and ICCCM support is incomplete. I need to check how to implement on the right way.
2015-11-16Add MIT LICENSEMatias Linares1-0/+2
2015-11-09ExecFn Rewrite.Matias Linares1-8/+13
This now allows to call a ExecFn with a &mut DotWM by parameter. This help to do some things like do the window swapping. through mod4 + tab. Also the bindings are not longer on the wm, because this generates some problems with the ExecFn. Also, now it's posible to resize the windows :)
2015-11-09Focus handling.Matias Linares1-1/+1
For now this have some bugs. Some complex programs (i.e. thunar, firefox) will spawn a lot of XCreateEvents and the last window it's not focused correctly. Also the enter notify should work on an input instead hovering the window
2015-11-08Initial commitMatias Linares1-0/+144
This initial commit has the following: * We can spawn a terminal. * Given a new window, we can move it around the screen, but only the window that was created, all the other windows disappear on the void, so.. :( and that's it