| 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> |
| 11 #include <utility> | 11 #include <utility> |
| 12 | 12 |
| 13 #include "core/fpdfapi/edit/cpdf_pagecontentgenerator.h" | 13 #include "core/fpdfapi/edit/cpdf_pagecontentgenerator.h" |
| 14 #include "core/fpdfapi/fpdf_page/cpdf_form.h" | |
| 15 #include "core/fpdfapi/fpdf_page/cpdf_formobject.h" | |
| 16 #include "core/fpdfapi/fpdf_page/cpdf_imageobject.h" | |
| 17 #include "core/fpdfapi/fpdf_page/cpdf_page.h" | |
| 18 #include "core/fpdfapi/fpdf_page/cpdf_pageobject.h" | |
| 19 #include "core/fpdfapi/fpdf_page/cpdf_pathobject.h" | |
| 20 #include "core/fpdfapi/fpdf_page/cpdf_shadingobject.h" | |
| 21 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" | 14 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" |
| 22 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" | 15 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" |
| 23 #include "core/fpdfapi/fpdf_parser/cpdf_number.h" | 16 #include "core/fpdfapi/fpdf_parser/cpdf_number.h" |
| 24 #include "core/fpdfapi/fpdf_parser/cpdf_string.h" | 17 #include "core/fpdfapi/fpdf_parser/cpdf_string.h" |
| 18 #include "core/fpdfapi/page/cpdf_form.h" |
| 19 #include "core/fpdfapi/page/cpdf_formobject.h" |
| 20 #include "core/fpdfapi/page/cpdf_imageobject.h" |
| 21 #include "core/fpdfapi/page/cpdf_page.h" |
| 22 #include "core/fpdfapi/page/cpdf_pageobject.h" |
| 23 #include "core/fpdfapi/page/cpdf_pathobject.h" |
| 24 #include "core/fpdfapi/page/cpdf_shadingobject.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/fpdfxfa_app.h" | 32 #include "fpdfsdk/fpdfxfa/fpdfxfa_app.h" |
| 33 #include "fpdfsdk/fpdfxfa/fpdfxfa_doc.h" | 33 #include "fpdfsdk/fpdfxfa/fpdfxfa_doc.h" |
| 34 #include "fpdfsdk/fpdfxfa/fpdfxfa_page.h" | 34 #include "fpdfsdk/fpdfxfa/fpdfxfa_page.h" |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 | 310 |
| 311 DLLEXPORT void STDCALL FPDFPage_SetRotation(FPDF_PAGE page, int rotate) { | 311 DLLEXPORT void STDCALL FPDFPage_SetRotation(FPDF_PAGE page, int rotate) { |
| 312 CPDF_Page* pPage = CPDFPageFromFPDFPage(page); | 312 CPDF_Page* pPage = CPDFPageFromFPDFPage(page); |
| 313 if (!IsPageObject(pPage)) | 313 if (!IsPageObject(pPage)) |
| 314 return; | 314 return; |
| 315 | 315 |
| 316 CPDF_Dictionary* pDict = pPage->m_pFormDict; | 316 CPDF_Dictionary* pDict = pPage->m_pFormDict; |
| 317 rotate %= 4; | 317 rotate %= 4; |
| 318 pDict->SetFor("Rotate", new CPDF_Number(rotate * 90)); | 318 pDict->SetFor("Rotate", new CPDF_Number(rotate * 90)); |
| 319 } | 319 } |
| OLD | NEW |