aboutsummaryrefslogtreecommitdiffstats
path: root/src/x11/window
Commit message (Collapse)AuthorAgeFilesLines
* Removed as_slice_with_nul as CString now derefs to a CStrmitchmindtree2015-02-221-1/+1
|
* RingBuf -> VecDeque for other platforms, as_slice_with_nul -> as_bytes_with_nulmitchmindtree2015-02-222-7/+7
|
* expose the platform-specific window handle (currently Win only)Ryan Stewart2015-02-201-0/+4
|
* Improve the OpenGL context request systemPierre Krieger2015-02-181-6/+18
|
* Don't call MakeCurrent(null, null) when destroyingPierre Krieger2015-02-181-1/+2
|
* Fix poll_events returning None when it shouldn'ttomaka2015-02-121-116/+116
|
* Merge pull request #70 from tomaka/fix-iteratorstomaka2015-02-101-141/+176
|\ | | | | Use platform-specific iterators instead
| * X11: use platform specific iterators insteadPierre Krieger2015-02-101-141/+176
| |
* | Implement get_outer_size() on x11tomaka2015-02-101-5/+5
|/
* Merge pull request #254 from aepsil0n/mousebutton-renamingtomaka2015-02-051-4/+4
|\ | | | | Rename enum variants of MouseButton
| * Rename enum variants of MouseButtonEduard Bopp2015-02-051-4/+4
| | | | | | | | | | With enums that are namespaced by default, it seems reasonable to be less redundant in the variant naming here.
* | Add some more support for X11 keys (partially fixes #251)Manish Goregaokar2015-02-051-49/+49
|/
* On some X11 driver implementations, calling XCloseDisplay from a different ↵Glenn Watson2015-01-301-17/+25
| | | | | | | thread causes memory corruption, resulting in a crash. Change window proxy to be a weak reference so that the XCloseDisplay is always called from the main window.
* Merge pull request #220 from tomaka/x11-vsynctomaka2015-01-251-2/+45
|\ | | | | Implement vsync for x11 and add vsync example
| * Implement vsync for x11 and add vsync examplePierre Krieger2015-01-231-2/+45
| |
* | Merge pull request #221 from tomaka/fix-rctomaka2015-01-251-0/+5
|\ \ | | | | | | Fix race condition with XOpenIM
| * | Fix race condition with XOpenIMPierre Krieger2015-01-231-0/+5
| |/
* / fix for latest rustcAndrew Kelley2015-01-231-2/+1
|/
* Fix log prefixGlenn Watson2015-01-231-1/+1
|
* Some GPU/driver combinations have glxCreateContextAttribsARB present, but it ↵Glenn Watson2015-01-221-2/+14
| | | | fails with an X error. In this case, catch the X error and fall back to the old method of creating a context.
* `c_char` isn't always `i8`Akos Kiss2015-01-201-1/+1
|
* Add missing get_api stubs.Glenn Watson2015-01-191-0/+4
| | | | | | | Add hidpi_factor() support for retina displays. Fix Resize and MouseMoved events to handle retina displays. Fix inverted y position for MouseMoved events on mac. Fix initial painting on retina display.
* x11, android, win32: [ui]size, [u]int -> [ui]32Andrey Lesnikov2015-01-132-16/+16
|
* Merge pull request #192 from bjwbell/mouse-cursorstomaka2015-01-131-1/+48
|\ | | | | Add mouse cursor support
| * Refine X11 cursor selectionsBryan Bell2015-01-121-19/+22
| | | | | | | | | | | | | | For MouseCursor::Cell, NotAllowed, NoDrop, Grab, Grabbing, ... set the appropriate X11 cursor. Also alphabetize the cursors listed in the MouseCursor enum.
| * Add mouse cursor supportBryan Bell2015-01-121-1/+45
| | | | | | | | | | | | | | Add a new api, window.set_cursor, for setting the cursor. The enum MouseCursor lists the possible cursors. Only X11 is implemented. On OSX, Android, & Win32 the window.set_cursor function either does nothing or calls the "unimplemented!" macro.
* | Change uint/int to usize/isizeBryan Bell2015-01-122-18/+18
|/ | | | | From https://github.com/rust-lang/rfcs/pull/544 the types uint/int were renamed to usize/isize.
* Update to latest Rust nightlyAustin Bonander2015-01-081-23/+27
|
* Update for RustcPierre Krieger2015-01-051-2/+2
|
* Update for RustcPierre Krieger2015-01-031-2/+4
|
* Change the way that events are represented.Ty Overby2015-01-012-17/+19
| | | | | | | | | | The bulk of this commit is changing instances of Vec to RingBuf which is optimized for the push_back() / pop_front() strategy that is used internaly in the event system. The glutin custom iterators are now just wrappers around the RingBuf iterator type. This will bring the running time of iterator traversal from O(n^2) to O(n) because shifting-on-delete won't be performed.
* Unify WindowBuilder and HeadlessRendererBuilder for easier implementationsPierre Krieger2014-12-311-3/+3
|
* Update for changes in Send/Sync traitsPierre Krieger2014-12-301-0/+3
|
* Add resize example, fix warnings, make callback an option so it can be removed.Glenn Watson2014-12-191-1/+1
|
* Add callback function to allow resize messages to be sent on mac.Glenn Watson2014-12-191-0/+3
|
* Merge pull request #161 from glennw/thread-proxytomaka2014-12-181-51/+92
|\ | | | | Introduce a WindowProxy for accessing a subset of functionality
| * Fix event nameGlenn Watson2014-12-181-2/+2
| |
| * Introduce a WindowProxy for accessing a subset of functionalityGlenn Watson2014-12-171-51/+92
| | | | | | | | | | | | | | from other threads. This currently provides a way for other threads to wakeup a blocked event loop on X11. Other platforms have stub functions that need to be implemented. This is similar to the functionality of glfwPostEmptyEvent.
* | Update for rustc for x11Pierre Krieger2014-12-171-8/+8
|/
* Add get_api() functionPierre Krieger2014-12-071-0/+5
|
* Merge pull request #154 from tomaka/fix-warning-x11tomaka2014-12-021-2/+2
|\ | | | | Fix deprecation warning on X11
| * Fix deprecation warning on X11Pierre Krieger2014-12-021-2/+2
| |
* | Fix multisampling not working on X11Pierre Krieger2014-12-021-1/+2
|/
* Implement multisampling for x11Pierre Krieger2014-11-271-2/+9
|
* Update for rustcPierre Krieger2014-11-261-1/+1
|
* Implement lists sharingPierre Krieger2014-11-241-2/+8
|
* Update for rustcPierre Krieger2014-11-192-1000/+1004
|
* Add support for with_visibility(), show(), hide() on X11.Glenn Watson2014-11-181-1/+16
|
* Add ctrl, shift, alt events for X11.Glenn Watson2014-11-171-6/+6
|
* Remove call to glViewport in X11 implementationPierre Krieger2014-11-091-13/+0
|