Lines Matching refs:gcvals
726 XGCValues gcvals;
803 gcvals.function = GXcopy;
804 gcvals.plane_mask = AllPlanes;
805 gcvals.clip_mask = None;
808 gcvals.foreground = color.pixel;
810 gcvals.foreground = BlackPixel(dpy, screen);
813 gcvals.background = color.pixel;
815 gcvals.background = WhitePixel(dpy, screen);
816 gcvals.line_width = 0;
817 gcvals.line_style = LineSolid;
818 gcvals.cap_style = CapNotLast;
819 gcvals.fill_style = FillSolid;
820 gcvals.graphics_exposures = False;
822 priv->gc = XCreateGC(dpy, win, mask, &gcvals);
824 tmp = gcvals.foreground;
827 gcvals.foreground = color.pixel;
829 gcvals.foreground = BlackPixel(dpy, screen);
830 priv->gcDet = XCreateGC(dpy, win, mask, &gcvals);
831 gcvals.foreground = tmp;
833 tmp = gcvals.background;
834 gcvals.background = gcvals.foreground;
835 gcvals.foreground = tmp;
836 priv->gcRev = XCreateGC(dpy, win, mask, &gcvals);
838 gcvals.background = gcvals.foreground;
841 gcvals.foreground = color.pixel;
843 gcvals.foreground = BlackPixel(dpy, screen);
844 priv->gcCur = XCreateGC(dpy, win, mask, &gcvals);