Lines Matching refs:pGraphics
39 CXFA_Graphics* pGraphics = pParams.m_pGraphics.Get(); in DrawBackground() local
43 DrawMaxMinBtn(pGraphics, pParams.m_rtPart, in DrawBackground()
49 DrawMaxMinBtn(pGraphics, pParams.m_rtPart, in DrawBackground()
55 DrawThumbBtn(pGraphics, pParams.m_rtPart, bVert, eState, true, in DrawBackground()
60 DrawTrack(pGraphics, pParams.m_rtPart, bVert, eState, true, in DrawBackground()
65 DrawTrack(pGraphics, pParams.m_rtPart, bVert, eState, false, in DrawBackground()
74 void CFWL_ScrollBarTP::DrawThumbBtn(CXFA_Graphics* pGraphics, in DrawThumbBtn() argument
92 FillSolidRect(pGraphics, m_pThemeData->clrBtnBK[eState - 1][1], rect, matrix); in DrawThumbBtn()
94 pGraphics->SaveGraphState(); in DrawThumbBtn()
98 pGraphics->SetStrokeColor( in DrawThumbBtn()
100 pGraphics->StrokePath(&path, &matrix); in DrawThumbBtn()
101 pGraphics->RestoreGraphState(); in DrawThumbBtn()
104 void CFWL_ScrollBarTP::DrawPaw(CXFA_Graphics* pGraphics, in DrawPaw() argument
127 pGraphics->SetLineWidth(1); in DrawPaw()
128 pGraphics->SetStrokeColor( in DrawPaw()
130 pGraphics->StrokePath(&path, nullptr); in DrawPaw()
143 pGraphics->SetLineWidth(1); in DrawPaw()
144 pGraphics->SetStrokeColor( in DrawPaw()
146 pGraphics->StrokePath(&path, &matrix); in DrawPaw()
164 pGraphics->SetLineWidth(1); in DrawPaw()
165 pGraphics->SetStrokeColor( in DrawPaw()
167 pGraphics->StrokePath(&path, &matrix); in DrawPaw()
180 pGraphics->SetLineWidth(1); in DrawPaw()
181 pGraphics->SetStrokeColor( in DrawPaw()
183 pGraphics->StrokePath(&path, &matrix); in DrawPaw()
187 void CFWL_ScrollBarTP::DrawTrack(CXFA_Graphics* pGraphics, in DrawTrack() argument
196 pGraphics->SaveGraphState(); in DrawTrack()
207 pGraphics->SetFillColor(CXFA_GEColor(ArgbEncode(255, 238, 237, 229))); in DrawTrack()
208 pGraphics->FillPath(&path, FXFILL_WINDING, &matrix); in DrawTrack()
211 pGraphics->RestoreGraphState(); in DrawTrack()
212 FillSolidRect(pGraphics, m_pThemeData->clrTrackBKEnd, rect, matrix); in DrawTrack()
215 void CFWL_ScrollBarTP::DrawMaxMinBtn(CXFA_Graphics* pGraphics, in DrawMaxMinBtn() argument
220 DrawTrack(pGraphics, rect, in DrawMaxMinBtn()
225 DrawArrowBtn(pGraphics, rtArrowBtn, eDict, eState, matrix); in DrawMaxMinBtn()