/external/pdfium/xfa/include/fwl/theme/ |
checkboxtp.h | 26 CFX_Graphics* pGraphics,
31 CFX_Graphics* pGraphics,
35 void DrawSignNeutral(CFX_Graphics* pGraphics,
38 void DrawSignCheck(CFX_Graphics* pGraphics,
42 void DrawSignCircle(CFX_Graphics* pGraphics,
46 void DrawSignCross(CFX_Graphics* pGraphics,
50 void DrawSignDiamond(CFX_Graphics* pGraphics,
54 void DrawSignSquare(CFX_Graphics* pGraphics,
58 void DrawSignStar(CFX_Graphics* pGraphics,
63 CFX_Graphics* pGraphics,
[all...] |
formtp.h | 34 void DrawFormBorder(CFX_Graphics* pGraphics,
39 void DrawCaption(CFX_Graphics* pGraphics,
44 void DrawNarrowCaption(CFX_Graphics* pGraphics,
49 void DrawCloseBox(CFX_Graphics* pGraphics,
54 void DrawMinMaxBoxCommon(CFX_Graphics* pGraphics,
59 void DrawMinimizeBox(CFX_Graphics* pGraphics,
64 void DrawMaximizeBox(CFX_Graphics* pGraphics,
70 void DrawIconImage(CFX_Graphics* pGraphics,
|
carettp.h | 19 void DrawCaretBK(CFX_Graphics* pGraphics,
|
scrollbartp.h | 23 void DrawThumbBtn(CFX_Graphics* pGraphics,
29 void DrawTrack(CFX_Graphics* pGraphics,
35 void DrawMaxMinBtn(CFX_Graphics* pGraphics,
40 void DrawPaw(CFX_Graphics* pGraphics,
|
widgettp.h | 55 void DrawEdge(CFX_Graphics* pGraphics,
59 void Draw3DRect(CFX_Graphics* pGraphics,
68 void Draw3DCircle(CFX_Graphics* pGraphics,
77 void DrawBorder(CFX_Graphics* pGraphics,
80 void FillBackground(CFX_Graphics* pGraphics,
83 void FillSoildRect(CFX_Graphics* pGraphics,
87 void DrawAxialShading(CFX_Graphics* pGraphics,
97 void DrawAnnulusRect(CFX_Graphics* pGraphics,
102 void DrawAnnulusCircle(CFX_Graphics* pGraphics,
107 void DrawFocus(CFX_Graphics* pGraphics,
[all...] |
listboxtp.h | 22 void DrawListBoxItem(CFX_Graphics* pGraphics,
|
/external/pdfium/xfa/src/fwl/src/theme/ |
scrollbartp.cpp | 59 CFX_Graphics* pGraphics = pParams->m_pGraphics;
64 DrawMaxMinBtn(pGraphics, pRect,
70 DrawMaxMinBtn(pGraphics, pRect,
76 DrawThumbBtn(pGraphics, pRect, bVert, eState, TRUE, &pParams->m_matrix);
80 DrawTrack(pGraphics, pRect, bVert, eState, TRUE, &pParams->m_matrix);
84 DrawTrack(pGraphics, pRect, bVert, eState, FALSE, &pParams->m_matrix);
92 void CFWL_ScrollBarTP::DrawThumbBtn(CFX_Graphics* pGraphics,
110 DrawAxialShading(pGraphics, rect.left, rect.top, rect.right(), rect.top,
116 pGraphics->SaveGraphState();
117 pGraphics->SetStrokeColor(&rcStroke); [all...] |
widgettp.cpp | 62 CFX_Graphics* pGraphics = pParams->m_pGraphics;
63 m_pTextOut->SetRenderDevice(pGraphics->GetRenderDevice());
67 pMatrix->Concat(*pGraphics->GetMatrix());
212 void CFWL_WidgetTP::DrawEdge(CFX_Graphics* pGraphics,
216 if (!pGraphics)
220 pGraphics->SaveGraphState();
224 pGraphics->SetStrokeColor(&crStroke);
229 pGraphics->StrokePath(&path, pMatrix);
232 pGraphics->SetStrokeColor(&crStroke);
235 pGraphics->StrokePath(&path, pMatrix); [all...] |
edittp.cpp | 28 CFX_Graphics* pGraphics = pParams->m_pGraphics;
29 pGraphics->SaveGraphState();
33 pGraphics->SetFillColor(&crSelected);
34 pGraphics->FillPath(pParams->m_pPath, FXFILL_WINDING,
36 pGraphics->RestoreGraphState();
|
formtp.cpp | 276 void CFWL_FormTP::DrawFormBorder(CFX_Graphics* pGraphics,
295 pGraphics->SetStrokeColor(&clrLine);
296 pGraphics->StrokePath(&path, pMatrix);
303 pGraphics->SetStrokeColor(&clrLine);
304 pGraphics->StrokePath(&path, pMatrix);
311 pGraphics->SetStrokeColor(&clrLine);
312 pGraphics->StrokePath(&path, pMatrix);
319 pGraphics->SetStrokeColor(&clrLine);
320 pGraphics->StrokePath(&path, pMatrix);
327 void CFWL_FormTP::DrawCaption(CFX_Graphics* pGraphics,
[all...] |
listboxtp.cpp | 69 void CFWL_ListBoxTP::DrawListBoxItem(CFX_Graphics* pGraphics,
75 pGraphics->SaveGraphState();
79 pGraphics->SetFillColor(&crFill);
88 pGraphics->FillPath(&path, FXFILL_WINDING, pMatrix);
89 pGraphics->RestoreGraphState();
93 DrawFocus(pGraphics, (CFX_RectF*)pData, pMatrix);
|
carettp.cpp | 31 void CFWL_CaretTP::DrawCaretBK(CFX_Graphics* pGraphics,
42 pGraphics->SetFillColor(&crFilltemp);
43 pGraphics->FillPath(&path, FXFILL_WINDING, pMatrix);
|
checkboxtp.cpp | 103 CFX_Graphics* pGraphics,
163 DrawAxialShading(pGraphics, pRect->left - 1, pRect->top - 1, fRight, fBottom,
168 CFX_Graphics* pGraphics,
206 DrawSignCheck(pGraphics, &rtSign, dwColor, pMatrix);
211 DrawSignCircle(pGraphics, &rtSign, dwColor, pMatrix);
215 DrawSignCross(pGraphics, &rtSign, dwColor, pMatrix);
219 DrawSignDiamond(pGraphics, &rtSign, dwColor, pMatrix);
223 DrawSignSquare(pGraphics, &rtSign, dwColor, pMatrix);
227 DrawSignStar(pGraphics, &rtSign, dwColor, pMatrix);
232 FillSoildRect(pGraphics, ArgbEncode(255, 33, 161, 33), &rtSign, pMatrix); [all...] |
pushbuttontp.cpp | 56 CFX_Graphics* pGraphics = pParams->m_pGraphics;
57 pGraphics->SaveGraphState();
64 DrawAxialShading(pGraphics, rect.left + PUSHBUTTON_SIZE_Corner, rect.top,
70 pGraphics->SetStrokeColor(&crStroke);
71 pGraphics->StrokePath(&strokePath, &pParams->m_matrix);
76 pGraphics->SetFillColor(&crFill);
77 pGraphics->FillPath(&fillPath, FXFILL_WINDING, &pParams->m_matrix);
80 DrawFocus(pGraphics, &rtInner, &pParams->m_matrix);
82 pGraphics->RestoreGraphState();
|
/external/pdfium/xfa/src/fwl/src/basewidget/include/ |
fwl_pushbuttonimp.h | 27 virtual FWL_ERR DrawWidget(CFX_Graphics* pGraphics,
31 void DrawBkground(CFX_Graphics* pGraphics,
34 void DrawText(CFX_Graphics* pGraphics,
51 FWL_ERR OnDrawWidget(CFX_Graphics* pGraphics,
|
fwl_monthcalendarimp.h | 29 virtual FWL_ERR DrawWidget(CFX_Graphics* pGraphics,
39 void DrawBkground(CFX_Graphics* pGraphics,
42 void DrawHeadBK(CFX_Graphics* pGraphics,
45 void DrawLButton(CFX_Graphics* pGraphics,
48 void DrawRButton(CFX_Graphics* pGraphics,
51 void DrawCaption(CFX_Graphics* pGraphics,
54 void DrawSeperator(CFX_Graphics* pGraphics,
57 void DrawDatesInBK(CFX_Graphics* pGraphics,
60 void DrawWeek(CFX_Graphics* pGraphics,
63 void DrawWeekNumber(CFX_Graphics* pGraphics,
[all...] |
fwl_spinbuttonimp.h | 28 virtual FWL_ERR DrawWidget(CFX_Graphics* pGraphics,
35 void DrawUpButton(CFX_Graphics* pGraphics,
38 void DrawDownButton(CFX_Graphics* pGraphics,
56 FWL_ERR OnDrawWidget(CFX_Graphics* pGraphics,
|
fwl_tooltipctrlimp.h | 27 virtual FWL_ERR DrawWidget(CFX_Graphics* pGraphics,
36 void DrawBkground(CFX_Graphics* pGraphics,
39 void DrawText(CFX_Graphics* pGraphics,
71 FWL_ERR OnDrawWidget(CFX_Graphics* pGraphics,
|
fwl_caretimp.h | 30 virtual FWL_ERR DrawWidget(CFX_Graphics* pGraphics,
39 FX_BOOL DrawCaretBK(CFX_Graphics* pGraphics,
61 FWL_ERR OnDrawWidget(CFX_Graphics* pGraphics,
|
fwl_pictureboximp.h | 26 virtual FWL_ERR DrawWidget(CFX_Graphics* pGraphics,
30 void DrawBkground(CFX_Graphics* pGraphics,
45 FWL_ERR OnDrawWidget(CFX_Graphics* pGraphics,
|
fwl_listboximp.h | 31 virtual FWL_ERR DrawWidget(CFX_Graphics* pGraphics,
58 void DrawBkground(CFX_Graphics* pGraphics,
61 void DrawItems(CFX_Graphics* pGraphics,
64 void DrawItem(CFX_Graphics* pGraphics,
70 void DrawStatic(CFX_Graphics* pGraphics, IFWL_ThemeProvider* pTheme);
105 FWL_ERR OnDrawWidget(CFX_Graphics* pGraphics,
|
fwl_formproxyimp.h | 26 virtual FWL_ERR DrawWidget(CFX_Graphics* pGraphics,
|
/external/pdfium/xfa/src/fwl/src/basewidget/ |
fwl_pictureboximp.cpp | 84 FWL_ERR CFWL_PictureBoxImp::DrawWidget(CFX_Graphics* pGraphics,
86 if (!pGraphics)
92 DrawBorder(pGraphics, FWL_PART_PTB_Border, pTheme, pMatrix);
95 DrawEdge(pGraphics, FWL_PART_PTB_Edge, pTheme, pMatrix);
97 DrawBkground(pGraphics, pTheme, pMatrix);
100 void CFWL_PictureBoxImp::DrawBkground(CFX_Graphics* pGraphics,
125 pGraphics->DrawImage(pPicture, pt, &matrix);
147 FWL_ERR CFWL_PictureBoxImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics,
149 return m_pOwner->DrawWidget(pGraphics, pMatrix);
|
fwl_caretimp.cpp | 73 FWL_ERR CFWL_CaretImp::DrawWidget(CFX_Graphics* pGraphics,
75 if (!pGraphics)
81 DrawCaretBK(pGraphics, m_pProperties->m_pThemeProvider, pMatrix);
107 FX_BOOL CFWL_CaretImp::DrawCaretBK(CFX_Graphics* pGraphics,
115 param.m_pGraphics = pGraphics;
151 FWL_ERR CFWL_CaretImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics,
153 return m_pOwner->DrawWidget(pGraphics, pMatrix);
|
fwl_monthcalendarimp.cpp | 131 FWL_ERR CFWL_MonthCalendarImp::DrawWidget(CFX_Graphics* pGraphics,
133 if (!pGraphics)
140 DrawBorder(pGraphics, FWL_PART_MCD_Border, pTheme, pMatrix);
143 DrawEdge(pGraphics, FWL_PART_MCD_Edge, pTheme, pMatrix);
145 DrawBkground(pGraphics, pTheme, pMatrix);
146 DrawHeadBK(pGraphics, pTheme, pMatrix);
147 DrawLButton(pGraphics, pTheme, pMatrix);
148 DrawRButton(pGraphics, pTheme, pMatrix);
149 DrawSeperator(pGraphics, pTheme, pMatrix);
150 DrawDatesInBK(pGraphics, pTheme, pMatrix); [all...] |