anes/sequences/cursor.rs
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 347 348 349 350 351 352
//! A terminal cursor related ANSI escape sequences.
sequence!(
/// Saves the cursor position.
///
/// Use the [`RestoreCursorPosition`](struct.RestoreCursorPosition.html) sequence to
/// restore the cursor position.
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::{SaveCursorPosition, RestoreCursorPosition};
///
/// let mut stdout = stdout();
/// // Save cursor position
/// write!(stdout, "{}", SaveCursorPosition);
///
/// // Your app
///
/// // Restore cursor position
/// write!(stdout, "{}", RestoreCursorPosition);
/// ```
struct SaveCursorPosition => esc!("7")
);
sequence!(
/// Restores the cursor position.
///
/// Use the [`SaveCursorPosition`](struct.SaveCursorPosition.html) sequence to
/// save the cursor position.
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::{SaveCursorPosition, RestoreCursorPosition};
///
/// let mut stdout = stdout();
/// // Save cursor position
/// write!(stdout, "{}", SaveCursorPosition);
///
/// // Your app
///
/// // Restore cursor position
/// write!(stdout, "{}", RestoreCursorPosition);
/// ```
struct RestoreCursorPosition => esc!("8")
);
sequence!(
/// Hides the cursor.
///
/// Use the [`ShowCursor`](struct.ShowCursor.html) sequence to show the cursor.
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::HideCursor;
///
/// let mut stdout = stdout();
/// // Hide cursor
/// write!(stdout, "{}", HideCursor);
/// ```
struct HideCursor => csi!("?25l")
);
sequence!(
/// Shows the cursor.
///
/// Use the [`HideCursor`](struct.HideCursor.html) sequence to hide the cursor.
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::ShowCursor;
///
/// let mut stdout = stdout();
/// // Show cursor
/// write!(stdout, "{}", ShowCursor);
/// ```
struct ShowCursor => csi!("?25h")
);
sequence!(
/// Enables the cursor blinking.
///
/// Use the [`DisableCursorBlinking`](struct.DisableCursorBlinking.html) sequence to disable
/// cursor blinking.
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::EnableCursorBlinking;
///
/// let mut stdout = stdout();
/// // Enable cursor blinking
/// write!(stdout, "{}", EnableCursorBlinking);
/// ```
struct EnableCursorBlinking => csi!("?12h")
);
sequence!(
/// Disables the cursor blinking.
///
/// Use the [`EnableCursorBlinking`](struct.EnableCursorBlinking.html) sequence to enable
/// cursor blinking.
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::DisableCursorBlinking;
///
/// let mut stdout = stdout();
/// // Disable cursor blinking
/// write!(stdout, "{}", DisableCursorBlinking);
/// ```
struct DisableCursorBlinking => csi!("?12l")
);
sequence!(
/// Moves the cursor to the given location (column, row).
///
/// # Notes
///
/// Top/left cell is represented as `1, 1` (`column, row`).
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::MoveCursorTo;
///
/// let mut stdout = stdout();
/// // Move cursor to top left cell
/// write!(stdout, "{}", MoveCursorTo(1, 1));
/// ```
struct MoveCursorTo(u16, u16) =>
|this, f| write!(f, csi!("{};{}H"), this.1, this.0)
);
sequence!(
/// Moves the cursor up by the given number of rows.
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::MoveCursorUp;
///
/// let mut stdout = stdout();
/// // Move cursor up by 5 rows
/// write!(stdout, "{}", MoveCursorUp(5));
/// ```
struct MoveCursorUp(u16) =>
|this, f| write!(f, csi!("{}A"), this.0)
);
sequence!(
/// Moves the cursor down by the given number of rows.
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::MoveCursorDown;
///
/// let mut stdout = stdout();
/// // Move cursor down by 5 rows
/// write!(stdout, "{}", MoveCursorDown(5));
/// ```
struct MoveCursorDown(u16) =>
|this, f| write!(f, csi!("{}B"), this.0)
);
sequence!(
/// Moves the cursor right by the given number of columns.
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::MoveCursorRight;
///
/// let mut stdout = stdout();
/// // Move cursor right by 5 columns
/// write!(stdout, "{}", MoveCursorRight(5));
/// ```
struct MoveCursorRight(u16) =>
|this, f| write!(f, csi!("{}C"), this.0)
);
sequence!(
/// Moves the cursor left by the given number of columns.
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::MoveCursorLeft;
///
/// let mut stdout = stdout();
/// // Move cursor left by 5 columns
/// write!(stdout, "{}", MoveCursorLeft(5));
/// ```
struct MoveCursorLeft(u16) =>
|this, f| write!(f, csi!("{}D"), this.0)
);
sequence!(
/// Moves the cursor to beginning of line the given number of lines down.
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::MoveCursorToNextLine;
///
/// let mut stdout = stdout();
/// // Move cursor down by 2 rows and the move it to the first column
/// write!(stdout, "{}", MoveCursorToNextLine(2));
/// ```
///
/// The previous example does the same thing as the following one:
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::{MoveCursorDown, MoveCursorToColumn};
///
/// let mut stdout = stdout();
/// write!(stdout, "{}{}", MoveCursorDown(2), MoveCursorToColumn(1));
/// ```
struct MoveCursorToNextLine(u16) =>
|this, f| write!(f, csi!("{}E"), this.0)
);
sequence!(
/// Moves the cursor to beginning of line the given number of lines up.
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::MoveCursorToPreviousLine;
///
/// let mut stdout = stdout();
/// // Move cursor up by 2 rows and the move it to the first column
/// write!(stdout, "{}", MoveCursorToPreviousLine(2));
/// ```
///
/// The previous example does the same thing as the following one:
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::{MoveCursorUp, MoveCursorToColumn};
///
/// let mut stdout = stdout();
/// write!(stdout, "{}{}", MoveCursorUp(2), MoveCursorToColumn(1));
/// ```
struct MoveCursorToPreviousLine(u16) =>
|this, f| write!(f, csi!("{}F"), this.0)
);
sequence!(
/// Moves the cursor to the given column.
///
/// # Notes
///
/// Beginning of the line (left cell) is represented as `1`.
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::MoveCursorToColumn;
///
/// let mut stdout = stdout();
/// // Move cursor to the 10th column (same row)
/// write!(stdout, "{}", MoveCursorToColumn(10));
/// ```
struct MoveCursorToColumn(u16) =>
|this, f| write!(f, csi!("{}G"), this.0)
);
// TODO Enhance example with Parser to show how to retrieve it
sequence!(
/// Asks for the current cursor position.
///
/// # Examples
///
/// ```no_run
/// use std::io::{stdout, Write};
/// use anes::ReportCursorPosition;
///
/// let mut stdout = stdout();
/// write!(stdout, "{}", ReportCursorPosition);
/// ```
struct ReportCursorPosition => csi!("6n")
);
#[cfg(test)]
test_sequences!(
save_cursor_position(
SaveCursorPosition => "\x1B7",
),
restore_cursor_position(
RestoreCursorPosition => "\x1B8",
),
hide_cursor(
HideCursor => "\x1B[?25l",
),
show_cursor(
ShowCursor => "\x1B[?25h",
),
disable_cursor_blinking(
DisableCursorBlinking => "\x1B[?12l",
),
enable_cursor_blinking(
EnableCursorBlinking => "\x1B[?12h",
),
move_cursor_up(
MoveCursorUp(10) => "\x1B[10A",
),
move_cursor_down(
MoveCursorDown(10) => "\x1B[10B",
),
move_cursor_right(
MoveCursorRight(10) => "\x1B[10C",
),
move_cursor_left(
MoveCursorLeft(10) => "\x1B[10D",
),
move_cursor_to(
MoveCursorTo(5, 10) => "\x1B[10;5H",
),
move_cursor_to_next_line(
MoveCursorToNextLine(5) => "\x1B[5E",
),
move_cursor_to_previous_line(
MoveCursorToPreviousLine(5) => "\x1B[5F",
),
move_cursor_to_column(
MoveCursorToColumn(1) => "\x1B[1G",
),
report_cursor_position(
ReportCursorPosition => "\x1B[6n",
)
);