2020-02-08 13:45:52 +01:00
|
|
|
import core.input
|
2020-01-26 13:58:29 +01:00
|
|
|
import util.store
|
|
|
|
|
2020-02-08 13:45:52 +01:00
|
|
|
class Widget(util.store.Store, core.input.Object):
|
2020-01-26 13:58:29 +01:00
|
|
|
def __init__(self, full_text):
|
2020-02-08 13:45:52 +01:00
|
|
|
super(Widget, self).__init__()
|
2020-01-26 13:58:29 +01:00
|
|
|
self._full_text = full_text
|
|
|
|
|
|
|
|
def full_text(self, value=None):
|
|
|
|
if value:
|
|
|
|
self._full_text = value
|
|
|
|
else:
|
|
|
|
if callable(self._full_text):
|
2020-02-04 21:09:11 +01:00
|
|
|
return self._full_text()
|
2020-02-07 21:32:20 +01:00
|
|
|
return self._full_text
|
2020-01-26 13:58:29 +01:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|