Lines Matching refs:col
42 struct Colori *col;
56 for(col = colori; col; col = col->next) {
57 if(col->color == cp.back) {
61 if(col != NULL) {
62 return (col->pix);
64 col = malloc(sizeof(struct Colori));
65 col->color = cp.back;
66 col->pix = XCreatePixmap(dpy, Scr->Root, h, h, Scr->d_depth);
67 col->next = colori;
68 colori = col;
70 Draw3DBorder(col->pix, 0, 0, w, h, 1, cp, off, true, false);
72 Draw3DBorder(col->pix, 4, i, w - 8, 3, 1, Scr->MenuC, off, true, false);
180 struct Colori *col;
189 for(col = colori; col; col = col->next) {
190 if(col->color == cp.back) {
191 return col->pix;
196 col = malloc(sizeof(struct Colori));
197 col->color = cp.back;
198 col->pix = XCreatePixmap(dpy, Scr->Root, w, h, Scr->d_depth);
199 Draw3DBorder(col->pix, 0, 0, w, h, 4, cp, off, true, false);
202 col->next = colori;
203 colori = col;