Lay out new client structure
This commit is contained in:
parent
6c4bfe2752
commit
7da4bf36d5
21 changed files with 174 additions and 1137 deletions
15
cheuph/attributed_lines_widget.py
Normal file
15
cheuph/attributed_lines_widget.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
__all__ = ["AttributedLinesWidget", "ALWidget"]
|
||||
|
||||
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
|
||||
|
||||
ALWidget = AttributedLinesWidget
|
||||
Loading…
Add table
Add a link
Reference in a new issue