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/tto/fde_textout.h" | 9 #include "xfa/fde/tto/fde_textout.h" |
10 #include "xfa/fwl/basewidget/fwl_editimp.h" | 10 #include "xfa/fwl/basewidget/fwl_editimp.h" |
11 #include "xfa/fwl/basewidget/fwl_formproxyimp.h" | 11 #include "xfa/fwl/basewidget/fwl_formproxyimp.h" |
12 #include "xfa/fwl/basewidget/fwl_listboximp.h" | 12 #include "xfa/fwl/basewidget/fwl_listboximp.h" |
13 #include "xfa/fwl/basewidget/fwl_scrollbarimp.h" | 13 #include "xfa/fwl/basewidget/fwl_scrollbarimp.h" |
| 14 #include "xfa/fwl/core/cfwl_message.h" |
| 15 #include "xfa/fwl/core/cfwl_themebackground.h" |
| 16 #include "xfa/fwl/core/cfwl_themepart.h" |
| 17 #include "xfa/fwl/core/cfwl_themetext.h" |
14 #include "xfa/fwl/core/fwl_appimp.h" | 18 #include "xfa/fwl/core/fwl_appimp.h" |
15 #include "xfa/fwl/core/fwl_formimp.h" | 19 #include "xfa/fwl/core/fwl_formimp.h" |
16 #include "xfa/fwl/core/fwl_noteimp.h" | 20 #include "xfa/fwl/core/fwl_noteimp.h" |
17 #include "xfa/fwl/core/fwl_panelimp.h" | 21 #include "xfa/fwl/core/fwl_panelimp.h" |
18 #include "xfa/fwl/core/fwl_targetimp.h" | 22 #include "xfa/fwl/core/fwl_targetimp.h" |
19 #include "xfa/fwl/core/fwl_threadimp.h" | 23 #include "xfa/fwl/core/fwl_threadimp.h" |
20 #include "xfa/fwl/core/fwl_widgetimp.h" | 24 #include "xfa/fwl/core/fwl_widgetimp.h" |
21 #include "xfa/fwl/core/fwl_widgetmgrimp.h" | 25 #include "xfa/fwl/core/fwl_widgetmgrimp.h" |
22 #include "xfa/include/fwl/core/fwl_theme.h" | 26 #include "xfa/fwl/core/ifwl_notethread.h" |
| 27 #include "xfa/fwl/core/ifwl_themeprovider.h" |
23 | 28 |
24 // static | 29 // static |
25 IFWL_ComboBox* IFWL_ComboBox::Create( | 30 IFWL_ComboBox* IFWL_ComboBox::Create( |
26 const CFWL_WidgetImpProperties& properties) { | 31 const CFWL_WidgetImpProperties& properties) { |
27 IFWL_ComboBox* pComboBox = new IFWL_ComboBox; | 32 IFWL_ComboBox* pComboBox = new IFWL_ComboBox; |
28 CFWL_ComboBoxImp* pComboBoxImpl = new CFWL_ComboBoxImp(properties, nullptr); | 33 CFWL_ComboBoxImp* pComboBoxImpl = new CFWL_ComboBoxImp(properties, nullptr); |
29 pComboBox->SetImpl(pComboBoxImpl); | 34 pComboBox->SetImpl(pComboBoxImpl); |
30 pComboBoxImpl->SetInterface(pComboBox); | 35 pComboBoxImpl->SetInterface(pComboBox); |
31 return pComboBox; | 36 return pComboBox; |
32 } | 37 } |
(...skipping 1777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1810 m_pComboBox->ShowDropList(FALSE); | 1815 m_pComboBox->ShowDropList(FALSE); |
1811 } | 1816 } |
1812 void CFWL_ComboProxyImpDelegate::OnFocusChanged(CFWL_MsgKillFocus* pMsg, | 1817 void CFWL_ComboProxyImpDelegate::OnFocusChanged(CFWL_MsgKillFocus* pMsg, |
1813 FX_BOOL bSet) { | 1818 FX_BOOL bSet) { |
1814 if (!bSet) { | 1819 if (!bSet) { |
1815 if (pMsg->m_pSetFocus == NULL) { | 1820 if (pMsg->m_pSetFocus == NULL) { |
1816 m_pComboBox->ShowDropList(FALSE); | 1821 m_pComboBox->ShowDropList(FALSE); |
1817 } | 1822 } |
1818 } | 1823 } |
1819 } | 1824 } |
OLD | NEW |