使用 pdCurses 回滚历史记录

发布于 2024-12-27 08:38:31 字数 770 浏览 0 评论 0原文

你好,祝你有美好的一天..

所以我写了这个简单的应用程序,当你按下 page-downpage-up 按钮时,它会向下或向上滚动。

#include <curses.h>
#include <stdio.h>
#include <Windows.h>

int main(void)
{
    int ch;

    initscr();
    cbreak();
    keypad(stdscr,TRUE);
    idlok(stdscr,TRUE);
    scrollok(stdscr,TRUE);

    printw("Welcome!");
    refresh();


    ch = getch();
    while(ch != 'q'){
        if(ch == KEY_PPAGE){
            scrl(-1);
            refresh();
        }
        else
        {
            scrl(1);
            refresh();
        }
        ch = getch();
    }

    endwin();
    return 0;

}

问题是,如果“欢迎”世界消失了,那么您无法使用相反的按钮将其恢复。我认为这样的事情可以通过增加窗口缓冲区来解决。但不知道这样的事情将如何完成以及这样做是否好。

有什么想法/提示可以帮助我解决这个问题吗?

Hello and have a nice day..

So i wrote this simple app with curses that scrolls down or up , when you are pressing the page-down or page-up button.

#include <curses.h>
#include <stdio.h>
#include <Windows.h>

int main(void)
{
    int ch;

    initscr();
    cbreak();
    keypad(stdscr,TRUE);
    idlok(stdscr,TRUE);
    scrollok(stdscr,TRUE);

    printw("Welcome!");
    refresh();


    ch = getch();
    while(ch != 'q'){
        if(ch == KEY_PPAGE){
            scrl(-1);
            refresh();
        }
        else
        {
            scrl(1);
            refresh();
        }
        ch = getch();
    }

    endwin();
    return 0;

}

The problem is that if the world "Welcome" goes out of the window , then you cannot bring it back with the opposite button. I thought that something like this will be solved by increasing window buffer. But don't know how such a thing will be done and if its good to be done.

Is there any idea / hint to help me solve this problem ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最好是你 2025-01-03 08:38:31

我在Python中使用curses,解决这个问题的方法是在窗口上附加一个类似列表的数据结构,其中包含要记住的所有行,以及表示第一个可见行的索引。从那里您可以找出哪些线应该可见,并根据需要重新计算。

可以在此处找到使用 Unicurses 的 Python 实现。虽然不是 C 语言,但我希望它能有所帮助。

I use curses in python, and the way I solve this issue is to have a list-like data structure attached to the window which holds all lines to be remembered, as well as an index which denotes the first visible line. From there you can figure out what lines should be visible, and recalculate as necessary.

One such implementation in python using Unicurses can be found here. It's not in C but I hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文