65186baea6
Restrict error module to 15 characters and make it scrollable.
17 lines
477 B
Python
17 lines
477 B
Python
import core.input
|
|
import util.store
|
|
|
|
class Widget(util.store.Store, core.input.Object):
|
|
def __init__(self, full_text):
|
|
super(Widget, self).__init__()
|
|
self._full_text = full_text
|
|
|
|
def full_text(self, value=None):
|
|
if value:
|
|
self._full_text = value
|
|
else:
|
|
if callable(self._full_text):
|
|
return self._full_text(self)
|
|
return self._full_text
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|