bowl/cheuph/attributed_lines_widget.py
Joscha 66a67f3f28 Create very basic message tree widget structure
Also, fix some cheuph structuring problems
2019-06-08 09:10:59 +00:00

14 lines
409 B
Python

__all__ = ["AttributedLinesWidget"]
class AttributedLinesWidget:
"""
This widget draws lines of AttributedText with a horizontal and a vertical
offset. It can retrieve the attributes of any character by its (x, y)
coordinates. Line-wide attributes may be specified.
When clicked, it sends an event containing the attributes of the character
that was just clicked.
"""
pass