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
extern crate input;
use {
Window,
WindowSettings,
BuildFromWindowSettings,
AdvancedWindow,
Position,
Size
};
use self::input::Input;
pub struct NoWindow {
should_close: bool,
title: String,
size: Size,
pos: Position
}
impl NoWindow {
pub fn new(settings: &WindowSettings) -> NoWindow {
NoWindow {
should_close: false,
title: settings.get_title(),
size: settings.get_size(),
pos: Position { x: 0, y: 0 }
}
}
}
impl Window for NoWindow {
type Event = Input;
fn should_close(&self) -> bool { self.should_close }
fn set_should_close(&mut self, value: bool) { self.should_close = value; }
fn size(&self) -> Size { self.size }
fn swap_buffers(&mut self) {}
fn poll_event(&mut self) -> Option<Input> { None }
fn draw_size(&self) -> Size { self.size() }
}
impl BuildFromWindowSettings for NoWindow {
fn build_from_window_settings(settings: &WindowSettings) -> Result<Self, String> {
Ok(NoWindow::new(settings))
}
}
impl AdvancedWindow for NoWindow {
fn get_title(&self) -> String { self.title.clone() }
fn set_title(&mut self, value: String) { self.title = value; }
fn get_exit_on_esc(&self) -> bool { false }
fn set_exit_on_esc(&mut self, _value: bool) {}
fn set_capture_cursor(&mut self, _value: bool) {}
fn show(&mut self) {}
fn hide(&mut self) {}
fn get_position(&self) -> Option<Position> { Some(self.pos) }
fn set_position<P: Into<Position>>(&mut self, val: P) {
self.pos = val.into();
}
}