| OLD | NEW |
| 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/basewidget/fwl_comboboximp.h" | 7 #include "xfa/fwl/basewidget/fwl_comboboximp.h" |
| 8 | 8 |
| 9 #include "xfa/fde/cfde_txtedtengine.h" | 9 #include "xfa/fde/cfde_txtedtengine.h" |
| 10 #include "xfa/fde/tto/fde_textout.h" | 10 #include "xfa/fde/tto/fde_textout.h" |
| 11 #include "xfa/fwl/basewidget/fwl_editimp.h" | 11 #include "xfa/fwl/basewidget/fwl_editimp.h" |
| 12 #include "xfa/fwl/basewidget/fwl_formproxyimp.h" | 12 #include "xfa/fwl/basewidget/fwl_formproxyimp.h" |
| 13 #include "xfa/fwl/basewidget/fwl_listboximp.h" | 13 #include "xfa/fwl/basewidget/fwl_listboximp.h" |
| 14 #include "xfa/fwl/basewidget/fwl_scrollbarimp.h" | 14 #include "xfa/fwl/basewidget/fwl_scrollbarimp.h" |
| 15 #include "xfa/fwl/core/cfwl_message.h" | 15 #include "xfa/fwl/core/cfwl_message.h" |
| 16 #include "xfa/fwl/core/cfwl_themebackground.h" | 16 #include "xfa/fwl/core/cfwl_themebackground.h" |
| 17 #include "xfa/fwl/core/cfwl_themepart.h" | 17 #include "xfa/fwl/core/cfwl_themepart.h" |
| 18 #include "xfa/fwl/core/cfwl_themetext.h" | 18 #include "xfa/fwl/core/cfwl_themetext.h" |
| 19 #include "xfa/fwl/core/cfwl_widgetmgr.h" | 19 #include "xfa/fwl/core/cfwl_widgetmgr.h" |
| 20 #include "xfa/fwl/core/fwl_appimp.h" | |
| 21 #include "xfa/fwl/core/fwl_formimp.h" | 20 #include "xfa/fwl/core/fwl_formimp.h" |
| 22 #include "xfa/fwl/core/fwl_noteimp.h" | 21 #include "xfa/fwl/core/fwl_noteimp.h" |
| 23 #include "xfa/fwl/core/fwl_widgetimp.h" | 22 #include "xfa/fwl/core/fwl_widgetimp.h" |
| 24 #include "xfa/fwl/core/ifwl_app.h" | 23 #include "xfa/fwl/core/ifwl_app.h" |
| 25 #include "xfa/fwl/core/ifwl_themeprovider.h" | 24 #include "xfa/fwl/core/ifwl_themeprovider.h" |
| 26 | 25 |
| 27 // static | 26 // static |
| 28 IFWL_ComboBox* IFWL_ComboBox::Create( | 27 IFWL_ComboBox* IFWL_ComboBox::Create( |
| 29 const CFWL_WidgetImpProperties& properties) { | 28 const CFWL_WidgetImpProperties& properties) { |
| 30 IFWL_ComboBox* pComboBox = new IFWL_ComboBox; | 29 IFWL_ComboBox* pComboBox = new IFWL_ComboBox; |
| (...skipping 1810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1841 m_pComboBox->ShowDropList(FALSE); | 1840 m_pComboBox->ShowDropList(FALSE); |
| 1842 } | 1841 } |
| 1843 void CFWL_ComboProxyImpDelegate::OnFocusChanged(CFWL_MsgKillFocus* pMsg, | 1842 void CFWL_ComboProxyImpDelegate::OnFocusChanged(CFWL_MsgKillFocus* pMsg, |
| 1844 FX_BOOL bSet) { | 1843 FX_BOOL bSet) { |
| 1845 if (!bSet) { | 1844 if (!bSet) { |
| 1846 if (!pMsg->m_pSetFocus) { | 1845 if (!pMsg->m_pSetFocus) { |
| 1847 m_pComboBox->ShowDropList(FALSE); | 1846 m_pComboBox->ShowDropList(FALSE); |
| 1848 } | 1847 } |
| 1849 } | 1848 } |
| 1850 } | 1849 } |
| OLD | NEW |