Home
last modified time | relevance | path

Searched refs:rcContent (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/fpdfsdk/src/fxedit/
Dfxet_edit.cpp1715 CPDF_Rect rcContent = m_pVT->GetContentRect(); in SetContentChanged() local
1716 if (rcContent.Width() != m_rcOldContent.Width() || in SetContentChanged()
1717 rcContent.Height() != m_rcOldContent.Height()) { in SetContentChanged()
1720 m_pNotify->IOnContentChange(rcContent); in SetContentChanged()
1723 m_rcOldContent = rcContent; in SetContentChanged()
1755 CPDF_Rect rcContent = m_pVT->GetContentRect(); in VTToEdit() local
1765 fPadding = (rcPlate.Height() - rcContent.Height()) * 0.5f; in VTToEdit()
1768 fPadding = rcPlate.Height() - rcContent.Height(); in VTToEdit()
1777 CPDF_Rect rcContent = m_pVT->GetContentRect(); in EditToVT() local
1787 fPadding = (rcPlate.Height() - rcContent.Height()) * 0.5f; in EditToVT()
[all …]
Dfxet_list.cpp732 CPDF_Rect rcContent = CFX_List::GetContentRect(); in SetScrollInfo() local
737 rcContent.bottom, rcContent.top, in SetScrollInfo()
751 CPDF_Rect rcContent = CFX_List::GetContentRect(); in SetScrollPosY() local
753 if (rcPlate.Height() > rcContent.Height()) { in SetScrollPosY()
756 if (FX_EDIT_IsFloatSmaller(fy - rcPlate.Height(), rcContent.bottom)) { in SetScrollPosY()
757 fy = rcContent.bottom + rcPlate.Height(); in SetScrollPosY()
758 } else if (FX_EDIT_IsFloatBigger(fy, rcContent.top)) { in SetScrollPosY()
759 fy = rcContent.top; in SetScrollPosY()
/external/pdfium/fpdfsdk/include/pdfwindow/
DPWL_EditCtrl.h30 virtual void OnContentChange(const CPDF_Rect& rcContent) {} in OnContentChange() argument
143 void IOnContentChange(const CPDF_Rect& rcContent) override;
/external/pdfium/fpdfsdk/src/pdfwindow/
DPWL_Wnd.cpp730 CPDF_Rect rcContent = CPWL_Utils::DeflateRect( in RePosChildWnd() local
736 CPDF_Rect(rcContent.right - PWL_SCROLLBAR_WIDTH, rcContent.bottom, in RePosChildWnd()
737 rcContent.right - 1.0f, rcContent.top); in RePosChildWnd()
DPWL_ListBox.cpp172 CPDF_Rect rcContent = pEdit->GetContentRect(); in DrawThisAppearance() local
173 if (rcContent.Width() > rcClient.Width()) in DrawThisAppearance()
DPWL_EditCtrl.cpp587 void CPWL_EditCtrl::IOnContentChange(const CPDF_Rect& rcContent) { in IOnContentChange() argument
590 m_pEditNotify->OnContentChange(rcContent); in IOnContentChange()
/external/pdfium/core/src/fpdfdoc/
Ddoc_ap.cpp495 CPDF_Rect rcContent = vt.GetContentRect(); in GenerateWidgetAP() local
499 CPDF_Point(0.0f, (rcContent.Height() - rcBody.Height()) / 2.0f); in GenerateWidgetAP()
506 if (rcContent.Width() > rcBody.Width() || in GenerateWidgetAP()
507 rcContent.Height() > rcBody.Height()) { in GenerateWidgetAP()
543 CPDF_Rect rcContent = vt.GetContentRect(); in GenerateWidgetAP() local
545 CPDF_Point(0.0f, (rcContent.Height() - rcEdit.Height()) / 2.0f); in GenerateWidgetAP()
/external/pdfium/fpdfsdk/src/
Dfsdk_baseform.cpp1428 CPDF_Rect rcContent = pEdit->GetContentRect(); local
1435 if (rcContent.Width() > rcEdit.Width() ||
1436 rcContent.Height() > rcEdit.Height()) {
1502 CPDF_Rect rcContent = pEdit->GetContentRect(); local
1503 FX_FLOAT fItemHeight = rcContent.Height();
1619 CPDF_Rect rcContent = pEdit->GetContentRect(); local
1627 if (rcContent.Width() > rcClient.Width() ||
1628 rcContent.Height() > rcClient.Height()) {
/external/pdfium/fpdfsdk/include/fxedit/
Dfx_edit.h103 virtual void IOnContentChange(const CPDF_Rect& rcContent) = 0;