| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "xfa/fwl/core/cfwl_comboedit.h" | 7 #include "xfa/fwl/core/cfwl_comboedit.h" |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 m_pProperties->m_dwStates &= ~FWL_WGTSTATE_Focused; | 41 m_pProperties->m_dwStates &= ~FWL_WGTSTATE_Focused; |
| 42 ShowCaret(false); | 42 ShowCaret(false); |
| 43 } | 43 } |
| 44 | 44 |
| 45 void CFWL_ComboEdit::OnProcessMessage(CFWL_Message* pMessage) { | 45 void CFWL_ComboEdit::OnProcessMessage(CFWL_Message* pMessage) { |
| 46 if (!pMessage) | 46 if (!pMessage) |
| 47 return; | 47 return; |
| 48 | 48 |
| 49 bool backDefault = true; | 49 bool backDefault = true; |
| 50 switch (pMessage->GetClassID()) { | 50 switch (pMessage->GetType()) { |
| 51 case CFWL_MessageType::SetFocus: { | 51 case CFWL_Message::Type::SetFocus: { |
| 52 m_pProperties->m_dwStates |= FWL_WGTSTATE_Focused; | 52 m_pProperties->m_dwStates |= FWL_WGTSTATE_Focused; |
| 53 backDefault = false; | 53 backDefault = false; |
| 54 break; | 54 break; |
| 55 } | 55 } |
| 56 case CFWL_MessageType::KillFocus: { | 56 case CFWL_Message::Type::KillFocus: { |
| 57 m_pProperties->m_dwStates &= ~FWL_WGTSTATE_Focused; | 57 m_pProperties->m_dwStates &= ~FWL_WGTSTATE_Focused; |
| 58 backDefault = false; | 58 backDefault = false; |
| 59 break; | 59 break; |
| 60 } | 60 } |
| 61 case CFWL_MessageType::Mouse: { | 61 case CFWL_Message::Type::Mouse: { |
| 62 CFWL_MsgMouse* pMsg = static_cast<CFWL_MsgMouse*>(pMessage); | 62 CFWL_MsgMouse* pMsg = static_cast<CFWL_MsgMouse*>(pMessage); |
| 63 if ((pMsg->m_dwCmd == FWL_MouseCommand::LeftButtonDown) && | 63 if ((pMsg->m_dwCmd == FWL_MouseCommand::LeftButtonDown) && |
| 64 ((m_pProperties->m_dwStates & FWL_WGTSTATE_Focused) == 0)) { | 64 ((m_pProperties->m_dwStates & FWL_WGTSTATE_Focused) == 0)) { |
| 65 SetSelected(); | 65 SetSelected(); |
| 66 m_pOuter->SetFocus(true); | 66 m_pOuter->SetFocus(true); |
| 67 } | 67 } |
| 68 break; | 68 break; |
| 69 } | 69 } |
| 70 default: | 70 default: |
| 71 break; | 71 break; |
| 72 } | 72 } |
| 73 if (backDefault) | 73 if (backDefault) |
| 74 CFWL_Edit::OnProcessMessage(pMessage); | 74 CFWL_Edit::OnProcessMessage(pMessage); |
| 75 } | 75 } |
| OLD | NEW |