1

在升级到新服务器后,我遇到了一些使用 curses 的代码问题,因此也遇到了诸如库、标头等新软件的问题。问题是 ldat 结构字段“firstchar”、“lastchar”和“text”的使用,这些字段在较新版本的 curses.h 中隐藏在 curses.priv.h 中,因此无法解决。

对于如何解决这些问题,我真的可以使用一些指针。

下面的代码指示了结构字段的使用,但它只是完整代码的一部分,因为它有几千行......

如果需要其他代码,我可以添加它。

我还可以补充一点,我自己并没有制作这个程序,我只是负责让它与我们的新服务器一起工作......

int
update_window(changed, dw, sw, win_shared)
bool *changed;
WINDOW *dw;         /* Destination window */
window_t *sw;       /* Source window */
bool win_shared;
{
    int y, x;
    int yind, nx, first, last;
    chtype *pd, *ps;    /* pd = pointer destination, ps = pointer source */
    int nscrolls;       /* Number of scrolls to make */


    if(! sw->changed) {
        *changed = FALSE;
        return(0);
    }
    /****************************************
    * Determine number of times window is 
    * scrolled since last update
    ****************************************/
    nscrolls = sw->scrollcount; if(nscrolls >= sw->ny)
    nscrolls = 0;

    sw->scrollcount = 0L;

    dw->_flags = _HASMOVED;
    dw->_cury = sw->cury;
    dw->_curx = sw->curx;

    if(nscrolls > 0) {
        /* Don't copy lines that is scolled away */
        for(y = nscrolls; y < sw->ny; y++) {
            yind = GETYIND(y - nscrolls, sw->toprow, sw->ny);
            if(sw->lastch[yind] != _NOCHANGE) {
                first = dw->_line[y].firstchar = sw->firstch[yind];
                last = dw->_line[y].lastchar = sw->lastch[yind];

                ps = &sw->screen[yind][first];
                pd = (chtype *)&dw->_line[y].text[first];
                nx = last - first + 1;

                LOOPDN(x, nx)
                    d++ = *ps++;

                if(! win_shared) {
                    sw->firstch[yind] = sw->nx;
                    sw->lastch[yind] = _NOCHANGE;
                }
            }
        }
    } else {
        LOOPUP(y, sw->ny) {
            yind = GETYIND(y, sw->toprow, sw->ny);
            if(sw->lastch[yind] != _NOCHANGE) {
                first = dw->_line[y].firstchar = sw->firstch[yind];
                last = dw->_line[y].lastchar = sw->lastch[yind];

                ps = &sw->screen[yind][first];
                pd = (chtype *)&dw->_line[y].text[first];
                nx = last - first + 1;

                LOOPDN(x, nx)
                    *pd++ = *ps++;

                if(! win_shared) {
                    sw->firstch[yind] = sw->nx;
                    sw->lastch[yind] = _NOCHANGE;
                }
            }
        }

        if(! win_shared)
            sw->changed = FALSE;
    }

    *changed = TRUE;
    return(nscrolls);
}

我很感激我能得到的所有帮助!

4

1 回答 1

0

的成员在2001 年 6 月struct ldat被私有化。阅读该函数及其对滚动条的提及暗示它正在编写一些用于模拟滚动的窗口的一部分(通过将一组行写入真实窗口),并试图绕过检查更改行的 ncurses 逻辑。

对于这样的函数,唯一的解决方案是确定开发人员试图做什么,然后编写一个新函数来执行此操作——使用提供的库函数。

于 2016-11-03T01:08:42.533 回答