wprintw:在ncurses中,当写一个与窗口宽度完全相同的换行终止行时,会打印两个换行符

时间:2011-09-24 15:44:23

标签: c newline ncurses

我刚刚完成了CLI程序的代码,使用ncurses将其转换为TUI程序。

它以类似闪存卡的方式测试用户的一系列问题和答案。

除非我用printf()功能替换了许多popupinfo(int colour,char * title, char * body)来调用弹出窗口,所以所有内容都相对顺利。 此功能使用以下功能:

int textwidth (char * text);//returns the width of a given string (which may include newlines) in chars when displayed without wrapping (for purposes of determining optimum window width)
int textheight (char * text, int width);//returns the height of a given string (which may include newlines) in lines when displayed wrapped to the given width (for purposes of determining optimum window width)

在使用wprintw()打印到该窗口之前计算窗口的大小。

我遇到的问题是,当最后一行以外的行的长度恰好等于窗口宽度(或窗口宽度的倍数)时,窗口中将省略一行或多行文本。

例如:

Answer:

Foobarbaz.

将正确打印,但在:

Answer:

Foo.

'Foo'。没有打印。

我相信这是因为wprintw()函数在打印(window_width)个字符后将光标移动到新行,但后来遇到刚刚打印的行末尾的换行符。

有没有人知道一种方法(没有自己编写整个函数来处理输出)来阻止这种情况发生?

有用的细节:

我正在替换:

printf("\nSorry, the correct answer is:\n\n\t%s\n\n",currententry->answer);

使用:

sprintf(passingstring,"The correct answer is:\n\n%s",currententry->answer);
popupinfo(3,"Sorry!",passingstring);

popupinfo定义为:

void popupinfo(int colour,char * title,char * message)//pops up a window with the given colour, title and text
{
    WINDOW * wbpopup = NULL, * wpopup = NULL;
    PANEL * ppopup = NULL;
    int width, height;

    width=textwidth(message);
    getmaxyx(stdscr,nlines,ncols);
    if (width>ncols-16)width=ncols-16;
    height=textheight(message,width)+4;
    width+=8;
    if (!(wbpopup = newwin(height,width,(nlines-height)/2,(ncols-width)/2))) outofmemory();
    ppopup = new_panel(wbpopup);
    wattrset(wbpopup,COLOR_PAIR(colour));
    werase(wbpopup);
    wbkgd(wbpopup,COLOR_PAIR(colour));
    box(wbpopup,0,0);
    windowtitle(wbpopup,title);
    wpopup = innerwindow(wbpopup);

    wprintw(wpopup,message);
    update_panels();
    doupdate();
    wgetch(wpopup);

    delwin(wpopup);
    del_panel(ppopup);
    delwin(wbpopup);
    update_panels();
    doupdate();
}

也很有用:

int textwidth (char * text)//returns the width of a given string (which may include newlines) in chars when displayed without wrapping (for purposes of determining optimum window width)
{
    int i=0,j=0,k=0;
    while (text[i]!='\0')
    {
        if (text[i]=='\n')
        {
            k=j>k?j:k;
            j=0;
        }
        else j++;
        i++;
    }
    k=j>k?j:k;
    return k;
}

int textheight (char * text, int width)//returns the height of a given string (which may include newlines) in lines when displayed wrapped to the given width (for purposes of determining optimum window width)
{
    int i=0,j=0,k=1;
    while (text[i]!='\0')
    {
        if (text[i]=='\n')
        {
            k++;
            j=0;
        }
        else j++;
        if (j>width)
        {
            k++;
            j=1;
        }
        i++;
    }
    return k;
}

其他功能:

WINDOW * innerwindow(WINDOW * outerwindow);//creates an area within another window for purposes of displaying text with a margin
void windowtitle(WINDOW * window, char * title);//writes the given string to the given window (top centre)

有关更多信息,请参阅CLI和ncurses版本的完整源代码,可在http://github.com/megamasha

找到

非常感谢任何帮助。

P.S。我会标记这个wprintw,但我没有足够的声誉来创建新标签。

1 个答案:

答案 0 :(得分:1)

当你说:

时,你是绝对正确的
  

我相信这是因为wprintw()函数将光标移动到a   打印后的新行(window_width)字符,但后来遇到了   新行字符位于它刚打印的行的末尾   好。

关于你的问题

  

有没有人知道一种方法(没有写一个完整的功能   处理输出自己)以阻止这种情况发生?

- 没有这样的方法,因为你观察到的是线包装如何在ncurses中工作。 您可以做的是使弹出窗口更宽一个字符,从而避免因达到窗口宽度而导致的换行,例如将width+=8;更改为width+=8+1; popupinfo }。