Merge pull request #539 from Daggerbot/pr-xresizewindow

Implement Window.set_inner_size on X11.
This commit is contained in:
tomaka 2015-07-24 09:24:18 +02:00
commit 8953eeb050

View file

@ -596,8 +596,8 @@ impl Window {
self.get_geometry().map(|(_, _, w, h, b)| (w + b, h + b)) // TODO: is this really outside? self.get_geometry().map(|(_, _, w, h, b)| (w + b, h + b)) // TODO: is this really outside?
} }
pub fn set_inner_size(&self, _x: u32, _y: u32) { pub fn set_inner_size(&self, x: u32, y: u32) {
unimplemented!() unsafe { (self.x.display.xlib.XResizeWindow)(self.x.display.display, self.x.window, x as libc::c_uint, y as libc::c_uint); }
} }
pub fn create_window_proxy(&self) -> WindowProxy { pub fn create_window_proxy(&self) -> WindowProxy {