crt.cr
crt.cr copied to clipboard
scrolling possible?
Is it possible to get sub-window scrolling with Crt.cr? I'm trying to make a curses app with a command-line-input at the bottom, and a central window that can scroll. I've tried making two Window classes and the text of each are separated from each other, but I have yet to find a way to make the window scroll up. Do I have to re-layout the text myself to get scrolling? It seems like the curses lib supports scrolling through either insertln() or a "pad" data structure.