Function ncursesw::wattroff[][src]

pub fn wattroff(handle: WINDOW, attrs: Attributes) -> Result<(), NCurseswError>
Expand description

Switch off the given normal attributes on the given window.

Example

extern crate ncursesw;
extern crate ascii;

use ascii::*;
use ncursesw::*;
use ncursesw::normal::*;

start_color()?;

use_default_colors()?;

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

let win = newwin(win_size, win_origin)?;

let color_pair0 = ColorPair::default();
let color_pair1 = ColorPair::new(1, Colors::new(Color::Dark(BaseColor::Yellow), Color::Dark(BaseColor::Blue)))?;

let attrs0 = Attribute::Dim | color_pair0;
let attrs1 = Attribute::Bold | Attribute::Dim | color_pair1;

let ascii_char = AsciiChar::A;
let chtype_char = ChtypeChar::new(ascii_char);

wattrset(win, attrs1)?;
waddch(win, chtype_char | attrs0)?;

match wattr_get(win)? {
    AttributesColorPairSet::Normal(s)   => {
        assert!(s.attributes().is_bold());
        assert!(s.attributes().is_dim());
        assert!(s.color_pair() == color_pair1);
    },
    AttributesColorPairSet::Extended(_) => {
        panic!("not a extended attributes/color pair!");
    }
}

wattroff(win, Attributes::default() | Attribute::Dim)?;

match wattr_get(win)? {
    AttributesColorPairSet::Normal(s)   => {
        assert!(s.attributes().is_bold());
        assert!(!s.attributes().is_dim());
        assert!(s.color_pair() == color_pair1);
    },
    AttributesColorPairSet::Extended(_) => {
        panic!("not a extended attributes/color pair!");
    }
}

delwin(win)?;