• Home
  • Raw
  • Download

Lines Matching refs:pMsg

167   CFWL_MessageKey* pMsg = static_cast<CFWL_MessageKey*>(pMessage);  in DoKey()  local
169 if (pMsg->m_dwCmd == FWL_KeyCommand::KeyDown && in DoKey()
170 pMsg->m_dwKeyCode == XFA_FWL_VKEY_Tab) { in DoKey()
172 CFWL_Widget* pForm = GetMessageForm(pMsg->GetDstTarget()); in DoKey()
192 pMsg->SetDstTarget(m_pFocus.Get()); in DoKey()
196 if (pMsg->m_dwCmd == FWL_KeyCommand::KeyDown && in DoKey()
197 pMsg->m_dwKeyCode == XFA_FWL_VKEY_Return) { in DoKey()
201 pMsg->SetDstTarget(pDefButton); in DoKey()
210 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in DoMouse() local
211 if (pMsg->m_dwCmd == FWL_MouseCommand::Leave || in DoMouse()
212 pMsg->m_dwCmd == FWL_MouseCommand::Hover || in DoMouse()
213 pMsg->m_dwCmd == FWL_MouseCommand::Enter) { in DoMouse()
214 return !!pMsg->GetDstTarget(); in DoMouse()
216 if (pMsg->GetDstTarget() != pMessageForm) in DoMouse()
217 pMsg->m_pos = pMsg->GetDstTarget()->TransformTo(pMessageForm, pMsg->m_pos); in DoMouse()
218 if (!DoMouseEx(pMsg, pMessageForm)) in DoMouse()
219 pMsg->SetDstTarget(pMessageForm); in DoMouse()
226 CFWL_MessageMouseWheel* pMsg = static_cast<CFWL_MessageMouseWheel*>(pMessage); in DoWheel() local
227 CFWL_Widget* pDst = pWidgetMgr->GetWidgetAtPoint(pMessageForm, pMsg->m_pos); in DoWheel()
231 pMsg->m_pos = pMessageForm->TransformTo(pDst, pMsg->m_pos); in DoWheel()
232 pMsg->SetDstTarget(pDst); in DoWheel()
243 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in DoMouseEx() local
245 pTarget = pWidgetMgr->GetWidgetAtPoint(pMessageForm, pMsg->m_pos); in DoMouseEx()
249 pMsg->m_pos = pMessageForm->TransformTo(pTarget, pMsg->m_pos); in DoMouseEx()
251 pMsg->SetDstTarget(pTarget); in DoMouseEx()
260 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in MouseSecondary() local
264 pTarget->TransformTo(m_pHover.Get(), pMsg->m_pos)); in MouseSecondary()
273 CFWL_MessageMouse msHover(pTarget, FWL_MouseCommand::Hover, 0, pMsg->m_pos); in MouseSecondary()