aboutsummaryrefslogtreecommitdiff
path: root/rootston/cursor.c
AgeCommit message (Collapse)Author
2018-02-06Always notify seat on button pressVincent Vanlaer
When the cursor is not over a view, wlr_seat_pointer_notify_button is not called. However, this function does the bookkeeping of the pointer state with regards to the number of pressed buttons. Because this function also sends updates to the focused view, it has been moved down, after the focus has been updated.
2018-01-23fix decorations on wayland backendTony Crisci
2018-01-21rename wlr_deco_part to roots_deco_partTony Crisci
2018-01-21fix cursor issueTony Crisci
2018-01-21make it work with rotationTony Crisci
2018-01-16basic decorationsTony Crisci
2017-12-27rootston: remove input event ring bufferTony Crisci
2017-12-22Fix rootston seat button countemersion
2017-12-11Set default cursor image in rootstonemersion
2017-12-08bring edges into wlrTony Crisci
2017-11-21Merge branch 'master' into fullscreenemersion
2017-11-21Add fullscreen command, fix view_at with fullscreen viewsemersion
2017-11-20Merge branch 'master' into laggy-move-resizeemersion
2017-11-20Set min view size to 1x1emersion
2017-11-19Merge branch 'master' into laggy-move-resizeemersion
2017-11-19Add roots_seat_cycle_focusemersion
2017-11-19Make the close command use roots_seat_get_focus, rename a few symbolsemersion
2017-11-19Remove roots_seat_{add,remove}_viewemersion
2017-11-19Merge branch 'master' into seat-viewsemersion
2017-11-19rootston: remove grab listenersTony Crisci
2017-11-19data-device: wlr-drag-iconTony Crisci
2017-11-18Merge branch 'master' into seat-viewsemersion
2017-11-18rootston: seat/cursor 80col cleanupTony Crisci
2017-11-18Fixed a bug with move-resize, removed xdg-shell ack_configure eventemersion
Fixed move-resizing a view when only one coordinate changes.
2017-11-17rootston: add per-seat viewsemersion
2017-11-16rename touch slot to touch idTony Crisci
2017-11-16wlr-seat: return serial from touch down interfaceTony Crisci
2017-11-16Merge branch 'master' into feature/wlr-seat-touchTony Crisci
2017-11-16Fix a bunch of mistakes detected with scan-buildemersion
2017-11-15rootston: touch to focusTony Crisci
2017-11-15put dnd icon in the right placeTony Crisci
2017-11-15wlr-touch: make dnd workTony Crisci
2017-11-15wlr-seat: refactor touch grab interfaceTony Crisci
2017-11-15basic touch dndTony Crisci
2017-11-15wlr-seat: default touch grabTony Crisci
2017-11-15wlr-seat: basic touchTony Crisci
2017-11-12Introduce wlr_xcursor_manageremersion
2017-11-11rootston: keep one xcursor_theme per seatemersion
2017-11-11rootston: add roots_xcursor_themeemersion
roots_xcursor_theme loads multiple wlr_xcursor_theme at different scales.
2017-11-11Add scale parameter to wlr_cursor_set_imageemersion
2017-11-11Merge branch 'master' into feature/multiseatTony Crisci
2017-11-11Fix resize issues with some xdg-shell apps.emersion
Also renames view_get_size to view_get_box to be more consistent with wlroots API and make it more obvious that x,y are set (while in roots_view.get_size this isn't the case). Fixes #407
2017-11-10Merge pull request #390 from emersion/rootston-maximizeDrew DeVault
Maximize views in rootston
2017-11-09Merge remote-tracking branch 'origin/master' into hidpiDrew DeVault
2017-11-08rootston: remove old cursor implementationTony Crisci
2017-11-08Better UX when moving/resizing/rotating maximized viewsemersion
2017-11-05Basic maximization implementation for xdg-shellemersion
2017-11-05Merge branch 'master' into feature/multiseatTony Crisci
2017-11-04rootston: move device init to seatTony Crisci
2017-11-04Improve input sensitivityDrew DeVault
We now use doubles until the last minute, which makes it so we can move the pointer more precisely. This also includes a fix for tablet tools, which move absolutely and sometimes do not update the X or Y axis.