Lines Matching refs:screen

252 		runestring(screen, p, display->black, ZP, mediumfont, r);  in label()
265 draw(screen, Rect(p.x, y-1, p.x+Labspace, y+1), display->black, nil, ZP); in hashmark()
267 string(screen, Pt(x, y-mediumfont->height/2), in hashmark()
319 draw(screen, Rect(p.x, g->r.min.y, p.x+1, p.y), cols[c][0], nil, paritypt(p.x)); in drawdatum()
320 draw(screen, Rect(p.x, p.y, p.x+1, q.y+Dot), cols[c][2], nil, ZP); in drawdatum()
321 draw(screen, Rect(p.x, q.y+Dot, p.x+1, g->r.max.y), cols[c][1], nil, ZP); in drawdatum()
323 draw(screen, Rect(p.x, g->r.min.y, p.x+1, q.y), cols[c][0], nil, paritypt(p.x)); in drawdatum()
324 draw(screen, Rect(p.x, q.y, p.x+1, p.y+Dot), cols[c][2], nil, ZP); in drawdatum()
325 draw(screen, Rect(p.x, p.y+Dot, p.x+1, g->r.max.y), cols[c][1], nil, ZP); in drawdatum()
336 draw(screen, Rect(x, g->r.min.y, x+1, g->r.max.y), cols[c][2], nil, ZP); in drawmark()
345 draw(screen, g->r, cols[c][0], nil, paritypt(g->r.min.x)); in redraw()
355 draw(screen, g->overtmp->r, g->overtmp, nil, g->overtmp->r.min); in clearmsg()
366 draw(g->overtmp, g->overtmp->r, screen, nil, g->overtmp->r.min); in drawmsg()
371 string(screen, g->overtmp->r.min, display->black, ZP, mediumfont, msg); in drawmsg()
399 draw(screen, Rect(x, g->r.min.y, x+1, g->r.max.y), cols[g->colindex][2], nil, ZP); in drawcursor()
413 draw(screen, g->r, screen, nil, Pt(g->r.min.x+1, g->r.min.y)); in update1()
772 draw(screen, screen->r, display->white, nil, ZP); in resize()
775 x = screen->r.min.x; in resize()
776 y = screen->r.min.y + Labspace+mediumfont->height+Labspace; in resize()
777 dy = (screen->r.max.y - y)/ngraph; in resize()
782 draw(screen, Rect(x, y-1, screen->r.max.x, y), display->black, nil, ZP); in resize()
783 draw(screen, Rect(x, y, x+dx, screen->r.max.y), cols[graph[i].colindex][0], nil, paritypt(x)); in resize()
785 draw(screen, Rect(x+dx, y, x+dx+1, screen->r.max.y), cols[graph[i].colindex][2], nil, ZP); in resize()
791 x = screen->r.max.x - dx; in resize()
792 y = screen->r.min.y + Labspace+mediumfont->height+Labspace; in resize()
794 draw(screen, Rect(x, y-1, screen->r.max.x, y), display->black, nil, ZP); in resize()
795 draw(screen, Rect(x, y, x+dx, screen->r.max.y), cols[graph[i].colindex][0], nil, paritypt(x)); in resize()
797 draw(screen, Rect(x+dx, y, x+dx+1, screen->r.max.y), cols[graph[i].colindex][2], nil, ZP); in resize()
801 dx = (screen->r.max.x - dx - startx)/nmach; in resize()
803 draw(screen, Rect(x-1, starty-1, x, screen->r.max.y), display->black, nil, ZP); in resize()
813 string(screen, Pt(x+Labspace, screen->r.min.y + Labspace), display->black, ZP, in resize()
817 draw(screen, in resize()
818 Rect(screen->r.max.x-hashdx-1, starty-1, screen->r.max.x-hashdx, screen->r.max.y), in resize()
823 machr = Rect(startx+i*dx, starty, screen->r.max.x, screen->r.max.y); in resize()
827 machr.max.x = screen->r.max.x - hashdx - 1; in resize()
842 g->r.max.y = screen->r.max.y; in resize()
843 draw(screen, g->r, cols[g->colindex][0], nil, paritypt(g->r.min.x)); in resize()
857 g->overtmp = allocimage(display, r, screen->chan, 0, -1); in resize()