Home | History | Annotate | Download | only in fxedit

Lines Matching refs:rcContent

2073 		CPDF_Rect rcContent = m_pVT->GetContentRect();
2074 if (rcContent.Width() != m_rcOldContent.Width() ||
2075 rcContent.Height() != m_rcOldContent.Height())
2080 m_pNotify->IOnContentChange(rcContent);
2083 m_rcOldContent = rcContent;
2122 CPDF_Rect rcContent = m_pVT->GetContentRect();
2133 fPadding = (rcPlate.Height() - rcContent.Height()) * 0.5f;
2136 fPadding = rcPlate.Height() - rcContent.Height();
2146 CPDF_Rect rcContent = m_pVT->GetContentRect();
2157 fPadding = (rcPlate.Height() - rcContent.Height()) * 0.5f;
2160 fPadding = rcPlate.Height() - rcContent.Height();
2189 CPDF_Rect rcContent = m_pVT->GetContentRect();
2195 rcContent.left, rcContent.right, rcPlate.Width() / 3, rcPlate.Width());
2198 rcContent.bottom, rcContent.top, rcPlate.Height() / 3, rcPlate.Height());
2269 CPDF_Rect rcContent = m_pVT->GetContentRect();
2272 if (rcPlate.Width() > rcContent.Width())
2278 if (FX_EDIT_IsFloatSmaller(m_ptScrollPos.x, rcContent.left))
2280 SetScrollPosX(rcContent.left);
2282 else if (FX_EDIT_IsFloatBigger(m_ptScrollPos.x, rcContent.right - rcPlate.Width()))
2284 SetScrollPosX(rcContent.right - rcPlate.Width());
2288 if (rcPlate.Height() > rcContent.Height())
2294 if (FX_EDIT_IsFloatSmaller(m_ptScrollPos.y, rcContent.bottom + rcPlate.Height()))
2296 SetScrollPosY(rcContent.bottom + rcPlate.Height());
2298 else if (FX_EDIT_IsFloatBigger(m_ptScrollPos.y, rcContent.top))
2300 SetScrollPosY(rcContent.top);
3394 CPDF_Rect rcContent = m_pVT->GetContentRect();
3398 if (FX_EDIT_IsFloatBigger(rcContent.Height(),rcPlate.Height())) return TRUE;
3401 if (FX_EDIT_IsFloatBigger(rcContent.Width(),rcPlate.Width())) return TRUE;