Lines Matching refs:m_rtCaption

217       m_rtCaption = CFX_RectF();  in CapPlacement()
228 m_rtCaption = rtWidget; in CapPlacement()
231 m_rtCaption = pItem->GetRect(false); in CapPlacement()
234 m_rtCaption.height += pItem->GetRect(false).Height(); in CapPlacement()
237 XFA_RectWithoutMargin(&m_rtCaption, margin); in CapPlacement()
259 m_rtCaption.width = fCapReserve; in CapPlacement()
266 m_rtCaption.height = fCapReserve; in CapPlacement()
273 m_rtCaption.left = m_rtCaption.right() - fCapReserve; in CapPlacement()
274 m_rtCaption.width = fCapReserve; in CapPlacement()
280 m_rtCaption.top = m_rtCaption.bottom() - fCapReserve; in CapPlacement()
281 m_rtCaption.height = fCapReserve; in CapPlacement()
304 m_rtCaption.left += rtUIMargin.left; in CapTopBottomPlacement()
306 XFA_RectWithoutMargin(&m_rtCaption, margin); in CapTopBottomPlacement()
307 if (m_rtCaption.height < 0) in CapTopBottomPlacement()
308 m_rtCaption.top += m_rtCaption.height; in CapTopBottomPlacement()
312 float fHeight = m_rtCaption.height + rtUIMargin.top + rtUIMargin.height; in CapTopBottomPlacement()
318 m_rtCaption.top += rtUIMargin.top + rtUIMargin.height; in CapTopBottomPlacement()
322 m_rtCaption.top += fHeight - rtWidget.height; in CapTopBottomPlacement()
330 m_rtCaption.top += rtUIMargin.top; in CapLeftRightPlacement()
331 m_rtCaption.height -= rtUIMargin.top; in CapLeftRightPlacement()
333 XFA_RectWithoutMargin(&m_rtCaption, margin); in CapLeftRightPlacement()
334 if (m_rtCaption.height < 0) in CapLeftRightPlacement()
335 m_rtCaption.top += m_rtCaption.height; in CapLeftRightPlacement()
338 float fWidth = m_rtCaption.width + rtUIMargin.left + rtUIMargin.width; in CapLeftRightPlacement()
343 m_rtCaption.left += fWidth - rtWidget.width; in CapLeftRightPlacement()
348 m_rtCaption.top += rtUIMargin.top + rtUIMargin.height; in CapLeftRightPlacement()
592 if (m_rtCaption.Contains(point)) in HitTest()
611 float fHeight = pCapTextLayout->Layout(m_rtCaption.Size()); in LayoutCaption()
612 m_rtCaption.height = std::max(m_rtCaption.height, fHeight); in LayoutCaption()
625 pCapTextLayout->Layout(m_rtCaption.Size()); in RenderCaption()
627 CFX_RectF rtClip = m_rtCaption; in RenderCaption()
630 CFX_Matrix mt(1, 0, 0, 1, m_rtCaption.left, m_rtCaption.top); in RenderCaption()