diff options
Diffstat (limited to 'lib/filewin.py')
| -rw-r--r-- | lib/filewin.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/filewin.py b/lib/filewin.py new file mode 100644 index 0000000..ad35ea4 --- /dev/null +++ b/lib/filewin.py @@ -0,0 +1,18 @@ +# Module 'filewin' +# File windows, a subclass of textwin (which is a subclass of gwin) + +import textwin +from util import readfile + + +# FILE WINDOW + +def open_readonly(fn): # Open a file window + w = textwin.open_readonly(fn, readfile(fn)) + w.fn = fn + return w + +def open(fn): # Open a file window + w = textwin.open(fn, readfile(fn)) + w.fn = fn + return w |
