Lines Matching defs:BOLD
551 #define OPT_CLIP_BOLD 1 /* true if xterm uses clipping to avoid bold-trash */
695 #define OPT_PC_COLORS 1 /* true if xterm supports PC-style (bold) colors */
899 , fBold /* bold font */
902 , fBtal /* bold-italic font */
906 , fWBold /* double-width bold font */
908 , fWBtal /* double-width bold-italic font */
1173 ,srm_DECBBSM = 116 /* vt520:Bold and Blink Style Mode */
1505 #define COLOR_BD (NUM_ANSI_COLORS) /* BOLD */
1598 #define NUM_CHRSET 8 /* normal/bold and 4 CSET_xxx values */
1695 #define XMC_FLAGS (INVERSE|UNDERLINE|BOLD|BLINK)
2313 char *f_b; /* the bold font */
2316 char *f_wb; /* the bold wide font */
2322 char **list_b; /* the bold font */
2325 char **list_bi; /* bold-italic font (Xft only) */
2329 char **list_wb; /* the bold wide font */
2331 char **list_wbi; /* wide bold-italic font (Xft only) */
2443 Boolean boldColors; /* can we make bold colors? */
2447 Boolean colorBDMode; /* use color for bold? */
2663 XTermFonts fnts[fMAX]; /* normal/bold/etc for terminal */
2665 Boolean allowBoldFonts; /* do we use bold fonts at all? */
2667 XTermFonts ifnts[fMAX]; /* normal/bold/etc italic fonts */
2675 int enbolden; /* overstrike for bold font */
2809 Boolean always_bold_mode; /* compare normal/bold font */
2811 Boolean bold_mode; /* use bold font or overstrike */
3545 #define BOLD AttrBIT(2)
3613 #define SGR_MASK (BOLD | BLINK | UNDERLINE | INVERSE)
3622 * BOLDATTR is not only nonzero when we will use bold font, but uses the bits
3623 * for BOLD/BLINK to match against the video attributes which were originally
3629 #define BOLDATTR(screen) (unsigned) (USE_BOLD(screen) ? (BOLD | ((screen)->blink_as_bold ? BLINK : 0)) : 0)
3631 #define BOLDATTR(screen) (unsigned) (USE_BOLD(screen) ? (BOLD | BLINK) : 0)