1
0
Fork 0
Commit graph

94 commits

Author SHA1 Message Date
Billy Messenger
f7873f1854 typo 2021-07-14 11:45:06 -05:00
Billy Messenger
d316c6ae54 send initial window resized event in x11 2021-07-14 11:44:00 -05:00
Weird Constructor
50c41755fd
Fix: Check for remaining events in the internal X11/xcb buffers ()
* Fix: Check for remaining events in the internal X11/xcb buffers before going to sleep.

* Also need to set the queue owner to xcb as wrl suggested.
2021-03-04 11:00:42 -06:00
Joakim Frostegård
72b6a4a2d1
Support passing back some events to the platform ()
* Add mutable event status argument to WindowHandler::on_event

* macOS: simplify method declaration for simple mouse event handlers

* macOS: add macro for adding simple keyboard class methods

* macOS: reorder code in mouse_moved

* Take EventStatus as return value in WindowHandler::on_event

* Add doc comments for EventStatus

* Improve EventStatus documentation

* x11: ignore return value of on_event for now

* EventStatus: improve docs

* Improve EventsStatus docs

* Improve EventStatus docs further

* macOS: ignore EventStatus::Ignored for mouse events

* macOS: minor formatting improvement

* improve EventStatus docs again
2021-02-09 14:47:31 -06:00
micah
ef27adeda1 add window argument to WindowHandler::on_frame() 2021-01-27 02:13:08 -05:00
micah
36e4474c8a separate Window::open() into three functions (parented, as_if_parented, and blocking) 2021-01-01 22:52:59 -06:00
micah
86bf222601 PhantomData<*mut ()> in Window to ensure it is !Send 2021-01-01 22:52:59 -06:00
micah
043fe41d05 don't call on_frame on expose events in x11 backend 2020-12-19 15:43:53 -05:00
Micah Johnston
e02854452e remove WindowHandle 2020-12-12 17:15:09 -06:00
Micah Johnston
0633874266 pass WindowHandler as trait object in x11 backend 2020-12-12 17:12:24 -06:00
Micah Johnston
8402310c88 remove Message api 2020-12-12 17:06:50 -06:00
micah
08e56bd5ae remove unnecessary dependencies (log, libc) 2020-12-05 18:01:33 -06:00
Billy Messenger
f696c7d14d implement try_send_message for Linux 2020-12-04 15:29:55 -06:00
Joakim Frostegård
35a03aff17 Split off AppRunner from WindowHandle on Windows and Linux 2020-12-04 20:03:55 +01:00
Micah Johnston
0cbcf989df remove print on unhandled event (produces too much spam) 2020-12-03 23:05:51 -06:00
Joakim Frostegård
1ddd6fa47e api unification: return shared WindowHandle in platform code 2020-11-24 20:41:55 +01:00
Joakim Frostegård
6450bff368 api unification: add Linux support 2020-11-23 22:24:25 +01:00
Joakim Frostegård
0a6a0bdffd Use keyboard_types::KeyboardEvent directly instead of wrapping it 2020-11-14 17:46:12 +01:00
Joakim Frostegård
546b0d6eae Use keyboard-types types directly instead of druid wrappers 2020-11-14 17:46:12 +01:00
Joakim Frostegård
86b2aff624 Attempt to fix linux build 2020-11-14 17:46:12 +01:00
Joakim Frostegård
9748e16ebe Add support for macOS and X11 key events with code from druid 2020-11-14 17:46:12 +01:00
Billy Messenger
2096c37495 rename UseScaleFactor to ScaleFactor 2020-10-20 19:11:47 -05:00
Billy Messenger
579dfee1eb clean up dpi features 2020-10-20 19:02:45 -05:00
Billy Messenger
2ee975231b fix Windows build 2020-10-20 17:04:37 -05:00
Billy Messenger
3fe752ca80 remove min/max resize policy 2020-10-20 16:06:40 -05:00
Billy Messenger
61ef63409b Merge branch 'master' of https://github.com/RustAudio/baseview into master 2020-10-20 15:56:54 -05:00
Billy Messenger
ad12985d08 put WindowHandle back into platform-specific code 2020-10-20 15:52:09 -05:00
William Light
43cdc39335 x11: closure for building WindowHandler 2020-10-20 21:33:52 +02:00
Billy Messenger
a91a5a1126 update x11 code 2020-10-17 17:36:28 -05:00
Billy Messenger
dc5d3b9622 Add Point and Size structs 2020-10-17 14:01:03 -05:00
Billy Messenger
1b9fbf9bb8 refactor and modify events 2020-10-17 13:35:39 -05:00
Billy Messenger
a4c226277c change size hints to physical size 2020-10-15 16:38:09 -05:00
Billy Messenger
aee594d23c add window resize hints 2020-10-15 16:31:38 -05:00
Billy Messenger
0758e4834b fix spacing in use statement 2020-10-15 13:28:21 -05:00
Billy Messenger
61de5e37f7 rename width, height to logical_width, logical_height 2020-10-15 13:26:21 -05:00
Billy Messenger
2bf229575f add UI scaling support 2020-10-15 13:17:03 -05:00
William Light
d5c3ba0bb0 x11/window: take render time into account when computing next frame time 2020-09-15 22:36:42 +02:00
William Light
c26507c322 x11: fix potential missed resize events 2020-09-14 06:21:25 +02:00
William Light
a59ccae56f x11: suppress non-resize configure notify events 2020-09-14 03:30:30 +02:00
William Light
23a43c4cdd x11: refactor cursor logic 2020-09-14 02:47:58 +02:00
Billy Messenger
d156d42e69 refactor x11 cursor changing code into x11/cursor.rs 2020-09-13 19:01:18 -05:00
Billy Messenger
53debfc706 remove unused Mutex import 2020-09-13 18:39:13 -05:00
Billy Messenger
d84a1fde44 Add set_mouse_cursor method to X11 Window 2020-09-13 18:23:51 -05:00
Billy Messenger
c24d12c453 Merge branch 'master' of https://github.com/RustAudio/baseview into master 2020-09-13 09:19:11 -05:00
Billy Messenger
adc8fe0974 Add mouse cursor to Window 2020-09-13 09:19:05 -05:00
William Light
9cad2d1b5a x11: coalesce CONFIGURE_NOTIFY events 2020-09-12 19:31:13 +02:00
William Light
29461b14e4 replace *mut c_void with RawWindowHandle in Parent::WithParent 2020-09-12 19:06:21 +02:00
William Light
47b122c86e remove duplicate imports 2020-09-11 22:36:33 +02:00
William Light
bb18518cf6 fix some rustfmt annoyances 2020-09-11 22:29:29 +02:00
Billy Messenger
3e4c1edfc7 Add method to window so user can get window info 2020-09-11 14:52:32 -05:00