Lines Matching refs:pMsg
83 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnProcessMessage() local
87 if (rect.Contains(pMsg->m_pos)) { in OnProcessMessage()
88 pMsg->m_pos -= rect.TopLeft(); in OnProcessMessage()
89 vertSB->GetDelegate()->OnProcessMessage(pMsg); in OnProcessMessage()
93 switch (pMsg->m_dwCmd) { in OnProcessMessage()
96 OnDropListMouseMove(pMsg); in OnProcessMessage()
101 OnDropListLButtonDown(pMsg); in OnProcessMessage()
106 OnDropListLButtonUp(pMsg); in OnProcessMessage()
119 void CFWL_ComboList::OnDropListFocusChanged(CFWL_Message* pMsg, bool bSet) { in OnDropListFocusChanged() argument
123 CFWL_MessageKillFocus* pKill = static_cast<CFWL_MessageKillFocus*>(pMsg); in OnDropListFocusChanged()
131 void CFWL_ComboList::OnDropListMouseMove(CFWL_MessageMouse* pMsg) { in OnDropListMouseMove() argument
132 if (GetRTClient().Contains(pMsg->m_pos)) { in OnDropListMouseMove()
139 if (rect.Contains(pMsg->m_pos)) in OnDropListMouseMove()
143 CFWL_ListItem* hItem = GetItemAtPoint(pMsg->m_pos); in OnDropListMouseMove()
149 pMsg->m_pos = ClientToOuter(pMsg->m_pos); in OnDropListMouseMove()
152 pOuter->GetDelegate()->OnProcessMessage(pMsg); in OnDropListMouseMove()
156 void CFWL_ComboList::OnDropListLButtonDown(CFWL_MessageMouse* pMsg) { in OnDropListLButtonDown() argument
157 if (GetRTClient().Contains(pMsg->m_pos)) in OnDropListLButtonDown()
164 void CFWL_ComboList::OnDropListLButtonUp(CFWL_MessageMouse* pMsg) { in OnDropListLButtonUp() argument
167 pMsg->m_pos = ClientToOuter(pMsg->m_pos); in OnDropListLButtonUp()
168 pOuter->GetDelegate()->OnProcessMessage(pMsg); in OnDropListLButtonUp()
175 if (rect.Contains(pMsg->m_pos)) in OnDropListLButtonUp()
180 CFWL_ListItem* hItem = GetItemAtPoint(pMsg->m_pos); in OnDropListLButtonUp()