Add visibility-related functions to window

This commit is contained in:
Tomaka17 2014-11-01 09:02:01 +01:00
parent a479b2f60c
commit b6f7491157
6 changed files with 64 additions and 4 deletions

View file

@ -295,6 +295,12 @@ impl Window {
}
}
pub fn show(&self) {
}
pub fn hide(&self) {
}
fn get_geometry(&self) -> Option<(int, int, uint, uint)> {
unsafe {
use std::mem;