Remove unused code
This commit is contained in:
parent
d95383fa43
commit
297fb09e71
@ -73,10 +73,9 @@ class Screen(QObject):
|
|||||||
return ("{0}({1}, {2})".format(self.__class__.__name__,
|
return ("{0}({1}, {2})".format(self.__class__.__name__,
|
||||||
self.columns, self.lines))
|
self.columns, self.lines))
|
||||||
|
|
||||||
def notify_cursor_position(self, x, y):
|
def notify_cursor_position(self):
|
||||||
if self._notify_cursor_position:
|
if self._notify_cursor_position:
|
||||||
x, y = wrap_cursor_position(x, y, self.lines, self.columns)
|
self.cursor_position_changed(self.cursor)
|
||||||
self.cursor_position_changed(self.cursor, x, y)
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def display(self) -> Sequence[str]:
|
def display(self) -> Sequence[str]:
|
||||||
@ -381,7 +380,7 @@ class Screen(QObject):
|
|||||||
finally:
|
finally:
|
||||||
self._notify_cursor_position = True
|
self._notify_cursor_position = True
|
||||||
if orig_x != self.cursor.x or orig_y != self.cursor.y:
|
if orig_x != self.cursor.x or orig_y != self.cursor.y:
|
||||||
self.notify_cursor_position(orig_x, orig_y)
|
self.notify_cursor_position()
|
||||||
|
|
||||||
def set_title(self, param):
|
def set_title(self, param):
|
||||||
"""Sets terminal title.
|
"""Sets terminal title.
|
||||||
@ -401,7 +400,7 @@ class Screen(QObject):
|
|||||||
"""Move the cursor to the beginning of the current line."""
|
"""Move the cursor to the beginning of the current line."""
|
||||||
x, self.cursor.x = self.cursor.x, 0
|
x, self.cursor.x = self.cursor.x, 0
|
||||||
if x != self.cursor.x:
|
if x != self.cursor.x:
|
||||||
self.notify_cursor_position(x, self.cursor.y)
|
self.notify_cursor_position()
|
||||||
|
|
||||||
def index(self):
|
def index(self):
|
||||||
"""Move the cursor down one line in the same column. If the
|
"""Move the cursor down one line in the same column. If the
|
||||||
@ -453,8 +452,8 @@ class Screen(QObject):
|
|||||||
column = self.columns - 1
|
column = self.columns - 1
|
||||||
|
|
||||||
if column != self.cursor.x:
|
if column != self.cursor.x:
|
||||||
x, self.cursor.x = self.cursor.x, column
|
self.cursor.x = column
|
||||||
self.notify_cursor_position(x, self.cursor.y)
|
self.notify_cursor_position()
|
||||||
|
|
||||||
def backspace(self):
|
def backspace(self):
|
||||||
"""Move cursor to the left one or keep it in it's position if
|
"""Move cursor to the left one or keep it in it's position if
|
||||||
@ -729,7 +728,7 @@ class Screen(QObject):
|
|||||||
if do_carriage_return:
|
if do_carriage_return:
|
||||||
self.cursor.x = 0
|
self.cursor.x = 0
|
||||||
if y != self.cursor.y or x != self.cursor.x:
|
if y != self.cursor.y or x != self.cursor.x:
|
||||||
self.notify_cursor_position(x, y)
|
self.notify_cursor_position()
|
||||||
|
|
||||||
def cursor_up1(self, count=1):
|
def cursor_up1(self, count=1):
|
||||||
"""Moves cursor up the indicated # of lines to column 1. Cursor
|
"""Moves cursor up the indicated # of lines to column 1. Cursor
|
||||||
@ -765,7 +764,7 @@ class Screen(QObject):
|
|||||||
self.cursor.x += move_direction * (count or 1)
|
self.cursor.x += move_direction * (count or 1)
|
||||||
self.ensure_bounds()
|
self.ensure_bounds()
|
||||||
if x != self.cursor.x:
|
if x != self.cursor.x:
|
||||||
self.notify_cursor_position(x, self.cursor.y)
|
self.notify_cursor_position()
|
||||||
|
|
||||||
def cursor_forward(self, count=1):
|
def cursor_forward(self, count=1):
|
||||||
"""Moves cursor right the indicated # of columns. Cursor stops
|
"""Moves cursor right the indicated # of columns. Cursor stops
|
||||||
@ -801,7 +800,7 @@ class Screen(QObject):
|
|||||||
self.cursor.x, self.cursor.y = column, line
|
self.cursor.x, self.cursor.y = column, line
|
||||||
self.ensure_bounds()
|
self.ensure_bounds()
|
||||||
if y != self.cursor.y or x != self.cursor.x:
|
if y != self.cursor.y or x != self.cursor.x:
|
||||||
self.notify_cursor_position(x, y)
|
self.notify_cursor_position()
|
||||||
|
|
||||||
def cursor_to_column(self, column=1):
|
def cursor_to_column(self, column=1):
|
||||||
"""Moves cursor to a specific column in the current line.
|
"""Moves cursor to a specific column in the current line.
|
||||||
@ -811,7 +810,7 @@ class Screen(QObject):
|
|||||||
x, self.cursor.x = self.cursor.x, (column or 1) - 1
|
x, self.cursor.x = self.cursor.x, (column or 1) - 1
|
||||||
self.ensure_bounds()
|
self.ensure_bounds()
|
||||||
if x != self.cursor.x:
|
if x != self.cursor.x:
|
||||||
self.notify_cursor_position(x, self.cursor.y)
|
self.notify_cursor_position()
|
||||||
|
|
||||||
def cursor_to_line(self, line=1):
|
def cursor_to_line(self, line=1):
|
||||||
"""Moves cursor to a specific line in the current column.
|
"""Moves cursor to a specific line in the current column.
|
||||||
@ -830,7 +829,7 @@ class Screen(QObject):
|
|||||||
|
|
||||||
self.ensure_bounds()
|
self.ensure_bounds()
|
||||||
if y != self.cursor.y:
|
if y != self.cursor.y:
|
||||||
self.notify_cursor_position(self.cursor.x, y)
|
self.notify_cursor_position()
|
||||||
|
|
||||||
def bell(self, *args):
|
def bell(self, *args):
|
||||||
""" Audbile bell """
|
""" Audbile bell """
|
||||||
|
|||||||
@ -54,7 +54,7 @@ class ChangeTracker(QObject):
|
|||||||
self.changed_cursor = cursor
|
self.changed_cursor = cursor
|
||||||
self.dirty()
|
self.dirty()
|
||||||
|
|
||||||
def cursor_position_changed(self, cursor: Cursor, x: int, y: int) -> None:
|
def cursor_position_changed(self, cursor: Cursor) -> None:
|
||||||
self.changed_cursor = cursor
|
self.changed_cursor = cursor
|
||||||
self.dirty()
|
self.dirty()
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user