Skip to content
Snippets Groups Projects
Commit 11fbe715 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Merge branch 'master' into 'master'

Add terminal_size_pixels() to expose terminal's pixel size

See merge request redox-os/termion!163
parents 7853c025 574f8636
No related branches found
No related tags found
No related merge requests found
...@@ -22,6 +22,8 @@ mod sys; ...@@ -22,6 +22,8 @@ mod sys;
mod sys; mod sys;
pub use sys::size::terminal_size; pub use sys::size::terminal_size;
#[cfg(all(unix, not(target_os = "redox")))]
pub use sys::size::terminal_size_pixels;
pub use sys::tty::{is_tty, get_tty}; pub use sys::tty::{is_tty, get_tty};
mod async; mod async;
......
...@@ -7,8 +7,8 @@ use super::libc::{c_ushort, ioctl, STDOUT_FILENO, TIOCGWINSZ}; ...@@ -7,8 +7,8 @@ use super::libc::{c_ushort, ioctl, STDOUT_FILENO, TIOCGWINSZ};
struct TermSize { struct TermSize {
row: c_ushort, row: c_ushort,
col: c_ushort, col: c_ushort,
_x: c_ushort, x: c_ushort,
_y: c_ushort, y: c_ushort,
} }
/// Get the size of the terminal. /// Get the size of the terminal.
pub fn terminal_size() -> io::Result<(u16, u16)> { pub fn terminal_size() -> io::Result<(u16, u16)> {
...@@ -18,3 +18,12 @@ pub fn terminal_size() -> io::Result<(u16, u16)> { ...@@ -18,3 +18,12 @@ pub fn terminal_size() -> io::Result<(u16, u16)> {
Ok((size.col as u16, size.row as u16)) Ok((size.col as u16, size.row as u16))
} }
} }
/// Get the size of the terminal, in pixels
pub fn terminal_size_pixels() -> io::Result<(u16, u16)> {
unsafe {
let mut size: TermSize = mem::zeroed();
cvt(ioctl(STDOUT_FILENO, TIOCGWINSZ.into(), &mut size as *mut _))?;
Ok((size.x as u16, size.y as u16))
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment