Markus Røyset
Markus Røyset
My main concern is the viability of mapping to mime-type strings on platforms which don't use mime-types for tagging the contents of the clipboard (maybe this is a Windows-only problem,...
I'll be sure to have a look at this once I feel I have a better grasp of what exactly this part of the code is supposed to do. I'm...
The only "raw" event we use for scrolling is `XI_RawMotion`, but that only feeds into a `DeviceEvent`, which Alacritty (to my knowledge) ignores. I suspect that the issue has something...
> The idea is that I always declare a new delegate class when a new callback is added. Can you base this off of the `EventLoopBuilder` added in #2137 instead,...
> specifically to avoid needing users to continually call `device.poll` in order for gpu buffers to actually get mapped Is this still a problem, actually? I believe I've read that...
Can't we just set the flag inside [`Window::drag_window`](https://github.com/rust-windowing/winit/blob/2ae12fb0a0f5c81e5c1ab5c690bbe5a138368ca0/src/platform_impl/windows/window.rs#L339-L360)? `Window` should have access to `WindowState`.
> I guess we could even drop then the whole handling `NCLBUTTONDOWN` event. Wouldn't that re-introduce the issue fixed by #839?
> This list seems to be not maintained. It **is** maintained. Ryan is marked as `E` for `Expert`, which means he is (or at least *was*) willing to answer questions...
cc @mwcampbell @fschutt
The minimal API for Windows would look something like this: ```rust impl WindowsEventLoopBuilder for EventLoopBuilder { pub fn with_callback(&mut self, msg_mask: u32, callback: F) where F: FnMut(*mut c_void, u32, usize,...