Richer input events
This expands input events to represent sub-pixel mouse positions, devices responsible for generating events, and raw device-oriented events. The X11 back end is refactored to make full use of the new expressiveness. Other backends have had new functionality minimally stubbed out, save for the macos backend which already supports sub-pixel mouse positions.
This commit is contained in:
parent
544ee13bf3
commit
22bc119cd7
19 changed files with 994 additions and 786 deletions
|
|
@ -58,6 +58,14 @@ pub enum WindowId {
|
|||
Wayland(wayland::WindowId)
|
||||
}
|
||||
|
||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
pub enum DeviceId {
|
||||
#[doc(hidden)]
|
||||
X(x11::DeviceId),
|
||||
#[doc(hidden)]
|
||||
Wayland(wayland::DeviceId)
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
pub enum MonitorId {
|
||||
#[doc(hidden)]
|
||||
|
|
@ -137,8 +145,8 @@ impl Window2 {
|
|||
}
|
||||
},
|
||||
|
||||
UnixBackend::X(ref connec) => {
|
||||
x11::Window2::new(events_loop, connec, window, pl_attribs).map(Window2::X)
|
||||
UnixBackend::X(_) => {
|
||||
x11::Window2::new(events_loop, window, pl_attribs).map(Window2::X)
|
||||
},
|
||||
UnixBackend::Error(_) => {
|
||||
// If the Backend is Error(), it is not possible to instanciate an EventsLoop at all,
|
||||
|
|
@ -308,8 +316,8 @@ impl EventsLoop {
|
|||
EventsLoop::Wayland(wayland::EventsLoop::new(ctxt.clone()))
|
||||
},
|
||||
|
||||
UnixBackend::X(_) => {
|
||||
EventsLoop::X(x11::EventsLoop::new())
|
||||
UnixBackend::X(ref ctxt) => {
|
||||
EventsLoop::X(x11::EventsLoop::new(ctxt.clone()))
|
||||
},
|
||||
|
||||
UnixBackend::Error(_) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue