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
use Input;

/// Close arguments.
#[derive(Copy, Clone, PartialEq, Debug, RustcDecodable, RustcEncodable)]
pub struct CloseArgs;

/// Window is closing.
pub trait CloseEvent: Sized {
    /// Creates a close event from arguments.
    fn from_close_args(args: &CloseArgs, old_event: &Self) -> Option<Self>;
    /// Calls closure if this is a close event.
    fn close<U, F>(&self, f: F) -> Option<U> where F: FnMut(&CloseArgs) -> U;
    /// Returns close arguments.
    fn close_args(&self) -> Option<CloseArgs> {
        self.close(|args| args.clone())
    }
}

impl CloseEvent for Input {
    fn from_close_args(args: &CloseArgs, _old_event: &Input) -> Option<Self> {
        Some(Input::Close(*args))
    }

    fn close<U, F>(&self, mut f: F) -> Option<U>
        where F: FnMut(&CloseArgs) -> U
    {
        match *self {
            Input::Close(ref args) => Some(f(args)),
            _ => None,
        }
    }
}

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

    #[test]
    fn test_input_close() {
        use Input;
        use CloseArgs;

        let e = Input::Close(CloseArgs);
        let x: Option<Input> = CloseEvent::from_close_args(&CloseArgs, &e);
        let y: Option<Input> = x.clone()
            .unwrap()
            .close(|args| CloseEvent::from_close_args(args, x.as_ref().unwrap()))
            .unwrap();
        assert_eq!(x, y);
    }
}