cursor.rs 708 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. use crate::utils::position::Position;
  2. use super::get_application;
  3. pub trait Cursor {
  4. fn move_left(&mut self);
  5. fn move_right(&mut self);
  6. fn move_up(&mut self);
  7. fn move_down(&mut self);
  8. fn move_to_start_of_line(&mut self);
  9. fn screen_cursor_position(&self) -> Position;
  10. }
  11. pub fn screen_cursor_position() -> Position {
  12. get_application().screen_cursor_position()
  13. }
  14. pub fn move_down() {
  15. get_application().move_down()
  16. }
  17. pub fn move_up() {
  18. get_application().move_up()
  19. }
  20. pub fn move_left() {
  21. get_application().move_left()
  22. }
  23. pub fn move_right() {
  24. get_application().move_right()
  25. }
  26. pub fn move_to_start_of_line() {
  27. get_application().move_to_start_of_line()
  28. }