Add basic cursor tree widget

This commit is contained in:
Joscha 2019-06-07 05:07:30 +00:00
parent ba2f64762f
commit a4d33847e9
3 changed files with 85 additions and 0 deletions

View file

@ -4,6 +4,7 @@ from .attributed_lines import *
from .attributed_lines_widget import *
from .attributed_text_widget import *
from .cursor_rendering import *
from .cursor_tree_widget import *
from .element import *
from .element_supply import *
from .markup import *
@ -15,6 +16,7 @@ __all__ += attributed_lines.__all__
__all__ += attributed_lines_widget.__all__
__all__ += attributed_text_widget.__all__
__all__ += cursor_rendering.__all__
__all__ += cursor_tree_widget.__all__
__all__ += element.__all__
__all__ += element_supply.__all__
__all__ += markup.__all__