Lines Matching defs:gcv
75 XGCValues gcv;
86 gcm |= GCFunction; gcv.function = GXxor;
87 gcm |= GCLineWidth; gcv.line_width = 0;
88 gcm |= GCForeground; gcv.foreground = Scr->XORvalue;
89 gcm |= GCSubwindowMode; gcv.subwindow_mode = IncludeInferiors;
91 Scr->DrawGC = XCreateGC(dpy, Scr->Root, gcm, &gcv);
94 gcm |= GCForeground; gcv.foreground = Scr->MenuC.fore;
95 gcm |= GCBackground; gcv.background = Scr->MenuC.back;
97 {gcm |= GCFont; gcv.font = Scr->MenuFont.font->fid;}
99 Scr->MenuGC = XCreateGC(dpy, Scr->Root, gcm, &gcv);
102 gcm |= GCPlaneMask; gcv.plane_mask = AllPlanes;
108 gcm |= GCGraphicsExposures; gcv.graphics_exposures = False;
109 gcm |= GCLineWidth; gcv.line_width = 0;
111 Scr->NormalGC = XCreateGC(dpy, Scr->Root, gcm, &gcv);