mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Rename MouseWindowEvent variants.
This commit is contained in:
parent
65ee8166bd
commit
be683a0888
7 changed files with 25 additions and 28 deletions
|
@ -19,9 +19,9 @@ use std::fmt::{FormatError, Formatter, Show};
|
|||
use std::rc::Rc;
|
||||
|
||||
pub enum MouseWindowEvent {
|
||||
MouseWindowClickEvent(uint, TypedPoint2D<DevicePixel, f32>),
|
||||
MouseWindowMouseDownEvent(uint, TypedPoint2D<DevicePixel, f32>),
|
||||
MouseWindowMouseUpEvent(uint, TypedPoint2D<DevicePixel, f32>),
|
||||
Click(uint, TypedPoint2D<DevicePixel, f32>),
|
||||
MouseDown(uint, TypedPoint2D<DevicePixel, f32>),
|
||||
MouseUp(uint, TypedPoint2D<DevicePixel, f32>),
|
||||
}
|
||||
|
||||
pub enum WindowNavigateMsg {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue