mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-06 03:20:26 +00:00
435b8cb6a7
- refactor Notcurses.palette_size() to return an NcResult. - refactor & rename example direct-text.rs to direct-capabilities.rs. - new example full-capabilities.rs
23 lines
440 B
Rust
23 lines
440 B
Rust
use libnotcurses_sys::*;
|
|
|
|
fn main() -> NcResult<()> {
|
|
let mut dm = DirectMode::new()?;
|
|
|
|
let (t_rows, t_cols) = dm.dim_yx();
|
|
println!("Terminal rows={0}, cols={1}", t_rows, t_cols);
|
|
|
|
println!(
|
|
"Can display UTF-8: {0}
|
|
Can open images: {1}
|
|
Supports Pixels: {2:?}
|
|
Palette size: {3:?}
|
|
",
|
|
dm.canutf8(),
|
|
dm.canopen_images(),
|
|
dm.check_pixel_support(),
|
|
dm.palette_size(),
|
|
);
|
|
|
|
Ok(())
|
|
}
|