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
//! A module that contains all the actions related to cursor movement in the terminal.
//! Like: moving the cursor position; saving and resetting the cursor position; hiding showing and control the blinking of the cursor.
//!
//! Note that positions of the cursor are 0 -based witch means that the coordinates (cells) starts counting from 0

mod cursor;

#[cfg(test)]
mod test;

mod ansi_cursor;
#[cfg(target_os = "windows")]
mod winapi_cursor;

use self::ansi_cursor::AnsiCursor;
#[cfg(target_os = "windows")]
use self::winapi_cursor::WinApiCursor;

pub use self::cursor::{cursor, from_screen, TerminalCursor};

use super::functions;
use std::sync::Arc;
use TerminalOutput;

///! This trait defines the actions that can be performed with the terminal cursor.
///! This trait can be implemented so that a concrete implementation of the ITerminalCursor can fulfill
///! the wishes to work on a specific platform.
///!
///! ## For example:
///!
///! This trait is implemented for `WinApi` (Windows specific) and `ANSI` (Unix specific),
///! so that cursor related actions can be performed on both UNIX and Windows systems.
trait ITerminalCursor: Sync + Send {
    /// Goto some location (x,y) in the context.
    fn goto(&self, x: u16, y: u16, stdout: &Option<&Arc<TerminalOutput>>);
    /// Get the location (x,y) of the current cursor in the context
    fn pos(&self) -> (u16, u16);
    /// Move cursor n times up
    fn move_up(&self, count: u16, stdout: &Option<&Arc<TerminalOutput>>);
    /// Move the cursor `n` times to the right.
    fn move_right(&self, count: u16, stdout: &Option<&Arc<TerminalOutput>>);
    /// Move the cursor `n` times down.
    fn move_down(&self, count: u16, stdout: &Option<&Arc<TerminalOutput>>);
    /// Move the cursor `n` times left.
    fn move_left(&self, count: u16, stdout: &Option<&Arc<TerminalOutput>>);
    /// Save cursor position so that its saved position can be recalled later. Note that this position is stored program based not per instance of the cursor struct.
    fn save_position(&self, stdout: &Option<&Arc<TerminalOutput>>);
    /// Return to saved cursor position
    fn reset_position(&self, stdout: &Option<&Arc<TerminalOutput>>);
    /// Hide the terminal cursor.
    fn hide(&self, stdout: &Option<&Arc<TerminalOutput>>);
    /// Show the terminal cursor
    fn show(&self, stdout: &Option<&Arc<TerminalOutput>>);
    /// Enable or disable the blinking of the cursor.
    fn blink(&self, blink: bool, stdout: &Option<&Arc<TerminalOutput>>);
}