| 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_FXFA_INCLUDE_XFA_FFPAGEVIEW_H_ | 7 #ifndef XFA_FXFA_INCLUDE_XFA_FFPAGEVIEW_H_ |
| 8 #define XFA_FXFA_INCLUDE_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/cxfa_containerlayoutitem.h" |
| 11 #include "xfa/fxfa/parser/cxfa_contentlayoutitem.h" |
| 12 #include "xfa/fxfa/parser/cxfa_traversestrategy_layoutitem.h" |
| 11 | 13 |
| 12 class CXFA_FFWidget; | 14 class CXFA_FFWidget; |
| 13 class CXFA_FFDocView; | 15 class CXFA_FFDocView; |
| 14 | 16 |
| 15 class CXFA_FFPageView : public CXFA_ContainerLayoutItem { | 17 class CXFA_FFPageView : public CXFA_ContainerLayoutItem { |
| 16 public: | 18 public: |
| 17 CXFA_FFPageView(CXFA_FFDocView* pDocView, CXFA_Node* pPageArea); | 19 CXFA_FFPageView(CXFA_FFDocView* pDocView, CXFA_Node* pPageArea); |
| 18 ~CXFA_FFPageView() override; | 20 ~CXFA_FFPageView() override; |
| 19 | 21 |
| 20 CXFA_FFDocView* GetDocView() const; | 22 CXFA_FFDocView* GetDocView() const; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 FX_BOOL bMarsterPage = FALSE); | 99 FX_BOOL bMarsterPage = FALSE); |
| 98 | 100 |
| 99 CXFA_WidgetArray m_TabOrderWidgetArray; | 101 CXFA_WidgetArray m_TabOrderWidgetArray; |
| 100 CXFA_FFPageView* m_pPageView; | 102 CXFA_FFPageView* m_pPageView; |
| 101 uint32_t m_dwFilter; | 103 uint32_t m_dwFilter; |
| 102 int32_t m_iCurWidget; | 104 int32_t m_iCurWidget; |
| 103 FX_BOOL m_bIgnorerelevant; | 105 FX_BOOL m_bIgnorerelevant; |
| 104 }; | 106 }; |
| 105 | 107 |
| 106 #endif // XFA_FXFA_INCLUDE_XFA_FFPAGEVIEW_H_ | 108 #endif // XFA_FXFA_INCLUDE_XFA_FFPAGEVIEW_H_ |
| OLD | NEW |