Lines Matching refs:rtAnchor

383                               const CFX_RectF& rtAnchor,  in GetPopupPos()  argument
387 m_pWidgetMgr->GetAdapterPopupPos(this, fMinHeight, fMaxHeight, rtAnchor, in GetPopupPos()
391 GetPopupPosComboBox(fMinHeight, fMaxHeight, rtAnchor, rtPopup); in GetPopupPos()
396 m_pWidgetMgr->GetAdapterPopupPos(this, fMinHeight, fMaxHeight, rtAnchor, in GetPopupPos()
400 GetPopupPosGeneral(fMinHeight, fMaxHeight, rtAnchor, rtPopup); in GetPopupPos()
405 const CFX_RectF& rtAnchor, in GetPopupPosMenu() argument
409 FX_FLOAT fRight = rtAnchor.right() + rtPopup.width; in GetPopupPosMenu()
412 rtPopup = CFX_RectF(rtAnchor.left - rtPopup.width, rtAnchor.top, in GetPopupPosMenu()
415 rtPopup = CFX_RectF(rtAnchor.right(), rtAnchor.top, rtPopup.width, in GetPopupPosMenu()
422 FX_FLOAT fBottom = rtAnchor.bottom() + rtPopup.height; in GetPopupPosMenu()
425 rtPopup = CFX_RectF(rtAnchor.left, rtAnchor.top - rtPopup.height, in GetPopupPosMenu()
428 rtPopup = CFX_RectF(rtAnchor.left, rtAnchor.bottom(), rtPopup.width, in GetPopupPosMenu()
437 const CFX_RectF& rtAnchor, in GetPopupPosComboBox() argument
445 FX_FLOAT fWidth = std::max(rtAnchor.width, rtPopup.width); in GetPopupPosComboBox()
446 FX_FLOAT fBottom = rtAnchor.bottom() + fPopHeight; in GetPopupPosComboBox()
450 CFX_RectF(rtAnchor.left, rtAnchor.top - fPopHeight, fWidth, fPopHeight); in GetPopupPosComboBox()
452 rtPopup = CFX_RectF(rtAnchor.left, rtAnchor.bottom(), fWidth, fPopHeight); in GetPopupPosComboBox()
461 const CFX_RectF& rtAnchor, in GetPopupPosGeneral() argument
464 if (rtAnchor.bottom() + point.y > 0.0f) { in GetPopupPosGeneral()
465 rtPopup = CFX_RectF(rtAnchor.left, rtAnchor.top - rtPopup.height, in GetPopupPosGeneral()
468 rtPopup = CFX_RectF(rtAnchor.left, rtAnchor.bottom(), rtPopup.width, in GetPopupPosGeneral()