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/fxfa/app/xfa_ffchoicelist.h" | 7 #include "xfa/fxfa/app/xfa_ffchoicelist.h" |
8 | 8 |
| 9 #include "xfa/fwl/core/cfwl_app.h" |
9 #include "xfa/fwl/core/cfwl_combobox.h" | 10 #include "xfa/fwl/core/cfwl_combobox.h" |
10 #include "xfa/fwl/core/cfwl_evtselectchanged.h" | 11 #include "xfa/fwl/core/cfwl_evtselectchanged.h" |
11 #include "xfa/fwl/core/cfwl_listbox.h" | 12 #include "xfa/fwl/core/cfwl_listbox.h" |
12 #include "xfa/fwl/core/cfwl_notedriver.h" | 13 #include "xfa/fwl/core/cfwl_notedriver.h" |
13 #include "xfa/fwl/core/ifwl_app.h" | |
14 #include "xfa/fwl/core/ifwl_combobox.h" | 14 #include "xfa/fwl/core/ifwl_combobox.h" |
15 #include "xfa/fwl/core/ifwl_edit.h" | 15 #include "xfa/fwl/core/ifwl_edit.h" |
16 #include "xfa/fwl/core/ifwl_listbox.h" | 16 #include "xfa/fwl/core/ifwl_listbox.h" |
17 #include "xfa/fxfa/app/xfa_fffield.h" | 17 #include "xfa/fxfa/app/xfa_fffield.h" |
18 #include "xfa/fxfa/app/xfa_fwladapter.h" | 18 #include "xfa/fxfa/app/xfa_fwladapter.h" |
19 #include "xfa/fxfa/cxfa_eventparam.h" | 19 #include "xfa/fxfa/cxfa_eventparam.h" |
20 #include "xfa/fxfa/xfa_ffdoc.h" | 20 #include "xfa/fxfa/xfa_ffdoc.h" |
21 #include "xfa/fxfa/xfa_ffdocview.h" | 21 #include "xfa/fxfa/xfa_ffdocview.h" |
22 #include "xfa/fxfa/xfa_ffpageview.h" | 22 #include "xfa/fxfa/xfa_ffpageview.h" |
23 #include "xfa/fxfa/xfa_ffwidget.h" | 23 #include "xfa/fxfa/xfa_ffwidget.h" |
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
534 default: | 534 default: |
535 break; | 535 break; |
536 } | 536 } |
537 m_pOldDelegate->OnProcessEvent(pEvent); | 537 m_pOldDelegate->OnProcessEvent(pEvent); |
538 } | 538 } |
539 | 539 |
540 void CXFA_FFComboBox::OnDrawWidget(CFX_Graphics* pGraphics, | 540 void CXFA_FFComboBox::OnDrawWidget(CFX_Graphics* pGraphics, |
541 const CFX_Matrix* pMatrix) { | 541 const CFX_Matrix* pMatrix) { |
542 m_pOldDelegate->OnDrawWidget(pGraphics, pMatrix); | 542 m_pOldDelegate->OnDrawWidget(pGraphics, pMatrix); |
543 } | 543 } |
OLD | NEW |