aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/container.h
Commit message (Collapse)AuthorAge
...
* Use constants for titlebar dimensionsLibravatar Ryan Dwyer2018-05-22
|
* Implement tabbed layoutLibravatar Ryan Dwyer2018-05-21
|
* Rebuild textures if needed when moving a containerLibravatar Ryan Dwyer2018-05-19
| | | | | | | When moving a container to an output which has a different scale than the previous, rebuild the title and marks textures at the new scale. Fixes #1999.
* Count descendant views for hide_edge_borders smartLibravatar Brian Ashworth2018-05-12
|
* Implement title_formatLibravatar Ryan Dwyer2018-05-05
| | | | | | | | | | This implements the title_format command, with a new placeholder %shell which gets substituted with the view type (xwayland, xdg_shell_v6 or wl_shell). Example config: for_window [title=".*"] title_format %title (class=%class instance=%instance shell=%shell)
* Calculate config->font_height based on existing container titlesLibravatar Ryan Dwyer2018-05-03
|
* Render titlesLibravatar Ryan Dwyer2018-05-03
|
* Implement bordersLibravatar Ryan Dwyer2018-04-30
| | | | | | | | | | | | | Implements rendering of borders. Title text is still to do. Implements the following configuration directives: * client.focused * client.focused_inactive * client.unfocused * client.urgent * border * default_border
* Refactor arrange_windows()Libravatar Ryan Dwyer2018-04-28
| | | | | | | | | 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.
* Remove sway_container.workspace_layoutLibravatar Ryan Dwyer2018-04-26
| | | | Fixes #1716.
* Create sway_workspace struct.Libravatar Ryan Dwyer2018-04-17
|
* Feedback for fullscreen.Libravatar Ryan Dwyer2018-04-17
|
* Implement fullscreen.Libravatar Ryan Dwyer2018-04-16
|
* Implement move [left|right|up|down]Libravatar Drew DeVault2018-04-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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))) ```
* Remove L_TYPESLibravatar emersion2018-04-05
|
* Add container_damage_wholeLibravatar emersion2018-04-05
|
* Implement opacity commandLibravatar Tony Crisci2018-04-04
|
* move workspace create to workspace.cLibravatar Tony Crisci2018-04-03
|
* fix old todosLibravatar Tony Crisci2018-04-03
|
* move container_set_layout to layout.hLibravatar Tony Crisci2018-04-03
|
* make container_finish privateLibravatar Tony Crisci2018-04-03
|
* unify container destroy functionsLibravatar Tony Crisci2018-04-03
|
* move view and workspace destructors to container.cLibravatar Tony Crisci2018-04-03
|
* change reap container approachLibravatar Tony Crisci2018-04-02
|
* fix more close segfaultsLibravatar Tony Crisci2018-04-02
|
* Merge branch 'wlroots' into split-containersLibravatar Tony Crisci2018-04-02
|\
| * Merge branch 'wlroots' into view-redesignLibravatar emersion2018-04-02
| |\
| * | Xwayland unmanaged views aren't views anymoreLibravatar emersion2018-04-02
| | |
| * | Introduce common functions to create, map, unmap, destroy viewsLibravatar emersion2018-03-31
| | |
* | | Merge branch 'wlroots' into split-containersLibravatar Tony Crisci2018-04-02
|\ \ \ | | |/ | |/|
| * | Partially implement move commandLibravatar Drew DeVault2018-04-02
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | add docstrings and todosLibravatar Tony Crisci2018-03-31
| |
* | handle container destroy in the seatLibravatar Tony Crisci2018-03-31
| |
* | basic split containersLibravatar Tony Crisci2018-03-31
|/
* Fix workspace deletion edge casesLibravatar Drew DeVault2018-03-30
|
* Destroy empty workspaces when moving awayLibravatar Drew DeVault2018-03-30
|
* Fix oversights from previous pull requestLibravatar Tony Crisci2018-03-29
|
* Revert "Merge pull request #1653 from swaywm/revert-1647-refactor-tree"Libravatar Tony Crisci2018-03-29
| | | | | This reverts commit 472e81f35d689d67cda241acafda91c688d61046, reversing changes made to 6b7841b11ff4cd35f54d69dc92029855893e5ce0.
* Revert "Refactor tree"Libravatar Drew DeVault2018-03-29
|
* rename container_for_each_descendentLibravatar Tony Crisci2018-03-29
|
* address feedbackLibravatar Tony Crisci2018-03-29
|
* fix container_get_in_direction nameLibravatar Tony Crisci2018-03-29
|
* more renaming thingsLibravatar Tony Crisci2018-03-29
|
* rename container functionsLibravatar Tony Crisci2018-03-29
|
* remove swayc_t typedefLibravatar Tony Crisci2018-03-29
|
* move tree includes to their own directoryLibravatar Tony Crisci2018-03-29