mirror of
https://github.com/rust-windowing/winit.git
synced 2026-08-29 04:40:04 -04:00
Implement resize events on X11
This commit is contained in:
@@ -241,6 +241,17 @@ pub struct XClientMessageEvent {
|
|||||||
pub l: [libc::c_long, ..5],
|
pub l: [libc::c_long, ..5],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[reprc(C)]
|
||||||
|
pub struct XResizeRequestEvent {
|
||||||
|
pub type_: libc::c_int,
|
||||||
|
pub serial: libc::c_ulong,
|
||||||
|
pub send_event: Bool,
|
||||||
|
pub display: *mut Display,
|
||||||
|
pub window: Window,
|
||||||
|
pub width: libc::c_int,
|
||||||
|
pub height: libc::c_int,
|
||||||
|
}
|
||||||
|
|
||||||
#[link(name = "GL")]
|
#[link(name = "GL")]
|
||||||
#[link(name = "X11")]
|
#[link(name = "X11")]
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|||||||
@@ -162,6 +162,12 @@ impl Window {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
ffi::ResizeRequest => {
|
||||||
|
use SizeChanged;
|
||||||
|
let rs_event: &ffi::XResizeRequestEvent = unsafe { mem::transmute(&xev) };
|
||||||
|
events.push(SizeChanged(rs_event.width as uint, rs_event.height as uint));
|
||||||
|
},
|
||||||
|
|
||||||
_ => ()
|
_ => ()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user