Rename MouseWindowEvent variants.

This commit is contained in:
Ms2ger 2015-01-05 12:08:16 +01:00
parent 65ee8166bd
commit be683a0888
7 changed files with 25 additions and 28 deletions

View file

@ -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 {