Lines Matching defs:title
23 dlg.title.atr = A_BOLD;
63 DLG_COLOR(title, COLOR_YELLOW, COLOR_WHITE, true);
96 DLG_COLOR(title, COLOR_RED, COLOR_BLACK, false);
136 DLG_COLOR(title, COLOR_BLUE, COLOR_WHITE, true);
183 init_one_color(&dlg.title);
250 /* Display background title if it exists ... - SLH */
349 /* Print the title of the dialog. Center the title and truncate
352 void print_title(WINDOW *dialog, const char *title, int width)
354 if (title) {
355 int tlen = MIN(width - 2, strlen(title));
356 wattrset(dialog, dlg.title.atr);
358 mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen);