aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/x11/window.rs
Commit message (Collapse)AuthorAgeFilesLines
...
| * Split creating an EGL context in two partsPierre Krieger2015-07-181-2/+2
| |
* | Address code review feedbackRobert Knight2015-07-131-31/+24
| | | | | | | | | | | | | | | | * Fix an issue where PollEventsIterator::next() would fail to return keyboard input and mouse events immediately but instead only return them on the next call to next() * Inline process_generic_event() and queue_event()
* | X11 - Ignore scroll events that happen outside of Glutin windowsRobert Knight2015-06-281-2/+1
| | | | | | | | | | | | | | | | | | | | | | Scroll deltas are calculated in X11 by comparing the current and previous absolute values for the scroll axis when a scroll motion event is received. If the user scrolls whilst the cursor is outside of the window then an incorrect delta is reported when the cursor re-enters the window. Fix this by resetting the last-seen axis values whenever the cursor re-enters the window.
* | Remove XInput2 code for handling keyboard eventsRobert Knight2015-06-281-4/+6
| | | | | | | | | | | | | | * For the moment we're still using plain core X11 events for handling keyboard activity, so remove the XInput2 code for that * Small refactoring of X11 input handling and documentation fixes
* | Use XInput2 for event handlingRobert Knight2015-06-281-86/+73
|/ | | | | This provides smooth scrolling for touchpad devices and will enable support for touch events etc. in future.
* Fix fullscreen mode on X11Pierre Krieger2015-06-261-15/+31
|
* Merge pull request #488 from tomaka/rem-is-closedtomaka2015-06-171-6/+2
|\ | | | | Remove the is_closed function
| * Remove the is_closed functionPierre Krieger2015-06-161-6/+2
| |
* | Handle errors from MakeCurrent and SwapBuffersPierre Krieger2015-06-161-4/+5
|/
* Merge pull request #484 from pinumbernumber/mastertomaka2015-06-161-1/+25
|\ | | | | Implement transparency for X11
| * Implement transparency for X11pinumbernumber2015-06-141-1/+25
| |
* | Express scroll deltas as either line or pixel deltasRobert Knight2015-06-131-2/+5
|/ | | | | | | | | | | | Depending on the platform and device, scroll deltas may either be represented as pixel deltas specifying the amount in pixels to scroll or they may be expressed in 'lines' or 'chunks' for low resolution devices (eg. a traditional mouse wheel). Pixel deltas are currently available on OS X. X11 currently supports only integer line deltas, though pixel deltas are available via XInput2. Windows supports fractional line deltas.
* Fix leaking color map and destruction of IMPierre Krieger2015-06-051-1/+6
|
* Fix set_cursor_state on X11Eduard Bopp2015-05-251-4/+9
| | | | | When the state is not changed, no code must be executed. Such no-ops previously hit the unimplemented cursor hiding.
* Fix the compilation on 32bits linuxPierre Krieger2015-05-211-1/+1
|
* Allow creating EGL contexts on win32 with the AMD DLLsPierre Krieger2015-05-211-2/+2
|
* fixup! Fix handling of numpad keys w.r.t. numlock (derived from fix ↵Avi Weinstock2015-05-181-1/+1
| | | | mentioned at http://www.kaffe.org/pipermail/kaffe/2000-April/175201.html).
* Fix handling of numpad keys w.r.t. numlock (derived from fix mentioned at ↵Avi Weinstock2015-05-181-2/+8
| | | | | | | http://www.kaffe.org/pipermail/kaffe/2000-April/175201.html). Conflicts: src/api/x11/window.rs
* Rework the X implementation to use only one X connectionPierre Krieger2015-05-171-0/+803