polytreewm/src/geom.rs

54 lines
733 B
Rust

use std::os::raw::*;
#[repr(C)]
pub struct Position {
x: c_int,
y: c_int,
}
#[repr(C)]
pub struct Sizes {
width: c_int,
height: c_int,
}
impl Default for Position {
fn default() -> Self {
Self::new(0, 0)
}
}
impl Default for Sizes {
fn default() -> Self {
Self::new(0, 0)
}
}
impl Position {
fn new(x: c_int, y: c_int) -> Self {
Self { x, y }
}
fn x(&self) -> c_int {
self.x
}
fn y(&self) -> c_int {
self.y
}
}
impl Sizes {
fn new(width: c_int, height: c_int) -> Self {
Self { width, height }
}
fn width(&self) -> c_int {
self.width
}
fn height(&self) -> c_int {
self.height
}
}