Add link following and refactor the profiler.

This commit is contained in:
Tim Kuehn 2013-06-06 15:12:02 -07:00 committed by Patrick Walton
parent e5c0021299
commit a53a7f689d
18 changed files with 325 additions and 107 deletions

View file

@ -12,7 +12,9 @@ use geom::point::Point2D;
pub enum Event {
ResizeEvent(uint, uint, comm::Chan<()>),
ReflowEvent,
ClickEvent(Point2D<f32>),
ClickEvent(uint, Point2D<f32>),
MouseDownEvent(uint, Point2D<f32>),
MouseUpEvent(uint, Point2D<f32>),
}
pub struct Event_ {