1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
use { Event, Input };

/// When window gets or loses cursor
pub trait CursorEvent: Sized {
    /// Creates a cursor event.
    fn from_cursor(cursor: bool, old_event: &Self) -> Option<Self>;
    /// Calls closure if this is a cursor event.
    fn cursor<U, F>(&self, f: F) -> Option<U>
        where F: FnMut(bool) -> U;
    /// Returns cursor arguments.
    fn cursor_args(&self) -> Option<bool> {
        self.cursor(|val| val)
    }
}

/* TODO: Enable when specialization gets stable.
impl<T: GenericEvent> CursorEvent for T {
    fn from_cursor(cursor: bool, old_event: &Self) -> Option<Self> {
        GenericEvent::from_args(CURSOR, &cursor as &Any, old_event)
    }

    fn cursor<U, F>(&self, mut f: F) -> Option<U>
        where F: FnMut(bool) -> U
    {
        if self.event_id() != CURSOR {
            return None;
        }
        self.with_args(|any| {
            if let Some(&cursor) = any.downcast_ref::<bool>() {
                Some(f(cursor))
            } else {
                panic!("Expected bool")
            }
        })
    }
}
*/

impl CursorEvent for Input {
    fn from_cursor(cursor: bool, _old_event: &Self) -> Option<Self> {
        Some(Input::Cursor(cursor))
    }

    fn cursor<U, F>(&self, mut f: F) -> Option<U>
        where F: FnMut(bool) -> U
    {
        match *self {
            Input::Cursor(val) => Some(f(val)),
            _ => None
        }
    }
}

impl<I: CursorEvent> CursorEvent for Event<I> {
    fn from_cursor(cursor: bool, old_event: &Self) -> Option<Self> {
        if let &Event::Input(ref old_input) = old_event {
            <I as CursorEvent>::from_cursor(cursor, old_input)
                .map(|x| Event::Input(x))
        } else {
            None
        }
    }

    fn cursor<U, F>(&self, f: F) -> Option<U>
        where F: FnMut(bool) -> U
    {
        match *self {
            Event::Input(ref x) => x.cursor(f),
            _ => None
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_input_cursor() {
        use super::super::Input;

        let e = Input::Cursor(false);
        let x: Option<Input> = CursorEvent::from_cursor(true, &e);
        let y: Option<Input> = x.clone().unwrap().cursor(|cursor|
            CursorEvent::from_cursor(cursor, x.as_ref().unwrap())).unwrap();
        assert_eq!(x, y);
    }

    #[test]
    fn test_event_cursor() {
        use Event;
        use super::super::Input;

        let e = Event::Input(Input::Cursor(false));
        let x: Option<Event> = CursorEvent::from_cursor(true, &e);
        let y: Option<Event> = x.clone().unwrap().cursor(|cursor|
            CursorEvent::from_cursor(cursor, x.as_ref().unwrap())).unwrap();
        assert_eq!(x, y);
    }
}