aboutsummaryrefslogtreecommitdiffstats
path: root/src/x11/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/x11/mod.rs')
-rw-r--r--src/x11/mod.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/x11/mod.rs b/src/x11/mod.rs
index 46334af..a592bce 100644
--- a/src/x11/mod.rs
+++ b/src/x11/mod.rs
@@ -125,11 +125,15 @@ impl Window {
unimplemented!()
}
- pub fn get_size(&self) -> (uint, uint) {
+ pub fn get_inner_size(&self) -> (uint, uint) {
unimplemented!()
}
- pub fn set_size(&self, x: uint, y: uint) {
+ pub fn get_outer_size(&self) -> (uint, uint) {
+ unimplemented!()
+ }
+
+ pub fn set_inner_size(&self, x: uint, y: uint) {
unimplemented!()
}