aboutsummaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2018-04-06Add debug tree viewDrew DeVault
2018-04-06Implement move [left|right|up|down]Drew DeVault
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))) ```
2018-04-06Fix wl_output enter/leave eventsemersion
Fixes #1739
2018-04-05Remove L_TYPESemersion
2018-04-05Merge pull request #1743 from emersion/subsurface-damage-trackingDrew DeVault
Damage tracking for view children
2018-04-05Handle unmanaged surfaces motionemersion
2018-04-05Fix desktop_damage_whole_surfaceemersion
2018-04-05Add container_damage_wholeemersion
2018-04-05Add damage tracking for xwayland unmanaged surfacesemersion
2018-04-05Handle xwayland configure requests for unmanaged surfacesemersion
2018-04-05Fix xwayland unmanaged surfacesemersion
2018-04-05Track damage of xdg-shell-v6 popupsemersion
2018-04-05Handle output removal on swaybarDrew DeVault
2018-04-05Accumulate damage from subsurfacesemersion
2018-04-05Implement shell viewsemersion
2018-04-05Implement resize commandDrew DeVault
2018-04-04Remove unused SWAY_VIEW_TYPESemersion
2018-04-04Remove unused sway_view.unmanaged_linkemersion
2018-04-04Implement opacity commandTony Crisci
2018-04-04Address review feedbackDrew DeVault
2018-04-04Add hidpi support to swaylockDrew DeVault
2018-04-04Implement input-inhibit in sway, swaylockDrew DeVault
2018-04-04Add input inhibitor to input managerDrew DeVault
2018-04-04R E N D E R I N GDrew DeVault
2018-04-04Add password buffer, refactor rendering/surfacesDrew DeVault
2018-04-04Split seat code into its own fileDrew DeVault
2018-04-04Initial swaylock portDrew DeVault
2018-04-04Move swaybg background rendering into common/Drew DeVault
swaylock will use it too
2018-04-04Merge branch 'wlroots' into split-containers2Tony Crisci
2018-04-03Add hidpi support to swaybarDrew DeVault
2018-04-03move output create to its own fileTony Crisci
2018-04-03move workspace create to workspace.cTony Crisci
2018-04-03fix old todosTony Crisci
2018-04-03clean up container_get_default_layoutTony Crisci
2018-04-03move container_set_layout to layout.hTony Crisci
2018-04-03make container_finish privateTony Crisci
2018-04-03unify workspace create functionsTony Crisci
2018-04-03unify container destroy functionsTony Crisci
2018-04-03move view and workspace destructors to container.cTony Crisci
2018-04-02change reap container approachTony Crisci
2018-04-02Give exclusive focus to layers above shell layerDrew DeVault
2018-04-02fix more close segfaultsTony Crisci
2018-04-02Merge branch 'wlroots' into split-containersTony Crisci
2018-04-02Merge branch 'wlroots' into split-containersTony Crisci
2018-04-02Merge branch 'wlroots' into view-redesignemersion
2018-04-02Merge pull request #1699 from acrisci/seat-fixesemersion
Seat fixes and cleanup
2018-04-02Xwayland unmanaged views aren't views anymoreemersion
2018-04-02Merge pull request #1690 from swaywm/i3bar-jsonDrew DeVault
I3bar json
2018-04-02Merge branch 'wlroots' into split-containersTony Crisci
2018-04-02Merge branch 'wlroots' into seat-fixesTony Crisci