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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
/// # Crossterm | cross-platform terminal manipulating library.
///  ![Lines of Code][s7] [![Latest Version][s1]][l1] [![MIT][s2]][l2] [![docs][s3]][l3] ![Lines of Code][s6]
///
/// [s1]: https://img.shields.io/crates/v/crossterm.svg
/// [l1]: https://crates.io/crates/crossterm
///
/// [s2]: https://img.shields.io/badge/license-MIT-blue.svg
/// [l2]: ./LICENSE
///
/// [s3]: https://docs.rs/crossterm/badge.svg
/// [l3]: https://docs.rs/crossterm/
///
/// [s6]: https://tokei.rs/b1/github/TimonPost/crossterm?category=code
/// [s7]: https://travis-ci.org/TimonPost/crossterm.svg?branch=master
///
/// Ever got disappointed when a terminal library for rust was only written for UNIX systems?
/// Crossterm provides the same core functionalities for both Windows and UNIX systems.
///
/// Crossterm aims to be simple and easy to call in code.
/// Through the simplicity of Crossterm, you do not have to worry about the platform you are working with.
///
/// This crate supports all UNIX and windows terminals down to windows 7 (not all terminals are tested see [Tested Terminals](#tested-terminals) for more info)
///
/// ## Table of contents:
/// - [Getting started](#getting-started)
/// - [Useful links](#useful-links)
/// - [Features](#features)
/// - [Examples](#examples)
///     - [Crossterm Wrapper](#crossterm-type--see-more)
///     - [Styling](#crossterm-type--see-more)
///     - [Cursor](#cursor--see-more)
///     - [Input](#input--see-more)
///     - [Terminal](#terminal--see-more)
/// - [Tested Terminals](#tested-terminals)
/// - [Notice](#notice)
/// - [Todo](#todo)
/// - [Contributing](#contributing)
/// - [Authors](#authors)
/// - [License](#license)
///
/// ## Getting Started
///
/// This documentation is only for Crossterm version `0.5.^` if you have an older version of Crossterm I suggest you check the [Upgrade Manual](https://github.com/TimonPost/crossterm/blob/master/docs/UpgradeManual.md). Also, check out the [examples](https://github.com/TimonPost/crossterm/tree/master/examples) folders with detailed examples for all functionality of this crate.
///
/// Add the Crossterm package to your `Cargo.toml` file.
///
/// ```
/// [dependencies]
/// crossterm = "0.5.4"
///
/// ```
/// And import the Crossterm modules you want to use.
///
/// ```rust
/// extern crate crossterm;
///
/// // this module is used for styling the terminal
/// use crossterm::style::*;
/// // this module is used for cursor related actions
/// use crossterm::cursor::*;
/// // this module is used for terminal related actions
/// use crossterm::terminal::*;
/// // this module is used for input related actions
/// use crossterm::input::*;
///
/// ```
///
/// ### Useful Links
///
/// - [Book](http://atcentra.com/crossterm/)
/// - [Documentation](https://docs.rs/crossterm/)
/// - [Crates.io](https://crates.io/crates/crossterm)
/// - [Program Examples](https://github.com/TimonPost/crossterm/tree/master/examples/program_examples)
/// - [Examples](https://github.com/TimonPost/crossterm/tree/master/examples)
///
/// ## Features
/// These are the features from this crate:
///
/// - Cross-platform
/// - Everything is multithreaded (Send, Sync)
/// - Detailed documentation on every item
/// - Very few dependenties.
/// - Cursor.
///     - Moving _n_ times Up, Down, Left, Right
///     - Goto a certain position
///     - Get cursor position
///     - Storing the current cursor position and resetting to that stored cursor position later
///     - Hiding an showing the cursor
///     - Control over blinking of the terminal cursor (only some terminals are supporting this)
/// - Styled output
///     - Foreground color (16 base colors)
///     - Background color (16 base colors)
///     - 256 color support (Windows 10 and UNIX only)
///     - RGB support (Windows 10 and UNIX only)
///     - Text Attributes like: bold, italic, underscore and crossed word ect (Windows 10 and UNIX only)
/// - Terminal
///     - Clearing (all lines, current line, from cursor down and up, until new line)
///     - Scrolling (Up, down)
///     - Get the size of the terminal
///     - Set the size of the terminal
///     - Alternate screen
///     - Raw screen
///     - Exit the current process
/// - Input
///     - Read character
///     - Read line
///     - Read async
///     - Read async until
///     - Wait for key event (terminal pause)
///
/// ## Examples
/// These are some basic examples demonstrating how to use this crate. See [examples](https://github.com/TimonPost/crossterm/blob/master/examples/) for more.
///
/// ### Crossterm Type | [see more](https://github.com/TimonPost/crossterm/blob/master/examples/some_types/mod.rs)
/// This is a wrapper for all the modules crossterm provides like terminal, cursor, styling and input.
///
/// ```rust
/// // screen wheron the `Crossterm` methods will be executed.
/// let crossterm = Crossterm::new();
///
/// // get instance of the modules, whereafter you can use the methods the particulary module provides.
/// let color = crossterm.color();
/// let cursor = crossterm.cursor();
/// let terminal = crossterm.terminal();
///
/// // styling
/// println!("{}", crossterm.style("Black font on Green background color").with(Color::Black).on(Color::Green));
///
/// ```
/// ### Styled Font | [see more](http://atcentra.com/crossterm/styling.html)
/// This module provides the functionalities to style the terminal.
/// ```rust
/// use crossterm::style::{Color, style};
///
/// // store objcets so it could be painted later to the screen.
/// let style1 = style("Some Blue font on Black background").with(Color::Blue).on(Color::Black);
/// let style2 = style("Some Red font on Yellow background").with(Color::Red).on(Color::Yellow);
///
/// // styling font with (Windows 10 and UNIX systems)
/// let normal = style("Normal text");
/// let bold = style("Bold text").bold();
/// let italic = style("Italic text").italic();
/// let slow_blink = style("Slow blinking text").slow_blink();
/// let rapid_blink = style("Rapid blinking text").rapid_blink();
/// let hidden = style("Hidden text").hidden();
/// let underlined = style("Underlined text").underlined();
/// let reversed = style("Reversed text").reverse();
/// let dimmed = style("Dim text").dim();
/// let crossed_out = style("Crossed out font").crossed_out();
///
/// // paint styled text to screen (this could also be called inline)
/// println!("{}", style1);
/// println!("{}", style2);
/// println!("{}", bold);
/// println!("{}", hidden);
/// ...
///
/// // custom rgb value (Windows 10 and UNIX systems)
/// style("RGB color (10,10,10) ").with(Color::Rgb {
///     r: 10,
///     g: 10,
///     b: 10
/// }));
///
/// // custom ansi color value (Windows 10 and UNIX systems)
/// style("ANSI color value (50) ").with(Color::AnsiValue(50));
///
/// ```
/// ### Cursor | [see more](https://github.com/TimonPost/crossterm/blob/master/examples/cursor/mod.rs)
/// This module provides the functionalities to work with the terminal cursor.
///
/// ```rust
/// use crossterm::cursor;
///
/// let mut cursor = cursor();
///
/// /// Moving the cursor
/// // Set the cursor to position X: 10, Y: 5 in the terminal
/// cursor.goto(10,5);
///
/// // Move the cursor up,right,down,left 3 cells.
/// cursor.move_up(3);
/// cursor.move_right(3);
/// cursor.move_down(3);
/// cursor.move_left(3);
///
/// /// Safe the current cursor position to recall later
/// // Goto X: 5 Y: 5
/// cursor.goto(5,5);
/// // Safe cursor position: X: 5 Y: 5
/// cursor.save_position();
/// // Goto X: 5 Y: 20
/// cursor.goto(5,20);
/// // Print at X: 5 Y: 20.
/// print!("Yea!");
/// // Reset back to X: 5 Y: 5.
/// cursor.reset_position();
/// // Print 'Back' at X: 5 Y: 5.
/// print!("Back");
///
/// // hide cursor
/// cursor.hide();
/// // show cursor
/// cursor.show();
/// // blink or not blinking of the cursor (not widely supported)
/// cursor.blink(true)
///
/// ```
///
/// ### Input | [see more](http://atcentra.com/crossterm/input.html)
/// This module provides the functionalities to work with terminal input.
///
/// ```rust
/// use crossterm::input;
///
/// let mut input = input();
///
///  match input.read_char() {
///     Ok(s) => println!("char typed: {}", s),
///     Err(e) => println!("char error : {}", e),
///  }
///
///  match input.read_line() {
///      Ok(s) => println!("string typed: {}", s),
///      Err(e) => println!("error: {}", e),
///  }
///
/// ```
///
/// ### Terminal | [see more](https://github.com/TimonPost/crossterm/blob/master/examples/terminal/terminal.rs)
/// This module provides the functionalities to work with the terminal in general.
///
/// ```rust
/// use crossterm::terminal::{terminal,ClearType};
///
/// let mut terminal = terminal();
///
/// // Clear all lines in terminal;
/// terminal.clear(ClearType::All);
/// // Clear all cells from current cursor position down.
/// terminal.clear(ClearType::FromCursorDown);
/// // Clear all cells from current cursor position down.
/// terminal.clear(ClearType::FromCursorUp);
/// // Clear current line cells.
/// terminal.clear(ClearType::CurrentLine);
/// // Clear all the cells until next line.
/// terminal.clear(ClearType::UntilNewLine);
///
/// // Get terminal size
/// let (width, height) = terminal.terminal_size();
/// print!("X: {}, y: {}", width, height);
///
/// // Scroll down, up 10 lines.
/// terminal.scroll_down(10);
/// terminal.scroll_up(10);
///
/// // Set terminal size (width, height)
/// terminal.set_size(10,10);
///
/// // exit the current process.
/// terminal.exit();
///
/// // write to the terminal whether you are on the main screen or alternate screen.
/// terminal.write("Some text\n Some text on new line");
/// ```
///
/// ### Alternate and Raw Screen
/// These concepts are a little more complex, please checkout the [book](http://atcentra.com/crossterm/screen.html) topics about these subjects.
///
/// ## Tested terminals
///
/// - Windows Powershell
///     - Windows 10 (pro)
/// - Windows CMD
///     - Windows 10 (pro)
///     - Windows 8.1 (N)
/// - Ubuntu Desktop Terminal
///     - Ubuntu 17.10
/// - (Arch, Manjaro) KDE Konsole
/// - Linux Mint
///
/// This crate supports all Unix terminals and windows terminals down to Windows 7 but not all of them have been tested.
/// If you have used this library for a terminal other than the above list without issues feel free to add it to the above list, I really would appreciate it.
///
/// ## Notice
/// This library is quite stable now, changes could be expected but they will probably be not that big.
/// If there are any changes that will affect previous versions I will [describe](https://github.com/TimonPost/crossterm/blob/master/docs/UpgradeManual.md) what to change to upgrade.
///
/// ## Todo
/// I still have some things in mind to implement.
///
/// - Handling mouse events:
///     I want to be able to do something based on the clicks the user has done with its mouse.
/// - Handling key events:
///     I want to be able to read key combination inputs.
/// - Tests:
///    Find a way to test: color, alternate screen, rawscreen
///
/// ## Contributing
///
/// I highly appreciate it when you are contributing to this crate.
/// Also Since my native language is not English my grammar and sentence order will not be perfect.
/// So improving this by correcting these mistakes will help both me and the reader of the docs.
///
/// Check [Contributing](https://github.com/TimonPost/crossterm/blob/master/docs/Contributing.md) for more info about branches and code architecture.
///
/// ## Authors
///
/// * **Timon Post** - *Project Owner & creator*
///
/// ## License
///
/// This project is licensed under the MIT License - see the [LICENSE.md](https://github.com/TimonPost/crossterm/blob/master/LICENSE) file for details

#[cfg(unix)]
extern crate libc;
#[cfg(unix)]
extern crate termios;

#[cfg(windows)]
extern crate crossterm_winapi;
#[cfg(windows)]
extern crate winapi;

#[macro_use]
mod common;

mod kernel;
mod modules;

pub use modules::cursor;
pub use modules::input;
pub use modules::output;
pub use modules::style;
pub use modules::terminal;

pub use self::cursor::{cursor, TerminalCursor};
pub use self::input::{input, AsyncReader, KeyEvent, TerminalInput};
pub use self::output::TerminalOutput;
pub use self::style::{
    color, style, Attribute, Color, ColorType, DisplayableObject, ObjectStyle, StyledObject,
    TerminalColor,
};
pub use self::terminal::{terminal, Terminal};
pub use common::screen::{AlternateScreen, Screen};
pub use common::Crossterm;