| 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 "public/fpdf_ext.h" | 7 #include "public/fpdf_ext.h" |
| 8 | 8 |
| 9 #ifdef PDF_ENABLE_XFA |
| 9 #include "../include/fpdfxfa/fpdfxfa_doc.h" | 10 #include "../include/fpdfxfa/fpdfxfa_doc.h" |
| 11 #endif |
| 10 #include "core/include/fxcrt/fx_xml.h" | 12 #include "core/include/fxcrt/fx_xml.h" |
| 11 #include "fpdfsdk/include/fsdk_define.h" | 13 #include "fpdfsdk/include/fsdk_define.h" |
| 12 | 14 |
| 13 #define FPDFSDK_UNSUPPORT_CALL 100 | 15 #define FPDFSDK_UNSUPPORT_CALL 100 |
| 14 | 16 |
| 15 class CFSDK_UnsupportInfo_Adapter { | 17 class CFSDK_UnsupportInfo_Adapter { |
| 16 public: | 18 public: |
| 17 CFSDK_UnsupportInfo_Adapter(UNSUPPORT_INFO* unsp_info) { | 19 CFSDK_UnsupportInfo_Adapter(UNSUPPORT_INFO* unsp_info) { |
| 18 m_unsp_info = unsp_info; | 20 m_unsp_info = unsp_info; |
| 19 } | 21 } |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 } | 170 } |
| 169 } | 171 } |
| 170 } | 172 } |
| 171 } | 173 } |
| 172 | 174 |
| 173 // SharedForm | 175 // SharedForm |
| 174 CPDF_Metadata metaData(pDoc); | 176 CPDF_Metadata metaData(pDoc); |
| 175 const CXML_Element* pElement = metaData.GetRoot(); | 177 const CXML_Element* pElement = metaData.GetRoot(); |
| 176 if (pElement) | 178 if (pElement) |
| 177 CheckSharedForm(pElement, "workflowType"); | 179 CheckSharedForm(pElement, "workflowType"); |
| 180 #ifndef PDF_ENABLE_XFA |
| 181 |
| 182 // XFA Forms |
| 183 CPDF_InterForm* pInterForm = new CPDF_InterForm(pDoc, FALSE); |
| 184 if (pInterForm->HasXFAForm()) { |
| 185 FPDF_UnSupportError(FPDF_UNSP_DOC_XFAFORM); |
| 186 } |
| 187 delete pInterForm; |
| 188 #endif |
| 178 } | 189 } |
| 179 | 190 |
| 180 DLLEXPORT int FPDFDoc_GetPageMode(FPDF_DOCUMENT document) { | 191 DLLEXPORT int FPDFDoc_GetPageMode(FPDF_DOCUMENT document) { |
| 181 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); | 192 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); |
| 182 if (!pDoc) | 193 if (!pDoc) |
| 183 return PAGEMODE_UNKNOWN; | 194 return PAGEMODE_UNKNOWN; |
| 184 | 195 |
| 185 CPDF_Dictionary* pRoot = pDoc->GetRoot(); | 196 CPDF_Dictionary* pRoot = pDoc->GetRoot(); |
| 186 if (!pRoot) | 197 if (!pRoot) |
| 187 return PAGEMODE_UNKNOWN; | 198 return PAGEMODE_UNKNOWN; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 199 return PAGEMODE_USETHUMBS; | 210 return PAGEMODE_USETHUMBS; |
| 200 if (strPageMode.EqualNoCase("FullScreen")) | 211 if (strPageMode.EqualNoCase("FullScreen")) |
| 201 return PAGEMODE_FULLSCREEN; | 212 return PAGEMODE_FULLSCREEN; |
| 202 if (strPageMode.EqualNoCase("UseOC")) | 213 if (strPageMode.EqualNoCase("UseOC")) |
| 203 return PAGEMODE_USEOC; | 214 return PAGEMODE_USEOC; |
| 204 if (strPageMode.EqualNoCase("UseAttachments")) | 215 if (strPageMode.EqualNoCase("UseAttachments")) |
| 205 return PAGEMODE_USEATTACHMENTS; | 216 return PAGEMODE_USEATTACHMENTS; |
| 206 | 217 |
| 207 return PAGEMODE_UNKNOWN; | 218 return PAGEMODE_UNKNOWN; |
| 208 } | 219 } |
| OLD | NEW |