Lines Matching defs:text

130     DATA(A_NORMAL,	ITEMHELP,		itemhelp, "Item help-text"),
131 DATA(A_BOLD, FORM_ACTIVE_TEXT, form_active_text, "Active form text"),
132 DATA(A_REVERSE, FORM_TEXT, form_text, "Form text"),
590 dlg_count_real_columns(const char *text)
593 if (*text) {
594 result = dlg_count_columns(text);
597 while (*text) {
598 if (dialog_vars.colors && isOurEscape(text)) {
600 text += ESCAPE_LEN;
602 ++text;
652 * Print the name (tag) or text from a DIALOG_LISTITEM, highlighting the
657 const char *text,
667 if (text == 0)
668 text = "";
671 const int *indx = dlg_index_wchars(text);
678 (void) waddnstr(win, text, indx[1]);
680 if ((int) strlen(text) > indx[1]) {
681 limit = dlg_limit_columns(text, climit, 1);
685 text + indx[1],
693 cols = dlg_index_columns(text);
694 limit = dlg_limit_columns(text, climit, 0);
698 dlg_print_text(win, text, cols[limit], &attr);
704 * Print up to 'cols' columns from 'text', optionally rendering our escape
772 * Prevent this from making text invisible when the foreground and
894 * If we found hidden text past the last point that we will display,
998 * Print a string of text in a window, automatically wrap around to the next
1013 * that we create a "tall" window of the proper width, let the text wrap within
1045 * If we're not limited by the screensize, allow text to possibly be
1076 /* if the text is incomplete, or we have scrolled, show the percentage */
1164 * Calculate the window size for preformatted text. This will calculate box
1382 Msgbox-like widget instead have to put all <text> correctly. */
1883 if ((n = dlg_count_columns(items[i].text)) > len2)