Lines Matching defs:title
31 dlg.title.atr = A_BOLD;
71 DLG_COLOR(title, COLOR_YELLOW, COLOR_WHITE, true);
104 DLG_COLOR(title, COLOR_RED, COLOR_BLACK, false);
144 DLG_COLOR(title, COLOR_BLUE, COLOR_WHITE, true);
191 init_one_color(&dlg.title);
255 /* Display background title if it exists ... - SLH */
294 /* Print the title of the dialog. Center the title and truncate
297 void print_title(WINDOW *dialog, const char *title, int width)
299 if (title) {
300 int tlen = MIN(width - 2, strlen(title));
301 wattrset(dialog, dlg.title.atr);
303 mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen);