Lines Matching refs:strokePath
42 CFX_Path strokePath; in DrawBackground() local
43 strokePath.Create(); in DrawBackground()
44 strokePath.MoveTo(rect.left + PUSHBUTTON_SIZE_Corner, rect.top); in DrawBackground()
45 strokePath.LineTo(fRight - PUSHBUTTON_SIZE_Corner, rect.top); in DrawBackground()
46 strokePath.LineTo(fRight, rect.top + PUSHBUTTON_SIZE_Corner); in DrawBackground()
47 strokePath.LineTo(fRight, fBottom - PUSHBUTTON_SIZE_Corner); in DrawBackground()
48 strokePath.LineTo(fRight - PUSHBUTTON_SIZE_Corner, fBottom); in DrawBackground()
49 strokePath.LineTo(rect.left + PUSHBUTTON_SIZE_Corner, fBottom); in DrawBackground()
50 strokePath.LineTo(rect.left, fBottom - PUSHBUTTON_SIZE_Corner); in DrawBackground()
51 strokePath.LineTo(rect.left, rect.top + PUSHBUTTON_SIZE_Corner); in DrawBackground()
52 strokePath.LineTo(rect.left + PUSHBUTTON_SIZE_Corner, rect.top); in DrawBackground()
55 fillPath.AddSubpath(&strokePath); in DrawBackground()
71 pGraphics->StrokePath(&strokePath, &pParams->m_matrix); in DrawBackground()