Lines Matching defs:values
163 * resource values.
564 XGCValues values;
567 values.foreground = XtParent(w)->core.background_pixel;
568 values.background = entry->sme_bsb.foreground;
569 values.font = entry->sme_bsb.font->fid;
570 values.graphics_exposures = FALSE;
572 entry->sme_bsb.rev_gc = XtGetGC(w, mask, &values);
574 values.foreground = entry->sme_bsb.foreground;
575 values.background = XtParent(w)->core.background_pixel;
576 entry->sme_bsb.norm_gc = XtGetGC(w, mask, &values);
578 values.fill_style = FillTiled;
579 values.tile = XmuCreateStippledPixmap(XtScreenOfObject(w),
583 values.graphics_exposures = FALSE;
585 entry->sme_bsb.norm_gray_gc = XtGetGC(w, mask, &values);
587 values.foreground ^= values.background;
588 values.background = 0;
589 values.function = GXxor;
591 entry->sme_bsb.invert_gc = XtGetGC(w, mask, &values);