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_edit.h" | 7 #include "public/fpdf_edit.h" |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <memory> | 10 #include <memory> |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "core/fpdfapi/parser/cpdf_document.h" | 22 #include "core/fpdfapi/parser/cpdf_document.h" |
23 #include "core/fpdfapi/parser/cpdf_number.h" | 23 #include "core/fpdfapi/parser/cpdf_number.h" |
24 #include "core/fpdfapi/parser/cpdf_string.h" | 24 #include "core/fpdfapi/parser/cpdf_string.h" |
25 #include "core/fpdfdoc/cpdf_annot.h" | 25 #include "core/fpdfdoc/cpdf_annot.h" |
26 #include "core/fpdfdoc/cpdf_annotlist.h" | 26 #include "core/fpdfdoc/cpdf_annotlist.h" |
27 #include "fpdfsdk/fsdk_define.h" | 27 #include "fpdfsdk/fsdk_define.h" |
28 #include "public/fpdf_formfill.h" | 28 #include "public/fpdf_formfill.h" |
29 #include "third_party/base/stl_util.h" | 29 #include "third_party/base/stl_util.h" |
30 | 30 |
31 #ifdef PDF_ENABLE_XFA | 31 #ifdef PDF_ENABLE_XFA |
32 #include "fpdfsdk/fpdfxfa/cpdfxfa_app.h" | |
33 #include "fpdfsdk/fpdfxfa/cpdfxfa_document.h" | 32 #include "fpdfsdk/fpdfxfa/cpdfxfa_document.h" |
34 #include "fpdfsdk/fpdfxfa/cpdfxfa_page.h" | 33 #include "fpdfsdk/fpdfxfa/cpdfxfa_page.h" |
35 #endif // PDF_ENABLE_XFA | 34 #endif // PDF_ENABLE_XFA |
36 | 35 |
37 #if _FX_OS_ == _FX_ANDROID_ | 36 #if _FX_OS_ == _FX_ANDROID_ |
38 #include "time.h" | 37 #include "time.h" |
39 #else | 38 #else |
40 #include <ctime> | 39 #include <ctime> |
41 #endif | 40 #endif |
42 | 41 |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 | 309 |
311 DLLEXPORT void STDCALL FPDFPage_SetRotation(FPDF_PAGE page, int rotate) { | 310 DLLEXPORT void STDCALL FPDFPage_SetRotation(FPDF_PAGE page, int rotate) { |
312 CPDF_Page* pPage = CPDFPageFromFPDFPage(page); | 311 CPDF_Page* pPage = CPDFPageFromFPDFPage(page); |
313 if (!IsPageObject(pPage)) | 312 if (!IsPageObject(pPage)) |
314 return; | 313 return; |
315 | 314 |
316 CPDF_Dictionary* pDict = pPage->m_pFormDict; | 315 CPDF_Dictionary* pDict = pPage->m_pFormDict; |
317 rotate %= 4; | 316 rotate %= 4; |
318 pDict->SetFor("Rotate", new CPDF_Number(rotate * 90)); | 317 pDict->SetFor("Rotate", new CPDF_Number(rotate * 90)); |
319 } | 318 } |
OLD | NEW |