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_SRC_FXFA_APP_XFA_FFDOCVIEW_H_ | 7 #ifndef XFA_FXFA_APP_XFA_FFDOCVIEW_H_ |
8 #define XFA_SRC_FXFA_APP_XFA_FFDOCVIEW_H_ | 8 #define XFA_FXFA_APP_XFA_FFDOCVIEW_H_ |
9 | 9 |
10 #include "xfa/src/fxfa/app/xfa_ffdoc.h" | 10 #include "xfa/fxfa/app/xfa_ffdoc.h" |
11 | 11 |
12 class CXFA_FFWidgetHandler; | 12 class CXFA_FFWidgetHandler; |
13 class CXFA_FFDoc; | 13 class CXFA_FFDoc; |
14 class CXFA_FFWidget; | 14 class CXFA_FFWidget; |
15 extern const XFA_ATTRIBUTEENUM gs_EventActivity[]; | 15 extern const XFA_ATTRIBUTEENUM gs_EventActivity[]; |
16 enum XFA_DOCVIEW_LAYOUTSTATUS { | 16 enum XFA_DOCVIEW_LAYOUTSTATUS { |
17 XFA_DOCVIEW_LAYOUTSTATUS_None, | 17 XFA_DOCVIEW_LAYOUTSTATUS_None, |
18 XFA_DOCVIEW_LAYOUTSTATUS_Start, | 18 XFA_DOCVIEW_LAYOUTSTATUS_Start, |
19 XFA_DOCVIEW_LAYOUTSTATUS_FormInitialize, | 19 XFA_DOCVIEW_LAYOUTSTATUS_FormInitialize, |
20 XFA_DOCVIEW_LAYOUTSTATUS_FormInitCalculate, | 20 XFA_DOCVIEW_LAYOUTSTATUS_FormInitCalculate, |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 virtual CXFA_WidgetAcc* GetCurrentWidgetAcc(); | 160 virtual CXFA_WidgetAcc* GetCurrentWidgetAcc(); |
161 virtual FX_BOOL SetCurrentWidgetAcc(CXFA_WidgetAcc* hWidget); | 161 virtual FX_BOOL SetCurrentWidgetAcc(CXFA_WidgetAcc* hWidget); |
162 virtual void SkipTree(); | 162 virtual void SkipTree(); |
163 | 163 |
164 protected: | 164 protected: |
165 CXFA_ContainerIterator m_ContentIterator; | 165 CXFA_ContainerIterator m_ContentIterator; |
166 CXFA_FFDocView* m_pDocView; | 166 CXFA_FFDocView* m_pDocView; |
167 CXFA_WidgetAcc* m_pCurWidgetAcc; | 167 CXFA_WidgetAcc* m_pCurWidgetAcc; |
168 }; | 168 }; |
169 | 169 |
170 #endif // XFA_SRC_FXFA_APP_XFA_FFDOCVIEW_H_ | 170 #endif // XFA_FXFA_APP_XFA_FFDOCVIEW_H_ |
OLD | NEW |