+
+ title = s;
+ wattron (win, COLOR_PAIR (1));
+ mvwaddstr(win, 0, 1, title.c_str ());
+ wattroff (win, COLOR_PAIR (1));
+}
+
+Window::Window (Window *p, const std::string &s, int w, int h, int x, int y, bool use_box)
+{
+ parent = p;
+ if (!w) w = COLS;
+ if (!h) h = LINES;