aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Report scroll deltas in lines for non-touch devices on OS XRobert Knight2015-06-141-2/+6
| | | | | | Scroll deltas on OS X may be reported either as pixel deltas to scroll by if supported by the device or line/row deltas otherwise.
* Correct typo in MouseScrollDelta docsRobert Knight2015-06-131-1/+1
|
* Express scroll deltas as either line or pixel deltasRobert Knight2015-06-135-8/+33
| | | | | | | | | | | | 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.
* Merge pull request #480 from tomaka/leaking-colormaptomaka2015-06-091-1/+6
|\ | | | | Fix leaking color map and destruction of IM
| * Fix leaking color map and destruction of IMPierre Krieger2015-06-051-1/+6
| |
* | Merge pull request #482 from frewsxcv/patch-2tomaka2015-06-091-1/+1
|\ \ | |/ |/| Alphabetize crate declarations
| * Alphabetize crate declarationsCorey Farwell2015-06-091-1/+1
|/
* Merge pull request #479 from metajack/official-cratestomaka2015-06-042-4/+4
|\ | | | | Switch to the official crates.
| * Switch to the official crates.Jack Moffitt2015-06-032-4/+4
|/ | | | cocoa, core-foundation, and core-graphics are now on crates.io.
* Merge pull request #475 from fkaa/cocoa-glcaptomaka2015-05-261-9/+17
|\ | | | | Add OS version detection on cocoa for selecting latest gl version. Fixes #470
| * Add OS version detection on cocoa for selecting latest gl version. Fixes #470Felix Kaaman2015-05-241-9/+17
| |
* | Merge pull request #476 from aepsil0n/x11-cursor-grab-fixtomaka2015-05-261-4/+9
|\ \ | |/ |/| Fix set_cursor_state on X11
| * 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.
* Merge pull request #453 from tomaka/transparencytomaka2015-05-246-4/+80
|\ | | | | Add API for transparency and decorations and add support for win32
| * Switch to dwmapiPierre Krieger2015-05-243-11/+9
| |
| * Add API for transparency and decorations and add support for win32Pierre Krieger2015-05-245-2/+80
|/
* Merge pull request #469 from fkaa/cocoa-vsynctomaka2015-05-231-4/+2
|\ | | | | Fix vsync not being disabled by default in cocoa
| * Fix vsync not being disabled by default in cocoaFelix Kaaman2015-05-231-4/+2
| |
* | Merge pull request #464 from tomaka/wgl-adjustementstomaka2015-05-222-140/+170
|\ \ | | | | | | Several WGL cleanups
| * | Several WGL cleanupsPierre Krieger2015-05-222-140/+170
|/ /
* | Merge pull request #460 from tomaka/fix-compilation-32bitstomaka2015-05-212-2/+2
|\ \ | | | | | | Fix the compilation on 32bits linux
| * | Fix the compilation on 32bits linuxPierre Krieger2015-05-212-2/+2
|/ /
* | Fix docs publication not workingtomaka2015-05-211-1/+1
| |
* | Test on stable Rust instead of betatomaka2015-05-211-1/+1
| |
* | Publish 0.1.5tomaka2015-05-211-1/+1
| |
* | Merge pull request #459 from tomaka/win32-egl-2tomaka2015-05-217-27/+133
|\ \ | | | | | | Allow creating EGL contexts on win32 with the AMD DLLs
| * | Allow creating EGL contexts on win32 with the AMD DLLsPierre Krieger2015-05-217-27/+133
|/ /
* | Merge pull request #458 from tomaka/detach-wgltomaka2015-05-217-427/+531
|\ \ | |/ |/| Detach wgl and win32
| * Detach wgl and win32Pierre Krieger2015-05-217-427/+531
|/
* Merge pull request #457 from tomaka/appveyortomaka2015-05-201-4/+13
|\ | | | | Update the appveyor file for 64bits builds
| * Update the appveyor file for 64bits buildsPierre Krieger2015-05-201-4/+13
|/
* Merge pull request #456 from aweinstock314/numlock-fixtomaka2015-05-191-2/+8
|\ | | | | Fix handling of numpad keys w.r.t. numlock (derived from fix mentione…
| * 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
* Merge pull request #455 from tomaka/x-reworktomaka2015-05-186-915/+938
|\ | | | | Rework the X implementation to use only one X connection
| * Rework the X implementation to use only one X connectionPierre Krieger2015-05-176-915/+938
|/
* Publish 0.1.4tomaka2015-05-161-1/+1
|
* Merge pull request #454 from tomaka/opengl-3tomaka2015-05-161-69/+94
|\ | | | | Fix GLX creating only 3.0 contexts
| * Fix GLX creating only 3.0 contextsPierre Krieger2015-05-161-69/+94
|/
* Merge pull request #452 from vberger/waylandtomaka2015-05-154-9/+273
|\ | | | | Implement Keyboard support for the wayland backend
| * Implement most of the keysyms for wayland.Victor Berger2015-05-151-2/+165
| |
| * UTF8 keyboard events for wayland.Victor Berger2015-05-151-3/+13
| |
| * Basic raw keyboard handling.Victor Berger2015-05-144-9/+100
| |
* | Merge pull request #450 from vberger/x-wayland-splittomaka2015-05-151-24/+31
|\ \ | |/ |/| Do the linux backend choice only once at startup.
| * Do the linux backend choice only once at startup.Victor Berger2015-05-131-24/+31
|/
* Merge pull request #443 from vberger/waylandtomaka2015-05-133-135/+172
|\ | | | | Some more work on the wayland backend
| * Update to new Platform structure.Victor Berger2015-05-131-1/+3
| |
| * Move WaylandContext in its own file.Victor Berger2015-05-132-120/+129
| |
| * Implement some more functions for wayland.Victor Berger2015-05-132-12/+28
| | | | | | | | | | - set/get_inner_size() - set_title
| * wayland: Fix MonitorID::get_dimensions() and fullscreen support.Victor Berger2015-05-131-5/+15
|/