Function ncursesw::waddwstr[][src]

pub fn waddwstr(handle: WINDOW, wstr: &WideString) -> Result<(), NCurseswError>
Expand description

Add/Output a wide character unicode UTF-8 string on the given window.

Example

extern crate ncursesw;

use ncursesw::*;

let win_size = Size { lines: 10, columns: 50 };
let win_origin = Origin { y: 5, x: 5 };

let win = newwin(win_size, win_origin)?;

let origin = Origin { y: 5, x: 10 };

let wide_str = WideString::from_str("Testing..Testing..1..2..3..");

// this will output "Testing..Testing..1..2..3.." on the window `win`
waddwstr(win, &wide_str)?;

delwin(win)?;