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

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

Issue 2520063002: Split fwl/core class pt II. (Closed)
Patch Set: Rebase to master 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.cpp ('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 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/ifwl_comboboxproxy.h" 7 #include "xfa/fwl/core/ifwl_comboboxproxy.h"
8 8
9 #include <memory> 9 #include <memory>
10 #include <utility> 10 #include <utility>
11 11
12 #include "xfa/fwl/core/cfwl_msgkillfocus.h" 12 #include "xfa/fwl/core/cfwl_msgkillfocus.h"
13 #include "xfa/fwl/core/cfwl_msgmouse.h" 13 #include "xfa/fwl/core/cfwl_msgmouse.h"
14 #include "xfa/fwl/core/fwl_noteimp.h" 14 #include "xfa/fwl/core/cfwl_notedriver.h"
15 #include "xfa/fwl/core/ifwl_app.h" 15 #include "xfa/fwl/core/ifwl_app.h"
16 #include "xfa/fwl/core/ifwl_combobox.h" 16 #include "xfa/fwl/core/ifwl_combobox.h"
17 17
18 IFWL_ComboBoxProxy::IFWL_ComboBoxProxy( 18 IFWL_ComboBoxProxy::IFWL_ComboBoxProxy(
19 IFWL_ComboBox* pComboBox, 19 IFWL_ComboBox* pComboBox,
20 const IFWL_App* app, 20 const IFWL_App* app,
21 std::unique_ptr<CFWL_WidgetProperties> properties, 21 std::unique_ptr<CFWL_WidgetProperties> properties,
22 IFWL_Widget* pOuter) 22 IFWL_Widget* pOuter)
23 : IFWL_FormProxy(app, std::move(properties), pOuter), 23 : IFWL_FormProxy(app, std::move(properties), pOuter),
24 m_bLButtonDown(false), 24 m_bLButtonDown(false),
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 } 110 }
111 111
112 void IFWL_ComboBoxProxy::OnFocusChanged(CFWL_Message* pMessage, bool bSet) { 112 void IFWL_ComboBoxProxy::OnFocusChanged(CFWL_Message* pMessage, bool bSet) {
113 if (bSet) 113 if (bSet)
114 return; 114 return;
115 115
116 CFWL_MsgKillFocus* pMsg = static_cast<CFWL_MsgKillFocus*>(pMessage); 116 CFWL_MsgKillFocus* pMsg = static_cast<CFWL_MsgKillFocus*>(pMessage);
117 if (!pMsg->m_pSetFocus) 117 if (!pMsg->m_pSetFocus)
118 m_pComboBox->ShowDropList(false); 118 m_pComboBox->ShowDropList(false);
119 } 119 }
OLDNEW
« no previous file with comments | « xfa/fwl/core/ifwl_combobox.cpp ('k') | xfa/fwl/core/ifwl_datetimepicker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698