__repr__ for windows and tabs
This commit is contained in:
parent
7bbf841725
commit
63359c358c
@ -147,6 +147,9 @@ class Tab:
|
|||||||
def render(self):
|
def render(self):
|
||||||
self.borders.render(get_boss().borders_program)
|
self.borders.render(get_boss().borders_program)
|
||||||
|
|
||||||
|
def __repr__(self):
|
||||||
|
return 'Tab(title={}, id={})'.format(self.name or self.title, hex(id(self)))
|
||||||
|
|
||||||
|
|
||||||
class TabManager:
|
class TabManager:
|
||||||
|
|
||||||
|
|||||||
@ -42,6 +42,9 @@ class Window:
|
|||||||
self.write_buf = memoryview(b'')
|
self.write_buf = memoryview(b'')
|
||||||
self.char_grid = CharGrid(self.screen, opts)
|
self.char_grid = CharGrid(self.screen, opts)
|
||||||
|
|
||||||
|
def __repr__(self):
|
||||||
|
return 'Window(title={}, id={})'.format(self.title, hex(id(self)))
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def is_visible_in_layout(self):
|
def is_visible_in_layout(self):
|
||||||
return self._is_visible_in_layout
|
return self._is_visible_in_layout
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user