Python Forum
I want to be able to scroll up in curses to see previous text.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I want to be able to scroll up in curses to see previous text.
#1
I have some code that just prints the same thing over and over and its numbered but when I try scrolling up it doesn't work, But I wanna be able to scroll up using mouse scroll wheel and have like the actual scrollbar present and using keys such as pg up ect... like in a normal terminal. Now I do know curses just overlays on-top of the terminal that's why I'm wondering if there is a way to do all of this?

import curses, time
def print_hello(chat_win):
    num = 0
    while True:
        chat_win.addstr(f"Test Bot. {num} \n")
        chat_win.refresh()
        time.sleep(0.5)
        num += 1
stdscr = curses.initscr()
curses.noecho()
curses.cbreak()
stdscr.keypad(True)
curses.curs_set(0)
chat_win = curses.newwin(curses.LINES, curses.COLS, 0, 0)
chat_win.scrollok(True)
print_hello(chat_win)
Currently it just prints and whatever goes off screen at the top(previous old text) gets deleted entirety.
Thank you in advance.
Reply
#2
So you want your program that runs in a terminal window to act like it is running in a terminal window. Why are you using curses? What am I missing?
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  curses issue otalado 2 2,757 Jun-29-2021, 02:07 PM
Last Post: tmz
  How to make curses.border() use A_BOLD atttribute? pjfarley3 0 4,850 Feb-03-2021, 11:22 PM
Last Post: pjfarley3
  Curses script doesn't work wavic 1 4,167 Jan-08-2021, 09:11 PM
Last Post: wavic
  Why aren't all curses panel functions supported in python curses.panel? pjfarley3 2 2,678 Jul-22-2020, 11:08 PM
Last Post: pjfarley3
  How to scroll through results from help(object) 8bitrick 1 1,414 Jan-13-2020, 11:30 PM
Last Post: stullis
  Need help trying to scroll a page with selenium tapeboxparts 4 2,799 May-10-2019, 08:01 PM
Last Post: tapeboxparts
  curses library autompav96 2 2,904 Mar-02-2019, 02:12 AM
Last Post: woooee
  curses key codes not working jgrillout 0 3,031 Feb-11-2019, 01:46 AM
Last Post: jgrillout
  Pretty table and curses? MuntyScruntfundle 0 2,900 Oct-16-2018, 10:22 AM
Last Post: MuntyScruntfundle
  curses.initscr doesn't work zaphod424 3 9,820 Feb-28-2018, 12:36 PM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020