Home | History | Annotate | Download | only in pdfwindow

Lines Matching refs:rcClient

80   CPDF_Rect rcClient = GetClientRect();
82 FX_FLOAT fWidth = rcClient.Width();
96 rcClient.left - m_ptScroll.x,
97 rcClient.top - m_ptScroll.y));
140 CPDF_Rect rcClient = GetClientRect();
141 CPDF_Rect rcTemp = rcClient;
151 if (!(rcChild.top < rcClient.bottom || rcChild.bottom > rcClient.top)) {
176 CPDF_Rect rcClient = GetClientRect();
178 return CPDF_Point(point.x + rcClient.left - m_ptScroll.x,
179 point.y + rcClient.top - m_ptScroll.y);
183 CPDF_Rect rcClient = GetClientRect();
185 return CPDF_Point(point.x - rcClient.left + m_ptScroll.x,
186 point.y - rcClient.top + m_ptScroll.y);
190 CPDF_Rect rcClient = GetClientRect();
192 return CPDF_Rect(rect.left + rcClient.left - m_ptScroll.x,
193 rect.bottom + rcClient.top - m_ptScroll.y,
194 rect.right + rcClient.left - m_ptScroll.x,
195 rect.top + rcClient.top - m_ptScroll.y);
199 CPDF_Rect rcClient = GetClientRect();
201 return CPDF_Rect(rect.left - rcClient.left + m_ptScroll.x,
202 rect.bottom - rcClient.top + m_ptScroll.y,
203 rect.right - rcClient.left + m_ptScroll.x,
204 rect.top - rcClient.top + m_ptScroll.y);