| 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 #ifndef XFA_INCLUDE_FXFA_XFA_FFPAGEVIEW_H_ | 7 #ifndef XFA_FXFA_INCLUDE_XFA_FFPAGEVIEW_H_ |
| 8 #define XFA_INCLUDE_FXFA_XFA_FFPAGEVIEW_H_ | 8 #define XFA_FXFA_INCLUDE_XFA_FFPAGEVIEW_H_ |
| 9 | 9 |
| 10 #include "xfa/fxfa/parser/xfa_doclayout.h" | 10 #include "xfa/fxfa/parser/xfa_doclayout.h" |
| 11 | 11 |
| 12 class CXFA_FFWidget; | 12 class CXFA_FFWidget; |
| 13 class CXFA_FFDocView; | 13 class CXFA_FFDocView; |
| 14 class CXFA_FFPageView : public CXFA_ContainerLayoutItem { | 14 class CXFA_FFPageView : public CXFA_ContainerLayoutItem { |
| 15 public: | 15 public: |
| 16 CXFA_FFPageView(CXFA_FFDocView* pDocView, CXFA_Node* pPageArea); | 16 CXFA_FFPageView(CXFA_FFDocView* pDocView, CXFA_Node* pPageArea); |
| 17 ~CXFA_FFPageView() override; | 17 ~CXFA_FFPageView() override; |
| 18 | 18 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 FX_BOOL& bContentArea, | 103 FX_BOOL& bContentArea, |
| 104 FX_BOOL bMarsterPage = FALSE); | 104 FX_BOOL bMarsterPage = FALSE); |
| 105 | 105 |
| 106 CXFA_WidgetArray m_TabOrderWidgetArray; | 106 CXFA_WidgetArray m_TabOrderWidgetArray; |
| 107 CXFA_FFPageView* m_pPageView; | 107 CXFA_FFPageView* m_pPageView; |
| 108 uint32_t m_dwFilter; | 108 uint32_t m_dwFilter; |
| 109 int32_t m_iCurWidget; | 109 int32_t m_iCurWidget; |
| 110 FX_BOOL m_bIgnorerelevant; | 110 FX_BOOL m_bIgnorerelevant; |
| 111 }; | 111 }; |
| 112 | 112 |
| 113 #endif // XFA_INCLUDE_FXFA_XFA_FFPAGEVIEW_H_ | 113 #endif // XFA_FXFA_INCLUDE_XFA_FFPAGEVIEW_H_ |
| OLD | NEW |