forked from Rust-SDL2/rust-sdl2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
window-properties.rs
60 lines (48 loc) · 1.48 KB
/
window-properties.rs
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
extern crate sdl2;
use sdl2::event::Event;
use sdl2::keyboard::Keycode;
use sdl2::pixels::Color;
pub fn main() -> Result<(), String> {
let sdl_context = sdl2::init()?;
let video_subsystem = sdl_context.video()?;
let window = video_subsystem
.window("rust-sdl2 demo: Window", 800, 600)
.resizable()
.build()
.map_err(|e| e.to_string())?;
let mut canvas = window
.into_canvas()
.present_vsync()
.build()
.map_err(|e| e.to_string())?;
let mut tick = 0;
let mut event_pump = sdl_context.event_pump().map_err(|e| e.to_string())?;
'running: loop {
for event in event_pump.poll_iter() {
match event {
Event::Quit { .. }
| Event::KeyDown {
keycode: Some(Keycode::Escape),
..
} => break 'running,
_ => {}
}
}
{
// Update the window title.
let window = canvas.window_mut();
let position = window.position();
let size = window.size();
let title = format!(
"Window - pos({}x{}), size({}x{}): {}",
position.0, position.1, size.0, size.1, tick
);
window.set_title(&title).map_err(|e| e.to_string())?;
tick += 1;
}
canvas.set_draw_color(Color::RGB(0, 0, 0));
canvas.clear();
canvas.present();
}
Ok(())
}