Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: xfa/fwl/core/ifwl_combobox.cpp

Issue 2511813002: Create CFWL_EvtEditChanged (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 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/ifwl_combobox.h" 7 #include "xfa/fwl/core/ifwl_combobox.h"
8 8
9 #include "third_party/base/ptr_util.h" 9 #include "third_party/base/ptr_util.h"
10 #include "xfa/fde/cfde_txtedtengine.h" 10 #include "xfa/fde/cfde_txtedtengine.h"
11 #include "xfa/fde/tto/fde_textout.h" 11 #include "xfa/fde/tto/fde_textout.h"
12 #include "xfa/fwl/core/cfwl_evteditchanged.h"
12 #include "xfa/fwl/core/cfwl_evtpostdropdown.h" 13 #include "xfa/fwl/core/cfwl_evtpostdropdown.h"
13 #include "xfa/fwl/core/cfwl_evtpredropdown.h" 14 #include "xfa/fwl/core/cfwl_evtpredropdown.h"
14 #include "xfa/fwl/core/cfwl_evttextchanged.h" 15 #include "xfa/fwl/core/cfwl_evttextchanged.h"
15 #include "xfa/fwl/core/cfwl_msgkey.h" 16 #include "xfa/fwl/core/cfwl_msgkey.h"
16 #include "xfa/fwl/core/cfwl_msgkillfocus.h" 17 #include "xfa/fwl/core/cfwl_msgkillfocus.h"
17 #include "xfa/fwl/core/cfwl_msgmouse.h" 18 #include "xfa/fwl/core/cfwl_msgmouse.h"
18 #include "xfa/fwl/core/cfwl_msgsetfocus.h" 19 #include "xfa/fwl/core/cfwl_msgsetfocus.h"
19 #include "xfa/fwl/core/cfwl_themebackground.h" 20 #include "xfa/fwl/core/cfwl_themebackground.h"
20 #include "xfa/fwl/core/cfwl_themepart.h" 21 #include "xfa/fwl/core/cfwl_themepart.h"
21 #include "xfa/fwl/core/cfwl_themetext.h" 22 #include "xfa/fwl/core/cfwl_themetext.h"
(...skipping 826 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 void IFWL_ComboBox::OnProcessEvent(CFWL_Event* pEvent) { 849 void IFWL_ComboBox::OnProcessEvent(CFWL_Event* pEvent) {
849 CFWL_EventType dwFlag = pEvent->GetClassID(); 850 CFWL_EventType dwFlag = pEvent->GetClassID();
850 if (dwFlag == CFWL_EventType::Scroll) { 851 if (dwFlag == CFWL_EventType::Scroll) {
851 CFWL_EvtScroll* pScrollEvent = static_cast<CFWL_EvtScroll*>(pEvent); 852 CFWL_EvtScroll* pScrollEvent = static_cast<CFWL_EvtScroll*>(pEvent);
852 CFWL_EvtScroll pScrollEv; 853 CFWL_EvtScroll pScrollEv;
853 pScrollEv.m_pSrcTarget = this; 854 pScrollEv.m_pSrcTarget = this;
854 pScrollEv.m_iScrollCode = pScrollEvent->m_iScrollCode; 855 pScrollEv.m_iScrollCode = pScrollEvent->m_iScrollCode;
855 pScrollEv.m_fPos = pScrollEvent->m_fPos; 856 pScrollEv.m_fPos = pScrollEvent->m_fPos;
856 DispatchEvent(&pScrollEv); 857 DispatchEvent(&pScrollEv);
857 } else if (dwFlag == CFWL_EventType::TextChanged) { 858 } else if (dwFlag == CFWL_EventType::TextChanged) {
858 CFWL_EvtTextChanged* pTextChangedEvent = 859 CFWL_EvtEditChanged pTemp;
859 static_cast<CFWL_EvtTextChanged*>(pEvent);
860 CFWL_EvtCmbEditChanged pTemp;
861 pTemp.m_pSrcTarget = this;
Tom Sepez 2016/11/17 17:12:58 Sure this isn't used?
dsinclair 2016/11/17 18:00:13 Done. Good catch, thanks.
862 pTemp.wsInsert = pTextChangedEvent->wsInsert;
863 pTemp.wsDelete = pTextChangedEvent->wsDelete;
864 pTemp.nChangeType = pTextChangedEvent->nChangeType;
865 DispatchEvent(&pTemp); 860 DispatchEvent(&pTemp);
866 } 861 }
867 } 862 }
868 863
869 void IFWL_ComboBox::OnDrawWidget(CFX_Graphics* pGraphics, 864 void IFWL_ComboBox::OnDrawWidget(CFX_Graphics* pGraphics,
870 const CFX_Matrix* pMatrix) { 865 const CFX_Matrix* pMatrix) {
871 DrawWidget(pGraphics, pMatrix); 866 DrawWidget(pGraphics, pMatrix);
872 } 867 }
873 868
874 void IFWL_ComboBox::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { 869 void IFWL_ComboBox::OnFocusChanged(CFWL_Message* pMsg, bool bSet) {
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1132 else 1127 else
1133 iCurSel++; 1128 iCurSel++;
1134 } 1129 }
1135 m_iCurSel = iCurSel; 1130 m_iCurSel = iCurSel;
1136 SyncEditText(m_iCurSel); 1131 SyncEditText(m_iCurSel);
1137 return; 1132 return;
1138 } 1133 }
1139 if (m_pEdit) 1134 if (m_pEdit)
1140 m_pEdit->GetDelegate()->OnProcessMessage(pMsg); 1135 m_pEdit->GetDelegate()->OnProcessMessage(pMsg);
1141 } 1136 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698