aboutsummaryrefslogtreecommitdiff
path: root/sway/input/cursor.c
AgeCommit message (Collapse)Author
2018-05-20Fix focus_follows_mouse over swaybarDrew DeVault
If you moved your mouse over swaybar (e.g. to scroll between workspaces), focus would move to the workspace. This is not the right thing to do. The solution is complicated by the fact that if you move your mouse into a new output with an empty workspace, that workspace _should_ receive focus.
2018-05-13Idle handling for dpms/lockscreen et alMattias Eriksson
Swayidle handles idle events and allows for dpms and lockscreen handling. It also handles systemd sleep events, and can raise a lockscreen on sleep Fixes #541
2018-05-12Send pointer discrete axis values and sourceemersion
Update for swaywm/wlroots#970
2018-05-03Hide cursor on touch downDrew DeVault
2018-05-02Implement basic touch supportDrew DeVault
This required changing container_at_cursor to container_at_coords so that we could get the appropriate surface (and sx/xy) without moving the cursor. Future work: - Simulate a cursor for clients which have not bound to wl_touch - Keep sending motion events when moving outside the surface (#1892) - Bind gestures to sway commands
2018-04-27Update for swaywm/wlroots#923emersion
2018-04-26Add map_from_region commandemersion
2018-04-21Default to current time when triggering cursor eventsemersion
2018-04-21Update cursor when workspace focus changesemersion
2018-04-18Fullscreen rendering and input fixes.Ryan Dwyer
* Render background when using fullscreen, because transparency. * Check that fullscreen surface allows input. * Don't look for surfaces in top layer if there's a fullscreen view.
2018-04-18More fullscreen fixes.Ryan Dwyer
* 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).
2018-04-10Implement cursor event simulation with sway commands.Danny Bautista
2018-04-08Fix cursor motion issuesDrew DeVault
Use only one canonical cursor x/y position and send cursor enter when mouse is warped. Tangentally related to #1714
2018-04-08Use wlr_surface_point_accepts_input for unmanaged surfacesemersion
2018-04-08Implement tablet tool supportDrew DeVault
2018-04-06Fix focus_follows_mouse issuesDrew DeVault
2018-04-05Handle unmanaged surfaces motionemersion
2018-04-04Address review feedbackDrew DeVault
2018-04-04Implement input-inhibit in sway, swaylockDrew DeVault
2018-04-02Give layer shells under the shell layer focusDrew DeVault
2018-04-02Merge branch 'wlroots' into view-redesignemersion
2018-04-02Xwayland unmanaged views aren't views anymoreemersion
2018-04-02rename seat functionsTony Crisci
2018-03-31Merge pull request #1684 from swaywm/follow-warpDrew DeVault
Implement focus_follows_mouse, mouse_warping
2018-03-31Address review feedbackDrew DeVault
2018-03-31Fix interaction between warping and followingDrew DeVault
2018-03-31Implement focus_follows_mouseDrew DeVault
Also contains two other small changes: - Clicking any button will focus the container clicked (not just left) - Remove seamless_mouse (doesn't make sense on wlroots)
2018-03-31Implement mouse warpingDrew DeVault
2018-03-31Fix xwayland configure in set_sizeemersion
2018-03-31Check for null containerDrew DeVault
2018-03-31Merge pull request #1682 from emersion/unmanaged-no-containerDrew DeVault
Make it clear that unmanaged views don't have a container
2018-03-31Fix bug with previous commitDrew DeVault
2018-03-31Make it clear that unmanaged views don't have a containeremersion
view->swayc is NULL anyway.
2018-03-31Fix #1104Drew DeVault
2018-03-30Use wlr_surface_point_accepts_inputDrew DeVault
2018-03-30Pass pointer events to surface layersDrew DeVault
2018-03-30Merge branch 'wlroots' into client-cursorsemersion
2018-03-30Fix segfaults when focusing a workspaceemersion
2018-03-30Fix pointer events for hidden workspacesemersion
2018-03-30Handle set_cursor requests from clientsemersion
Allow clients to set a custom cursor if they have the seat's pointer focus.
2018-03-29Revert "Merge pull request #1653 from swaywm/revert-1647-refactor-tree"Tony Crisci
This reverts commit 472e81f35d689d67cda241acafda91c688d61046, reversing changes made to 6b7841b11ff4cd35f54d69dc92029855893e5ce0.
2018-03-29Revert "Refactor tree"Drew DeVault
2018-03-29address feedbackTony Crisci
2018-03-29rename container functionsTony Crisci
2018-03-29move tree includes to their own directoryTony Crisci
2018-03-28Update input events per swaywm/wlroots#765Drew DeVault
2018-01-22config reload: destroy old seat when removed from configDominique Martinet
This adds new sway_seat_destroy and sway_cursor_destroy helpers and compare new and old config on free
2018-01-14render override redirectTony Crisci
2018-01-05sway: change all sway_log to wlr_logDominique Martinet
2017-12-19dont set cursor image on motionTony Crisci