A start on docs for VUI.

It's hella crude yet.
This commit is contained in:
Simon Forman
2019-05-06 23:05:50 -07:00
parent 3b09f9c356
commit 663ddab7a7
7 changed files with 66 additions and 6 deletions
+5 -1
View File
@@ -18,6 +18,10 @@
# along with Thun. If not see <http://www.gnu.org/licenses/>.
#
'''
Display
=================
This module implements a simple visual display system modeled on Oberon.
Refer to Chapter 4 of the Project Oberon book for more information.
@@ -355,7 +359,7 @@ class Track(Viewer):
return self, y
def open_viewer(self, y, class_):
'''Open and return a viewer of class_ at y.'''
'''Open and return a viewer of class at y.'''
# Todo: if y coincides with some other viewer's y replace it.
viewer, viewer_y = self.viewer_at(y)
h = viewer.split(viewer_y)