bumblebee-status/core/widget.py
Tobias Witek fee7cf7882 [core/widget] Add widget class
To maintain backwards compatibility (and because I think it's an OK
design choice), keep the widget concept (a single module can produce
multiple widgets).
2020-01-26 13:58:29 +01:00

15 lines
405 B
Python

import util.store
class Widget(util.store.Store):
def __init__(self, full_text):
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