minicrossterm/src/modules/terminal/mod.rs

47 lines
1.7 KiB
Rust
Raw Normal View History

2018-07-30 05:30:09 +10:00
//! Module that contains all the actions related to the terminal. like clearing, resizing and scrolling the terminal.
pub mod terminal;
2018-03-04 03:07:51 +11:00
#[cfg(target_os = "windows")]
mod winapi_terminal;
mod ansi_terminal;
#[cfg(target_os = "windows")]
use self::winapi_terminal::WinApiTerminal;
use self::ansi_terminal::AnsiTerminal;
pub use self::terminal::Terminal;
use super::{ ScreenManager, functions };
2018-07-30 05:30:09 +10:00
/// Enum that specifies a way of clearing.
pub enum ClearType {
All,
FromCursorDown,
FromCursorUp,
CurrentLine,
UntilNewLine,
}
2018-07-30 05:30:09 +10:00
/// This trait defines the actions that can be preformed with the terminal color.
/// This trait can be implemented so that an concrete implementation of the ITerminalColor can forfill
/// the wishes to work on an specific platform.
///
/// ## For example:
///
/// This trait is implemented for `WINAPI` (Windows specific) and `ANSI` (Unix specific),
/// so that color related actions can be preformed on both unix and windows systems.
pub trait ITerminal {
/// Clear the current cursor by specifying the clear type
2018-07-28 17:54:05 +10:00
fn clear(&self, clear_type: ClearType, screen_manager: &ScreenManager);
/// Get the terminal size (x,y)
2018-07-28 17:54:05 +10:00
fn terminal_size(&self, screen_manager: &ScreenManager) -> (u16, u16);
/// Scroll `n` lines up in the current terminal.
2018-07-28 17:54:05 +10:00
fn scroll_up(&self, count: i16, screen_manager: &ScreenManager);
/// Scroll `n` lines down in the current terminal.
2018-07-28 17:54:05 +10:00
fn scroll_down(&self, count: i16,screen_manager: &ScreenManager);
/// Resize terminal to the given width and height.
2018-07-28 17:54:05 +10:00
fn set_size(&self, width: i16, height: i16, screen_manager: &ScreenManager);
2018-06-27 04:21:47 +10:00
/// Close the current terminal
fn exit(&self);
}