Ryan Dwyer
320703fdca
Arrange views after flattening the parent
...
Fixes #2029 .
7 years ago
Ryan Dwyer
c9630975da
Fix crash in move workspace to output command
...
Fixes #2026 .
7 years ago
Ryan Dwyer
c08f9bf257
Implement tabbed layout
7 years ago
Ryan Dwyer
167c2e1aa9
Refactor arrange_windows()
...
Replaces arrange_windows() with arrange_root(), arrange_output(),
arrange_workspace() and arrange_children_of().
Also makes fullscreen views save and restore their dimensions, which
allows it to preserve any custom resize and is also a requirement for
floating views once they are implemented.
7 years ago
Ryan Dwyer
ae39d7b28c
Remove sway_container.workspace_layout
...
Fixes #1716 .
7 years ago
Ryan Dwyer
34429a3605
Keep view fullscreened when moving to another workspace.
...
container_handle_fullscreen_reparent() must be called *after* setting
the container's new parent.
8 years ago
Ryan Dwyer
45a2fad0de
container_get_in_direction(): Don't split this function
8 years ago
Ryan Dwyer
7e38cc2e05
arrange_windows(): Calculate workspace properties when fullscreen
8 years ago
Ryan Dwyer
35ccdd67a8
More fullscreen fixes.
...
* Render fullscreen views without wlr function, which makes popups and
lockscreen work.
* Don't allow input events to surfaces behind fullscreen views.
* Use correct output dimensions (for rotated outputs).
8 years ago
Ryan Dwyer
72beae209b
Fullscreen fixes.
8 years ago
Ryan Dwyer
c685ef081f
Create sway_workspace struct.
8 years ago
Ryan Dwyer
bfd5834f4c
Feedback for fullscreen.
8 years ago
Ryan Dwyer
52420cc24d
Implement fullscreen.
8 years ago
Dominique Martinet
8490d1662c
Fix gcc maybe-uninitialized warning
8 years ago
Tony Crisci
9db859585e
container_create_notify on split
8 years ago
Tony Crisci
c0f9ee7bd1
seat get focus inactive view
8 years ago
emersion
61abd56ca4
Fix output containers position
8 years ago
emersion
93ca8919f6
Don't rejigger if parent has two children
8 years ago
emersion
37b173f326
When moving between outputs, use output center as reference
8 years ago
Drew DeVault
df0d57b916
Fix issue with incorrectly rejiggered workspaces
8 years ago
Drew DeVault
9109b1fd11
Fix moving to parallel container on another output
8 years ago
Drew DeVault
5ff16994c5
Address @emersion feedback
8 years ago
Drew DeVault
c8be7bfc1e
Fix another of @orestisf1993's issues
8 years ago
Drew DeVault
1f70b94f34
Fix moving into right end of container
8 years ago
Drew DeVault
cd6e3182fa
Fix issues @orestisf1993 raised
8 years ago
Drew DeVault
b5baa78dc3
Address @emersion's comments
8 years ago
Drew DeVault
603e0e42c5
Add debug tree view
8 years ago
Drew DeVault
a06052ad9d
Fix splitting workspaces
8 years ago
Drew DeVault
efac07db5f
Fix workspaces not updated on swaybar
8 years ago
Drew DeVault
57954a2b24
Implement move [left|right|up|down]
...
The exact semantics of this command are complicated. I'll describe each
test scenario as s-expressions. Everything assumes L_HORIZ if not
specified, but if you rotate everything 90 degrees the same test cases
hold.
```
(container (view a) (view b focus) (view c))
-> move left
(container (view b focus) (view a) (view c))
(container (view a) (view b focus) (view c))
-> move right
(container (view a) (view c) (view b focus))
(container L_VERT (view a))
(container L_HORIZ
(view b) (view c focus))
-> move up
(container L_VERT
(view a) (view c focus))
(container L_HORIZ (view b))
(workspace
(view a) (view b focus) (view c))
-> move up
(workspace [split direction flipped]
(view b focus)
(container (view a) (view c)))
(workspace
(view a) (view b focus) (view c))
-> move down
(workspace [split direction flipped]
(container (view a) (view c))
(view b focus)))
Note: outputs use wlr_output_layout instead of assuming that i+/-1 is
the next output in the move direction.
(root
(output X11-1
(workspace 1))
(output X11-2
(workspace 1 (view a focus) (view b)))))
-> move left
(root
(output X11-1
(workspace 1 (view a focus)))
(output X11-2
(workspace 1 (view b)))))
(root
(output X11-1
(workspace 1
(container (view a) (view b)))
(output X11-2
(workspace 1 (view c focus)))))
-> move left
(root
(output X11-1
(workspace 1
(container (view a) (view b))
(view c focus)))
(output X11-2
(workspace 1)))
```
8 years ago
Drew DeVault
d77a0119f4
Avoid arranging windows while reloading config
8 years ago
Drew DeVault
9e89daf213
Merge pull request #1734 from swaywm/resize-cmd
...
Implement resize command
8 years ago
Drew DeVault
f77986338f
Implement resize command
8 years ago
Tony Crisci
deda37469a
fix focus child
8 years ago
Tony Crisci
741e3959e3
Merge branch 'wlroots' into split-containers2
8 years ago
Tony Crisci
a001890fb8
move workspace create to workspace.c
8 years ago
emersion
c0554d23d3
Fix rendering with multiple outputs
8 years ago
Tony Crisci
481a8275c1
address feedback
8 years ago
Tony Crisci
9b567fc37e
clean up container_get_default_layout
8 years ago
Tony Crisci
065887bb7b
move container_set_layout to layout.h
8 years ago
Tony Crisci
20f9d49b82
cleanup
8 years ago
Tony Crisci
2992b72d61
change reap container approach
8 years ago
Tony Crisci
2c165e1288
fix more close segfaults
8 years ago
Tony Crisci
a89096278b
Merge branch 'wlroots' into split-containers
8 years ago
Tony Crisci
d434da5632
Merge branch 'wlroots' into split-containers
8 years ago
Tony Crisci
d070244362
fix workspace splits
8 years ago
emersion
a4a241697a
Merge branch 'wlroots' into view-redesign
8 years ago
emersion
0c0cc79282
Merge pull request #1699 from acrisci/seat-fixes
...
Seat fixes and cleanup
8 years ago
emersion
2f64ce86c4
Xwayland unmanaged views aren't views anymore
8 years ago
Drew DeVault
4134407fa9
Merge pull request #1690 from swaywm/i3bar-json
...
I3bar json
8 years ago
Tony Crisci
357a4401fa
address feedback
8 years ago
Tony Crisci
2187684bd0
Merge branch 'wlroots' into split-containers
8 years ago
Tony Crisci
5e024278a6
Merge branch 'wlroots' into seat-fixes
8 years ago
Drew DeVault
c507727ad2
Fix use-after-free with block hotspots
8 years ago
Drew DeVault
b2d871cfe2
Partially implement move command
...
Works:
- move [container|window] to workspace <name>
- Note, this should be able to move C_CONTAINER but this is untested
- move [workspace] to output [left|right|up|down|<name>]
Not implemented yet:
- move [left|right|up|down]
- move scratchpad
- move position
8 years ago
emersion
61fabede14
Address review comments
8 years ago
Tony Crisci
e677c5b204
rename seat functions
8 years ago
Tony Crisci
eda425fdab
fix some segfaults
8 years ago
Tony Crisci
7706d83160
basic split containers
8 years ago
emersion
8aedc042ee
Fix two segfaults when destroying outputs
8 years ago
Drew DeVault
88f08a42f3
Fix segfault when reaping invisible workspaces
8 years ago
Drew DeVault
49379dd0fc
Fix workspace deletion edge cases
8 years ago
emersion
1592543fd6
Merge pull request #1659 from swaywm/default-orientation
...
Add default_orientation command
8 years ago
Drew DeVault
01af343912
Destroy empty workspaces when moving away
8 years ago
Drew DeVault
69eb021767
Add default_orientation command
8 years ago
Tony Crisci
dc8c9fbeb6
Revert "Merge pull request #1653 from swaywm/revert-1647-refactor-tree"
...
This reverts commit 472e81f35d
, reversing
changes made to 6b7841b11f
.
8 years ago
Drew DeVault
d0c7f66e95
Revert "Refactor tree"
8 years ago
Tony Crisci
2778edef97
arrange windows
8 years ago
Tony Crisci
92c58b1e63
rename container_for_each_descendent
8 years ago
Tony Crisci
4ec8bf4cee
80col
8 years ago
Tony Crisci
62d1b4cb96
fix container_get_in_direction name
8 years ago
Tony Crisci
ed2cedb544
rename layout init
8 years ago
Tony Crisci
eca029f218
more renaming things
8 years ago
Tony Crisci
b90099b4b7
rename container functions
8 years ago
Tony Crisci
874f009866
move tree includes to their own directory
8 years ago
Drew DeVault
68cfa7ef67
Render layer surfaces and respect exclusive zone
8 years ago
Tony Crisci
bcb870bcf2
bug: fix crash on focus up
8 years ago
Tony Crisci
4c4cc9c999
remove old comments
8 years ago
Tony Crisci
b88f06e70a
bugfix: get right layout box for rendering views
8 years ago
Tony Crisci
176d24f02d
choose adjacent container between outputs
8 years ago
Tony Crisci
fb37e80225
basic move focus in direction across outputs
8 years ago
Tony Crisci
780d9fe1e3
cleanup layout.c
8 years ago
Tony Crisci
083e11ac7c
fix build for latest api
8 years ago
Tony Crisci
946d9459c5
get swayc in direction
8 years ago
Tony Crisci
93084c9cf8
remove old focus member
8 years ago
Tony Crisci
7d8f2c52aa
make index_child static
8 years ago
Tony Crisci
5151502298
basic focus overhaul
8 years ago
Tony Crisci
0e3eae4baa
view interface
8 years ago
Tony Crisci
83ddd2d9db
render override redirect
8 years ago
Dominique Martinet
67985e9031
sway: change all sway_log to wlr_log
8 years ago
emersion
ec2fd6e5c0
Handle output remove
8 years ago
emersion
a4619e98c4
Update output containers on output layout change
8 years ago
emersion
c7abb77f22
Listen to output layout change
8 years ago
Tony Crisci
8bdf3b1b02
view set position
8 years ago
Tony Crisci
802e7392f8
use "size" instead of "dimensions"
8 years ago
Drew DeVault
8caabe59c2
Handle view destruction properly
8 years ago
Drew DeVault
a57d462926
Fix rendering issues, wire up some xdg listeners
8 years ago
Drew DeVault
ce1936bc65
Arrange windows on desktop
8 years ago
Drew DeVault
aeda2e077f
Add workspace to outputs
8 years ago
Drew DeVault
db4fb1c85c
Add outputs to the tree
8 years ago