aboutsummaryrefslogtreecommitdiff
path: root/rootston
AgeCommit message (Collapse)Author
2018-04-02Merge pull request #804 from swaywm/keyboard-layersDrew DeVault
Add keyboard input to layer surfaces
2018-04-02Add wlr_surface_is_*_surfaceDrew DeVault
And wlr_*_surface_from_wlr_surface
2018-04-02Address review feedbackDrew DeVault
2018-04-02Handle layer surfaces below shell surfacesDrew DeVault
2018-04-02Change meson option names to use hypenDanilo Spinella
Replace underscore with hypen in meson option names, following style recommendations. http://mesonbuild.com/Style-guide.html#naming-options
2018-04-02Always give keyboard focus to the topmost layerDrew DeVault
2018-04-02Identify topmost interactive layer surfaceDrew DeVault
2018-04-02Don't reset exclusive between layer shell passesDrew DeVault
This is not the intended behavior of exclusive zones, the second pass is meant to respect the usable area.
2018-03-31FIx crash on touch downDrew DeVault
2018-03-31Initialize roots_output to fix -Wmaybe-uninitializedOrestis Floros
With -O2: ../rootston/desktop.c: In function ‘desktop_surface_at’: ../rootston/desktop.c:714:18: error: ‘roots_output’ may be used uninitialized in this function [-Werror=maybe-uninitialized] if ((surface = layer_surface_at(roots_output, ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ &roots_output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM], ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ox, oy, sx, sy))) { ~~~~~~~~~~~~~~~
2018-03-31xwayland: specify xwm cursor stride in bytesemersion
2018-03-30Add wlr_surface_point_accepts_inputDrew DeVault
Ref https://github.com/swaywm/sway/pull/1674
2018-03-30Address review feedbackDrew DeVault
2018-03-30Minor bugfixesDrew DeVault
2018-03-30Add pointer support to layer shell exampleDrew DeVault
2018-03-30Find layer surfaces for input eventsDrew DeVault
2018-03-30Refactor cursor event passhtroughDrew DeVault
2018-03-30xwayland: rename map_notify to map for consistencyemersion
2018-03-29Fix maximized windows interaction with layer shellDrew DeVault
If there were no layer surfaces the usable area of the output would be an empty box.
2018-03-29Merge pull request #720 from acrisci/xdg-positioneremersion
xdg-positioner
2018-03-28toplevel_box to toplevel_sx_boxTony Crisci
2018-03-28add todo for rotated unconstrained popupTony Crisci
2018-03-28add comment for output box in toplevel coordsTony Crisci
2018-03-28popup constraint handle empty output layoutTony Crisci
2018-03-28xdg-positioner: honor constraint flagsTony Crisci
2018-03-28xdg-positioner wlr abstractionsTony Crisci
2018-03-28positioner rootston cleanup and bugfixTony Crisci
2018-03-28fix xdg-positioner left constrain bugTony Crisci
2018-03-28Remove width_mm from tablet eventsDrew DeVault
2018-03-28cleanup xdg-positioner rootston codeTony Crisci
2018-03-28Remove width_mm from wlr_touch eventsDrew DeVault
2018-03-28Remove width_mm from wlr_pointer eventsDrew DeVault
2018-03-28Merge branch 'master' into xdg-positionerTony Crisci
2018-03-27Address further review feedbackDrew DeVault
2018-03-27Address some more feedbackDrew DeVault
2018-03-27Address @emersion's feedbackDrew DeVault
2018-03-27Fix surface layer damage trackingDrew DeVault
2018-03-27Add margin animation to the example demoDrew DeVault
2018-03-27Fix layer rendering/layout bugsDrew DeVault
2018-03-27Handle usable area for maximized windowsDrew DeVault
Also fixes some bugs
2018-03-27Reset exclusivity after shell layerDrew DeVault
Also fixes an issue which was applying exclusivity to all edges
2018-03-27Fix rebase issues; rearrange layers on destroyDrew DeVault
2018-03-27Use 0 for default width/height (rather than -1)Drew DeVault
2018-03-27Add layer_surface.closeDrew DeVault
2018-03-27Fix exclusive zone among other layersDrew DeVault
2018-03-27Gracefully deal with outputs being removedDrew DeVault
2018-03-27Implement layer surface damageDrew DeVault
2018-03-27Arrange & render layer surfacesDrew DeVault
2018-03-27Fix issues preventing layer from getting allocatedDrew DeVault
Now all of the steps to get rootston a reference to the layer surface are correctly wired up.
2018-03-27Add broken test client and rootston stubsDrew DeVault