| 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 "../../../foxitlib.h" | 7 #include "xfa/src/foxitlib.h" |
| 8 #include "../common/xfa_common.h" | 8 #include "xfa/src/fxfa/src/common/xfa_common.h" |
| 9 #include "xfa_fwladapter.h" | 9 #include "xfa_fwladapter.h" |
| 10 #include "xfa_ffwidget.h" | 10 #include "xfa_ffwidget.h" |
| 11 #include "xfa_fffield.h" | 11 #include "xfa_fffield.h" |
| 12 #include "xfa_ffpageview.h" | 12 #include "xfa_ffpageview.h" |
| 13 #include "xfa_ffdocview.h" | 13 #include "xfa_ffdocview.h" |
| 14 #include "xfa_ffchoicelist.h" | 14 #include "xfa_ffchoicelist.h" |
| 15 #include "xfa_ffdoc.h" | 15 #include "xfa_ffdoc.h" |
| 16 CXFA_FFListBox::CXFA_FFListBox(CXFA_FFPageView* pPageView, | 16 CXFA_FFListBox::CXFA_FFListBox(CXFA_FFPageView* pPageView, |
| 17 CXFA_WidgetAcc* pDataAcc) | 17 CXFA_WidgetAcc* pDataAcc) |
| 18 : CXFA_FFField(pPageView, pDataAcc), m_pOldDelegate(NULL) {} | 18 : CXFA_FFField(pPageView, pDataAcc), m_pOldDelegate(NULL) {} |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 break; | 531 break; |
| 532 } | 532 } |
| 533 default: {} | 533 default: {} |
| 534 } | 534 } |
| 535 return m_pOldDelegate->OnProcessEvent(pEvent); | 535 return m_pOldDelegate->OnProcessEvent(pEvent); |
| 536 } | 536 } |
| 537 FWL_ERR CXFA_FFComboBox::OnDrawWidget(CFX_Graphics* pGraphics, | 537 FWL_ERR CXFA_FFComboBox::OnDrawWidget(CFX_Graphics* pGraphics, |
| 538 const CFX_Matrix* pMatrix) { | 538 const CFX_Matrix* pMatrix) { |
| 539 return m_pOldDelegate->OnDrawWidget(pGraphics, pMatrix); | 539 return m_pOldDelegate->OnDrawWidget(pGraphics, pMatrix); |
| 540 } | 540 } |
| OLD | NEW |