1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//! `pancurses-result` is a wrapper for `pancurses` that aims to
//! provide a safe interface to `curses`.  This library aims to
//! guarantee thread and memory safety, whereas `pancurses` just
//! provides direct C bindings.
//!
//! Many curses functions have been renamed for one reason or another.  All
//! renamed functions state the curses function they corollate to.
//!
//! The outermost class is [`Curses`].  It is initialized via
//! [`initscr`].  Use its methods to manipulate the curses instance.
//!
//! [`Curses`] manages the [`Window`] representing `stdscr`.
//!
//! [`Curses`]: struct.Curses.html
//! [`initscr`]: fn.initscr.html
//! [`Window`]: struct.Window.html

extern crate pancurses;
#[macro_use]
extern crate lazy_static;

mod general;
pub use general::*;
mod initialize;
pub use initialize::*;
mod point;
pub use point::*;
mod curses;
pub use curses::*;
mod color;
pub use color::*;
mod window;
pub use window::*;

#[cfg(test)]
mod tests {
    use super::*;

    fn type_assert_send<T: Send>() {}
    fn type_assert_sync<T: Sync>() {}

    #[test]
    fn window_is_send() {
        type_assert_send::<Window>();
    }

    #[test]
    fn window_is_sync() {
        type_assert_sync::<Window>();
    }

    #[test]
    fn curses_is_send() {
        type_assert_send::<Curses>();
    }

    #[test]
    fn curses_is_sync() {
        type_assert_sync::<Curses>();
    }
}