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

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

Issue 2511813002: Create CFWL_EvtEditChanged (Closed)
Patch Set: fixed 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
« no previous file with comments | « xfa/fwl/core/ifwl_combobox.h ('k') | xfa/fwl/core/ifwl_datetimepicker.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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; 860 pTemp.m_pSrcTarget = this;
862 pTemp.wsInsert = pTextChangedEvent->wsInsert;
863 pTemp.wsDelete = pTextChangedEvent->wsDelete;
864 pTemp.nChangeType = pTextChangedEvent->nChangeType;
865 DispatchEvent(&pTemp); 861 DispatchEvent(&pTemp);
866 } 862 }
867 } 863 }
868 864
869 void IFWL_ComboBox::OnDrawWidget(CFX_Graphics* pGraphics, 865 void IFWL_ComboBox::OnDrawWidget(CFX_Graphics* pGraphics,
870 const CFX_Matrix* pMatrix) { 866 const CFX_Matrix* pMatrix) {
871 DrawWidget(pGraphics, pMatrix); 867 DrawWidget(pGraphics, pMatrix);
872 } 868 }
873 869
874 void IFWL_ComboBox::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { 870 void IFWL_ComboBox::OnFocusChanged(CFWL_Message* pMsg, bool bSet) {
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1132 else 1128 else
1133 iCurSel++; 1129 iCurSel++;
1134 } 1130 }
1135 m_iCurSel = iCurSel; 1131 m_iCurSel = iCurSel;
1136 SyncEditText(m_iCurSel); 1132 SyncEditText(m_iCurSel);
1137 return; 1133 return;
1138 } 1134 }
1139 if (m_pEdit) 1135 if (m_pEdit)
1140 m_pEdit->GetDelegate()->OnProcessMessage(pMsg); 1136 m_pEdit->GetDelegate()->OnProcessMessage(pMsg);
1141 } 1137 }
OLDNEW
« no previous file with comments | « xfa/fwl/core/ifwl_combobox.h ('k') | xfa/fwl/core/ifwl_datetimepicker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698