aboutsummaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)AuthorLines
2018-08-11Merge pull request #2449 from RyanDwyer/remove-bfsDrew DeVault-7/+1
Remove container_for_each_descendant_bfs
2018-08-11Remove container_for_each_descendant_bfsRyan Dwyer-7/+1
The function was not used. Also renames container_for_each_descendant_dfs to just container_for_each_descendant.
2018-08-11Remove container_has_childRyan Dwyer-6/+0
In all cases you can use container_has_ancestor with the arguments swapped, which is faster than container_has_child.
2018-08-08Allow a fallback color to be specified for swaybgBrian Ashworth-0/+1
This allows for a color to be set when the wallpaper does not fill the entire output. If specified, the fallback color is also used when the image path is inaccessible.
2018-08-08Deny moving a sticky container to workspace if it's the same outputRyan Dwyer-0/+2
Rationale: Sticky containers are always assigned to the visible workspace. The basic idea here is to check the destination's output (move.c:190). But if the command was `move container to workspace x` then a workspace might have been created for it. We could destroy the workspace in this case, but that results in unnecessary IPC events. To avoid this, the logic for `move container to workspace x` has been adjusted. It now delays creating the workspace until the end, and uses `workspace_get_initial_output` to determine and check the output before creating it.
2018-08-08Fix edge cases when moving floating container to new workspaceRyan Dwyer-3/+6
* Removes container_floating_move_to_container, instead opting to put that logic in container_move_to * In the seat code, focusing a floating view now updates the pending state only and lets the next transaction carry it over to the current state. This is required, otherwise it would crash. * When unfullscreening a floating container, an output check is now done to see if it should center it.
2018-08-08Implement move to workspace on a floating containerRyan Dwyer-0/+8
Also adjusts container_floating_translate to not change the current properties directly.
2018-08-06Merge pull request #2268 from emersion/server-decoration-bordersDrew DeVault-1/+31
Enable borders on floating SSD xdg-shell views
2018-08-06Handle views created after decoration mode is sent for xdg-shellemersion-0/+9
2018-08-06Listen to server-decoration mode changesemersion-1/+22
2018-08-06commands: complete workspace implementationIan Fan-1/+3
Allow optional --no-auto-back-and-forth flag, as well as refactoring some logic
2018-08-06commands: fix layout implementation (also better name for previous split layout)Ian Fan-1/+1
2018-08-06commands: complete move implementationIan Fan-0/+5
2018-08-04Move workspace pid code to root.cRyan Dwyer-4/+4
2018-08-04Separate root-related codeRyan Dwyer-48/+58
This creates a root.c and moves bits and pieces from elsewhere into it. * layout_init has been renamed to root_create and moved into root.c * root_destroy has been created and is called on shutdown * scratchpad code has been moved into root.c, because hidden scratchpad containers are stored in the root struct
2018-08-03Remove swaynag_clone and use memcpyBrian Ashworth-4/+0
2018-08-03Write to swaynag pipe fd directly on config errorsBrian Ashworth-6/+42
2018-08-03Show swaynag on config errorsBrian Ashworth-3/+7
2018-08-03Fix crash when moving cursor over a fullscreen split containerRyan Dwyer-3/+3
Calling container_at_view fails an assertion if the container isn't a view. Calling tiling_container_at works correctly, as that function checks if the container is a view and calls container_at_view if so.
2018-08-02Fix pointer events for fullscreen viewsemersion-0/+4
2018-08-02Revert "Revert "Fix popups""Ryan Dwyer-9/+21
This reverts commit 9aa258d33a9baa42895214da7e82f4568fcb8f76. Reverting the revert, so that popups can be fixed.
2018-08-02Merge pull request #2366 from RedSoxFan/nagbarDrew DeVault-0/+159
Implement swaynag
2018-08-02Merge branch 'master' into nagbarRyan Dwyer-13/+7
2018-08-02Revert "Fix popups"Drew DeVault-21/+9
This reverts commit de86d65627e96cffe77f4abf11c4a0b982326ff9.
2018-08-02Merge branch 'master' into fix-resize-wiggleemersion-14/+32
2018-08-01swaynag: address some more of sircmpwn's commentsBrian Ashworth-1/+2
Fixes segfauls for any case where swaynag->outputs was not inititalized including -h/--help, -v/--version, and invalid arguments. Sets sane defaults for colors not given. Any color not given will fallback to the default color values for type error. Adds support for a hidpi cursor
2018-08-01swaynag: fix hidpiBrian Ashworth-1/+7
2018-08-01swaynag: allow more config optionsBrian Ashworth-14/+17
2018-08-01swaynag: refactor {sway_,}nagbar to swaynagBrian Ashworth-51/+52
2018-08-01swaynag: split config into own file and fix optindBrian Ashworth-0/+14
2018-08-01swaynag: implement config file supportBrian Ashworth-16/+29
2018-08-01Address first round review for swaynagBrian Ashworth-0/+0
2018-08-01Support a detailed message in swaynagbarBrian Ashworth-0/+27
2018-08-01Implements swaynagbarBrian Ashworth-0/+94
2018-08-01Merge pull request #2391 from RyanDwyer/fix-popups-v2Drew DeVault-9/+24
Fix popups (v2)
2018-08-01ipc: remove extraneous valuesIan Fan-2/+0
Removes IPC_EVENT_MODIFIER and IPC_EVENT_INPUT, which were sway-specific and unused
2018-08-01ipc: prevent emitting a workspace::focus event when moving a container to a ↵Ian Fan-1/+1
different workspace or output When a container is moved from, say, workspace 1 to workspace 2, workspace 2 is focused in order to arrange the windows before focus is moved back to workspace 1, which caused a workspace:focus event from workspace 2 to workspace 1 to be emitted. This commit inhibits that event.
2018-08-01ipc: add tick eventIan Fan-0/+2
2018-08-01ipc: add binding eventIan Fan-2/+1
2018-08-01ipc: add window::mark eventIan Fan-0/+2
2018-08-01ipc: add shutdown eventIan Fan-2/+4
2018-08-01Correctly track saved surfaces during multiple transactionsRyan Dwyer-13/+7
Fixes #2364. Suppose a view is 600px wide, and we tell it to resize to 601px during a resize operation. We create a transaction, save the 600px buffer and send the configure. This buffer is saved into the associated instruction, and is rendered while we wait for the view to commit a 601px buffer. Before the view commits the 601px buffer, suppose we tell it to resize to 602px. The new transaction will also save the buffer, but it's still the 600px buffer because we haven't received a new one yet. Then suppose the view commits its original 601px buffer. This completes the first transaction, so we apply the 601px width to the container. There's still the second (now only) transaction remaining, so we render the saved buffer from that. But this is still the 600px buffer, and we believe it's 601px. Whoops. The problem here is we can't stack buffers like this. So this commit removes the saved buffer from the instructions, places it in the view instead, and re-saves the latest buffer every time the view completes a transaction and still has further pending transactions. As saved buffers are now specific to views rather than instructions, the functions for saving and removing the saved buffer have been moved to view.c. The calls to save and restore the buffer have been relocated to more appropriate functions too, favouring transaction_commit and transaction_apply rather than transaction_add_container and transaction_destroy.
2018-07-31Close popups when changing focusRyan Dwyer-0/+3
Also reverts the send frame done changes from the previous commit.
2018-07-31Fix popupsRyan Dwyer-9/+21
Fixes the render and container_at order for popups. Fixes #2210 For rendering: * render_view_surfaces has been renamed to render_view_toplevels * render_view_toplevels now uses output_surface_for_each_surface (which is now public), as that function uses wlr_surface_for_each_surface which doesn't descend into popups * Views now have a for_each_popup iterator, which is used by the renderer to render the focused view's popups * When rendering a popup, toplevels (xdg subsurfaces) of that popup are also rendered For sending frame done, the logic has been updated to match the rendering logic: * send_frame_done_container no longer descends into popups * for_each_popup is used to send frame done to the focused view's popups and their child toplevels For container_at: * floating_container_at is now static, which means it had to be moved higher in the file. * container_at now considers popups for the focused view before checking containers. * tiling_container_at has been introduced, so that it doesn't call container_at recursively (it would check popups recursively if it did)
2018-07-30Merge pull request #2367 from emersion/iterator-redesignDrew DeVault-28/+17
Refactor surface iterators
2018-07-30Merge pull request #2381 from frsfnrrg/key-repeatDrew DeVault-0/+3
Implement key repeat for keybindings
2018-07-30delete references to swaygrabEric Engestrom-10/+0
2018-07-30util.h: add missing includeEric Engestrom-0/+1
parse_boolean() takes and returns a `bool`
2018-07-30Fix title textures on scale changeBrian Ashworth-0/+2
2018-07-29Bindings use advised keyboard repeat parametersfrsfnrrg-2/+0
Now 'repeat_delay' and 'repeat_rate' control the initial delay and rate (per second) of repeated binding invocations. If the repeat delay is zero, binding repetition is disabled. When the repeat rate is zero, the binding is repeated exactly once, assuming no other key events intervene.