| 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_ffwidget.h" | 9 #include "xfa_ffwidget.h" |
| 10 #include "xfa_fffield.h" | 10 #include "xfa_fffield.h" |
| 11 #include "xfa_ffpageview.h" | 11 #include "xfa_ffpageview.h" |
| 12 #include "xfa_ffapp.h" | 12 #include "xfa_ffapp.h" |
| 13 #include "xfa_ffdoc.h" | 13 #include "xfa_ffdoc.h" |
| 14 #include "xfa_fwltheme.h" | 14 #include "xfa_fwltheme.h" |
| 15 #include "xfa_textlayout.h" | 15 #include "xfa_textlayout.h" |
| 16 #include "xfa_ffdocview.h" | 16 #include "xfa_ffdocview.h" |
| 17 CXFA_FFField::CXFA_FFField(CXFA_FFPageView* pPageView, CXFA_WidgetAcc* pDataAcc) | 17 CXFA_FFField::CXFA_FFField(CXFA_FFPageView* pPageView, CXFA_WidgetAcc* pDataAcc) |
| 18 : CXFA_FFWidget(pPageView, pDataAcc), m_pNormalWidget(NULL) { | 18 : CXFA_FFWidget(pPageView, pDataAcc), m_pNormalWidget(NULL) { |
| (...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 841 break; | 841 break; |
| 842 } | 842 } |
| 843 default: {} | 843 default: {} |
| 844 } | 844 } |
| 845 return FWL_ERR_Succeeded; | 845 return FWL_ERR_Succeeded; |
| 846 } | 846 } |
| 847 FWL_ERR CXFA_FFField::OnDrawWidget(CFX_Graphics* pGraphics, | 847 FWL_ERR CXFA_FFField::OnDrawWidget(CFX_Graphics* pGraphics, |
| 848 const CFX_Matrix* pMatrix) { | 848 const CFX_Matrix* pMatrix) { |
| 849 return FWL_ERR_Succeeded; | 849 return FWL_ERR_Succeeded; |
| 850 } | 850 } |
| OLD | NEW |