DemoI正在尝试ncurses-5.9附带的c ++绑定。似乎很难在屏幕上轻松显示带有窗口的面板。这是我的代码

class SpiderApplication : NCursesApplication
{
protected:
  int titlesize() const { return 2; };
  void title();

public:
  SpiderApplication() : NCursesApplication(TRUE) {}

  int run();
};

void SpiderApplication::title()
{
  const char * const titleText = "Demo";
  const int len = ::strlen(titleText);

  titleWindow->bkgd(screen_titles());
  titleWindow->addstr(0, (titleWindow->cols() - len) / 2, titleText);
  titleWindow->noutrefresh();
}

int SpiderApplication::run()
{
  NCursesPanel mystd;
  NCursesPanel P(mystd.lines() - titlesize(), mystd.cols(), titlesize() - 1, 0);
  P.label("Demo", NULL);
  P.show();
  ::getch();
  P.clear();

  return 0;
}


我想应该在此应用程序的标题下显示一个面板。但是,事实并非如此。我在这里错过重要的事情吗?有没有关于如何使用ncurses的c ++绑定的示例?

谢谢。

最佳答案

我找到了自己问题的答案。

要使面板显示在屏幕上,不能省略refresh()呼叫。这是工作代码:

NCursesPanel mystd;
NCursesPanel P(mystd.lines() - titlesize(), mystd.cols(), titlesize() - 1, 0);
P.label("Demo", NULL);
P.show();
mystd.refresh();
::getch();
P.clear();

09-10 04:07