2016-12-04 12:26:20 +01:00
|
|
|
# pylint: disable=R0201
|
|
|
|
|
|
|
|
"""Output classes"""
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import json
|
|
|
|
|
2016-12-04 17:45:42 +01:00
|
|
|
class Widget(object):
|
|
|
|
"""Represents a single visible block in the status bar"""
|
|
|
|
def __init__(self, full_text):
|
|
|
|
self._full_text = full_text
|
2016-12-08 12:44:52 +01:00
|
|
|
self._module = None
|
|
|
|
|
|
|
|
def set_module(self, module):
|
|
|
|
self._module = module.name
|
|
|
|
|
|
|
|
def module(self):
|
|
|
|
return self._module
|
2016-12-04 17:45:42 +01:00
|
|
|
|
|
|
|
def full_text(self):
|
|
|
|
"""Retrieve the full text to display in the widget"""
|
2016-12-08 08:44:54 +01:00
|
|
|
if callable(self._full_text):
|
|
|
|
return self._full_text()
|
|
|
|
else:
|
|
|
|
return self._full_text
|
2016-12-04 17:45:42 +01:00
|
|
|
|
2016-12-04 12:26:20 +01:00
|
|
|
class I3BarOutput(object):
|
|
|
|
"""Manage output according to the i3bar protocol"""
|
2016-12-08 11:31:20 +01:00
|
|
|
def __init__(self, theme):
|
|
|
|
self._theme = theme
|
2016-12-08 12:44:52 +01:00
|
|
|
self._widgets = []
|
2016-12-04 12:26:20 +01:00
|
|
|
|
|
|
|
def start(self):
|
|
|
|
"""Print start preamble for i3bar protocol"""
|
|
|
|
sys.stdout.write(json.dumps({"version": 1, "click_events": True}) + "[\n")
|
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
"""Finish i3bar protocol"""
|
|
|
|
sys.stdout.write("]\n")
|
|
|
|
|
2016-12-08 12:44:52 +01:00
|
|
|
def draw(self, widget, engine=None):
|
2016-12-08 09:04:47 +01:00
|
|
|
"""Draw a single widget"""
|
2016-12-08 11:31:20 +01:00
|
|
|
full_text = widget.full_text()
|
2016-12-08 11:52:47 +01:00
|
|
|
prefix = self._theme.prefix(widget)
|
|
|
|
suffix = self._theme.suffix(widget)
|
|
|
|
if prefix:
|
2016-12-08 12:44:52 +01:00
|
|
|
full_text = u"{}{}".format(prefix, full_text)
|
2016-12-08 11:52:47 +01:00
|
|
|
if suffix:
|
2016-12-08 12:44:52 +01:00
|
|
|
full_text = u"{}{}".format(full_text, suffix)
|
|
|
|
self._widgets.append({
|
|
|
|
u"full_text": u"{}".format(full_text)
|
2016-12-08 09:04:47 +01:00
|
|
|
})
|
|
|
|
|
2016-12-08 12:44:52 +01:00
|
|
|
def begin(self):
|
|
|
|
"""Start one output iteration"""
|
|
|
|
self._widgets = []
|
2016-12-04 12:53:18 +01:00
|
|
|
|
2016-12-04 16:14:43 +01:00
|
|
|
def flush(self):
|
|
|
|
"""Flushes output"""
|
2016-12-08 12:44:52 +01:00
|
|
|
sys.stdout.write(json.dumps(self._widgets))
|
|
|
|
|
|
|
|
def end(self):
|
|
|
|
"""Finalizes output"""
|
2016-12-04 16:14:43 +01:00
|
|
|
sys.stdout.write(",\n")
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
2016-12-04 12:26:20 +01:00
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|