HomeSort by relevance Sort by last modified time
    Searched refs:pGraphics (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/pdfium/xfa/fwl/
cfwl_picturebox.cpp 35 void CFWL_PictureBox::DrawWidget(CXFA_Graphics* pGraphics,
37 if (!pGraphics)
44 DrawBorder(pGraphics, CFWL_Part::Border, pTheme, matrix);
47 void CFWL_PictureBox::OnDrawWidget(CXFA_Graphics* pGraphics,
49 DrawWidget(pGraphics, matrix);
cfwl_picturebox.h 26 void DrawWidget(CXFA_Graphics* pGraphics, const CFX_Matrix& matrix) override;
27 void OnDrawWidget(CXFA_Graphics* pGraphics,
cfwl_caret.h 28 void DrawWidget(CXFA_Graphics* pGraphics, const CFX_Matrix& matrix) override;
30 void OnDrawWidget(CXFA_Graphics* pGraphics,
47 void DrawCaretBK(CXFA_Graphics* pGraphics,
cfwl_pushbutton.h 31 void DrawWidget(CXFA_Graphics* pGraphics, const CFX_Matrix& matrix) override;
33 void OnDrawWidget(CXFA_Graphics* pGraphics,
37 void DrawBkground(CXFA_Graphics* pGraphics,
ifwl_widgetdelegate.h 23 virtual void OnDrawWidget(CXFA_Graphics* pGraphics,
cfwl_caret.cpp 48 void CFWL_Caret::DrawWidget(CXFA_Graphics* pGraphics,
50 if (!pGraphics)
57 DrawCaretBK(pGraphics, m_pProperties->m_pThemeProvider, &matrix);
75 void CFWL_Caret::DrawCaretBK(CXFA_Graphics* pGraphics,
83 param.m_pGraphics = pGraphics;
94 void CFWL_Caret::OnDrawWidget(CXFA_Graphics* pGraphics,
96 DrawWidget(pGraphics, matrix);
cfwl_monthcalendar.h 35 void DrawWidget(CXFA_Graphics* pGraphics, const CFX_Matrix& matrix) override;
37 void OnDrawWidget(CXFA_Graphics* pGraphics,
92 void DrawBackground(CXFA_Graphics* pGraphics,
95 void DrawHeadBK(CXFA_Graphics* pGraphics,
98 void DrawLButton(CXFA_Graphics* pGraphics,
101 void DrawRButton(CXFA_Graphics* pGraphics,
104 void DrawCaption(CXFA_Graphics* pGraphics,
107 void DrawSeperator(CXFA_Graphics* pGraphics,
110 void DrawDatesInBK(CXFA_Graphics* pGraphics,
113 void DrawWeek(CXFA_Graphics* pGraphics,
    [all...]
cfwl_formproxy.h 27 void DrawWidget(CXFA_Graphics* pGraphics, const CFX_Matrix& matrix) override;
cfwl_form.h 37 void DrawWidget(CXFA_Graphics* pGraphics, const CFX_Matrix& matrix) override;
39 void OnDrawWidget(CXFA_Graphics* pGraphics,
49 void DrawBackground(CXFA_Graphics* pGraphics, IFWL_ThemeProvider* pTheme);
cfwl_monthcalendar.cpp 149 void CFWL_MonthCalendar::DrawWidget(CXFA_Graphics* pGraphics,
151 if (!pGraphics)
158 DrawBorder(pGraphics, CFWL_Part::Border, pTheme, matrix);
160 DrawBackground(pGraphics, pTheme, &matrix);
161 DrawHeadBK(pGraphics, pTheme, &matrix);
162 DrawLButton(pGraphics, pTheme, &matrix);
163 DrawRButton(pGraphics, pTheme, &matrix);
164 DrawSeperator(pGraphics, pTheme, &matrix);
165 DrawDatesInBK(pGraphics, pTheme, &matrix);
166 DrawDatesInCircle(pGraphics, pTheme, &matrix)
    [all...]
cfwl_listbox.h 45 void DrawWidget(CXFA_Graphics* pGraphics, const CFX_Matrix& matrix) override;
49 void OnDrawWidget(CXFA_Graphics* pGraphics,
88 void DrawBkground(CXFA_Graphics* pGraphics,
91 void DrawItems(CXFA_Graphics* pGraphics,
94 void DrawItem(CXFA_Graphics* pGraphics,
100 void DrawStatic(CXFA_Graphics* pGraphics, IFWL_ThemeProvider* pTheme);
cfwl_comboboxproxy.h 26 void OnDrawWidget(CXFA_Graphics* pGraphics,
  /external/pdfium/xfa/fwl/theme/
cfwl_checkboxtp.h 39 CXFA_Graphics* pGraphics,
43 void DrawSignCheck(CXFA_Graphics* pGraphics,
47 void DrawSignCircle(CXFA_Graphics* pGraphics,
51 void DrawSignCross(CXFA_Graphics* pGraphics,
55 void DrawSignDiamond(CXFA_Graphics* pGraphics,
59 void DrawSignSquare(CXFA_Graphics* pGraphics,
63 void DrawSignStar(CXFA_Graphics* pGraphics,
cfwl_carettp.cpp 37 void CFWL_CaretTP::DrawCaretBK(CXFA_Graphics* pGraphics,
46 pGraphics->SetFillColor(*crFill);
48 pGraphics->SetFillColor(CXFA_GEColor(ArgbEncode(255, 0, 0, 0)));
50 pGraphics->FillPath(&path, FXFILL_WINDING, pMatrix);
cfwl_scrollbartp.h 32 void DrawThumbBtn(CXFA_Graphics* pGraphics,
38 void DrawTrack(CXFA_Graphics* pGraphics,
44 void DrawMaxMinBtn(CXFA_Graphics* pGraphics,
49 void DrawPaw(CXFA_Graphics* pGraphics,
cfwl_widgettp.cpp 48 CXFA_Graphics* pGraphics = pParams->m_pGraphics;
53 pMatrix->Concat(*pGraphics->GetMatrix());
55 m_pTextOut->DrawLogicText(pGraphics->GetRenderDevice(),
103 void CFWL_WidgetTP::DrawBorder(CXFA_Graphics* pGraphics,
106 if (!pGraphics || !pRect)
113 pGraphics->SaveGraphState();
114 pGraphics->SetFillColor(CXFA_GEColor(ArgbEncode(255, 0, 0, 0)));
115 pGraphics->FillPath(&path, FXFILL_ALTERNATE, pMatrix);
116 pGraphics->RestoreGraphState();
119 void CFWL_WidgetTP::FillBackground(CXFA_Graphics* pGraphics,
    [all...]
cfwl_scrollbartp.cpp 41 CXFA_Graphics* pGraphics = pParams->m_pGraphics;
46 DrawMaxMinBtn(pGraphics, pRect,
52 DrawMaxMinBtn(pGraphics, pRect,
58 DrawThumbBtn(pGraphics, pRect, bVert, eState, true, &pParams->m_matrix);
62 DrawTrack(pGraphics, pRect, bVert, eState, true, &pParams->m_matrix);
66 DrawTrack(pGraphics, pRect, bVert, eState, false, &pParams->m_matrix);
74 void CFWL_ScrollBarTP::DrawThumbBtn(CXFA_Graphics* pGraphics,
91 DrawAxialShading(pGraphics, rect.left, rect.top, rect.right(), rect.top,
95 pGraphics->SaveGraphState();
96 pGraphics->SetStrokeColor
    [all...]
cfwl_checkboxtp.cpp 66 void CFWL_CheckBoxTP::DrawSignCheck(CXFA_Graphics* pGraphics,
76 pGraphics->SaveGraphState();
77 pGraphics->SetFillColor(CXFA_GEColor(argbFill));
78 pGraphics->FillPath(m_pCheckPath.get(), FXFILL_WINDING, &mt);
79 pGraphics->RestoreGraphState();
82 void CFWL_CheckBoxTP::DrawSignCircle(CXFA_Graphics* pGraphics,
88 pGraphics->SaveGraphState();
89 pGraphics->SetFillColor(CXFA_GEColor(argbFill));
90 pGraphics->FillPath(&path, FXFILL_WINDING, pMatrix);
91 pGraphics->RestoreGraphState()
    [all...]
cfwl_listboxtp.cpp 57 void CFWL_ListBoxTP::DrawListBoxItem(CXFA_Graphics* pGraphics,
63 pGraphics->SaveGraphState();
64 pGraphics->SetFillColor(CXFA_GEColor(FWLTHEME_COLOR_BKSelected));
72 pGraphics->FillPath(&path, FXFILL_WINDING, pMatrix);
73 pGraphics->RestoreGraphState();
76 DrawFocus(pGraphics, (CFX_RectF*)pData, pMatrix);
cfwl_widgettp.h 57 void DrawBorder(CXFA_Graphics* pGraphics,
60 void FillBackground(CXFA_Graphics* pGraphics,
63 void FillSoildRect(CXFA_Graphics* pGraphics,
67 void DrawAxialShading(CXFA_Graphics* pGraphics,
77 void DrawFocus(CXFA_Graphics* pGraphics,
80 void DrawArrow(CXFA_Graphics* pGraphics,
85 void DrawBtn(CXFA_Graphics* pGraphics,
89 void DrawArrowBtn(CXFA_Graphics* pGraphics,
cfwl_carettp.h 21 void DrawCaretBK(CXFA_Graphics* pGraphics,
cfwl_listboxtp.h 21 void DrawListBoxItem(CXFA_Graphics* pGraphics,
cfwl_edittp.cpp 49 CXFA_Graphics* pGraphics = pParams->m_pGraphics;
50 pGraphics->SaveGraphState();
51 pGraphics->SetFillColor(CXFA_GEColor(FWLTHEME_COLOR_BKSelected));
52 pGraphics->FillPath(pParams->m_pPath, FXFILL_WINDING,
54 pGraphics->RestoreGraphState();
cfwl_pushbuttontp.cpp 54 CXFA_Graphics* pGraphics = pParams->m_pGraphics;
55 pGraphics->SaveGraphState();
64 DrawAxialShading(pGraphics, rect.left + PUSHBUTTON_SIZE_Corner, rect.top,
70 pGraphics->SetStrokeColor(CXFA_GEColor(m_pThemeData->clrBorder[iColor]));
71 pGraphics->StrokePath(&strokePath, &pParams->m_matrix);
77 pGraphics->SetFillColor(CXFA_GEColor(m_pThemeData->clrFill[iColor]));
78 pGraphics->FillPath(&fillPath, FXFILL_WINDING, &pParams->m_matrix);
81 DrawFocus(pGraphics, &rtInner, &pParams->m_matrix);
83 pGraphics->RestoreGraphState();
  /external/pdfium/xfa/fxfa/parser/
cxfa_stroke.cpp 19 void XFA_StrokeTypeSetLineDash(CXFA_Graphics* pGraphics,
29 pGraphics->SetLineDash(0, dashArray, 4);
39 pGraphics->SetLineDash(0, dashArray, 6);
47 pGraphics->SetLineDash(0, dashArray, 2);
55 pGraphics->SetLineDash(0, dashArray, 2);
59 pGraphics->SetSolidLineDash();

Completed in 325 milliseconds

1 2 3