Lines Matching refs:pageViewRect
125 FS_RECTF pageViewRect = {0.0f, 0.0f, 0.0f, 0.0f}; in GetPopupPos() local
126 pFormFillEnv->GetPageViewRect(pPage.Get(), pageViewRect); in GetPopupPos()
134 t1 = (int)(pageViewRect.right - rcAnchor.right); in GetPopupPos()
135 t2 = (int)(rcAnchor.left - pageViewRect.left); in GetPopupPos()
136 if (rcAnchor.bottom < pageViewRect.bottom) in GetPopupPos()
137 rtPopup.left += rcAnchor.bottom - pageViewRect.bottom; in GetPopupPos()
141 t2 = (int)(pageViewRect.top - rcAnchor.top); in GetPopupPos()
142 t1 = (int)(rcAnchor.bottom - pageViewRect.bottom); in GetPopupPos()
143 if (rcAnchor.left < pageViewRect.left) in GetPopupPos()
144 rtPopup.left += rcAnchor.left - pageViewRect.left; in GetPopupPos()
148 t1 = (int)(rcAnchor.left - pageViewRect.left); in GetPopupPos()
149 t2 = (int)(pageViewRect.right - rcAnchor.right); in GetPopupPos()
150 if (rcAnchor.top > pageViewRect.top) in GetPopupPos()
151 rtPopup.left -= rcAnchor.top - pageViewRect.top; in GetPopupPos()
156 t1 = (int)(pageViewRect.top - rcAnchor.top); in GetPopupPos()
157 t2 = (int)(rcAnchor.bottom - pageViewRect.bottom); in GetPopupPos()
158 if (rcAnchor.right > pageViewRect.right) in GetPopupPos()
159 rtPopup.left -= rcAnchor.right - pageViewRect.right; in GetPopupPos()