mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 21:14:33 -04:00
OS X: Update bundled pdfium to r3729
This commit is contained in:
@ -5,7 +5,9 @@
|
||||
#ifndef PUBLIC_CPP_FPDF_DELETERS_H_
|
||||
#define PUBLIC_CPP_FPDF_DELETERS_H_
|
||||
|
||||
#include "public/fpdf_annot.h"
|
||||
#include "public/fpdf_dataavail.h"
|
||||
#include "public/fpdf_edit.h"
|
||||
#include "public/fpdf_formfill.h"
|
||||
#include "public/fpdf_structtree.h"
|
||||
#include "public/fpdf_text.h"
|
||||
@ -13,6 +15,10 @@
|
||||
|
||||
// Custom deleters for using FPDF_* types with std::unique_ptr<>.
|
||||
|
||||
struct FPDFAnnotationDeleter {
|
||||
inline void operator()(FPDF_ANNOTATION annot) { FPDFPage_CloseAnnot(annot); }
|
||||
};
|
||||
|
||||
struct FPDFAvailDeleter {
|
||||
inline void operator()(FPDF_AVAIL avail) { FPDFAvail_Destroy(avail); }
|
||||
};
|
||||
@ -25,22 +31,42 @@ struct FPDFDocumentDeleter {
|
||||
inline void operator()(FPDF_DOCUMENT doc) { FPDF_CloseDocument(doc); }
|
||||
};
|
||||
|
||||
struct FPDFFontDeleter {
|
||||
inline void operator()(FPDF_FONT font) { FPDFFont_Close(font); }
|
||||
};
|
||||
|
||||
struct FPDFFormHandleDeleter {
|
||||
inline void operator()(FPDF_FORMHANDLE form) {
|
||||
FPDFDOC_ExitFormFillEnvironment(form);
|
||||
}
|
||||
};
|
||||
|
||||
struct FPDFTextPageDeleter {
|
||||
inline void operator()(FPDF_TEXTPAGE text) { FPDFText_ClosePage(text); }
|
||||
};
|
||||
|
||||
struct FPDFPageDeleter {
|
||||
inline void operator()(FPDF_PAGE page) { FPDF_ClosePage(page); }
|
||||
};
|
||||
|
||||
struct FPDFPageLinkDeleter {
|
||||
inline void operator()(FPDF_PAGELINK pagelink) {
|
||||
FPDFLink_CloseWebLinks(pagelink);
|
||||
}
|
||||
};
|
||||
|
||||
struct FPDFPageObjectDeleter {
|
||||
inline void operator()(FPDF_PAGEOBJECT object) {
|
||||
FPDFPageObj_Destroy(object);
|
||||
}
|
||||
};
|
||||
|
||||
struct FPDFStructTreeDeleter {
|
||||
inline void operator()(FPDF_STRUCTTREE tree) { FPDF_StructTree_Close(tree); }
|
||||
};
|
||||
|
||||
struct FPDFTextFindDeleter {
|
||||
inline void operator()(FPDF_SCHHANDLE handle) { FPDFText_FindClose(handle); }
|
||||
};
|
||||
|
||||
struct FPDFTextPageDeleter {
|
||||
inline void operator()(FPDF_TEXTPAGE text) { FPDFText_ClosePage(text); }
|
||||
};
|
||||
|
||||
#endif // PUBLIC_CPP_FPDF_DELETERS_H_
|
||||
|
66
dependencies/pdfium/macx/include/cpp/fpdf_scopers.h
vendored
Normal file
66
dependencies/pdfium/macx/include/cpp/fpdf_scopers.h
vendored
Normal file
@ -0,0 +1,66 @@
|
||||
// Copyright 2018 PDFium Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#ifndef PUBLIC_CPP_FPDF_SCOPERS_H_
|
||||
#define PUBLIC_CPP_FPDF_SCOPERS_H_
|
||||
|
||||
#include <memory>
|
||||
#include <type_traits>
|
||||
|
||||
#include "public/cpp/fpdf_deleters.h"
|
||||
#include "public/fpdf_annot.h"
|
||||
#include "public/fpdf_dataavail.h"
|
||||
#include "public/fpdf_edit.h"
|
||||
#include "public/fpdf_formfill.h"
|
||||
#include "public/fpdf_structtree.h"
|
||||
#include "public/fpdf_text.h"
|
||||
#include "public/fpdfview.h"
|
||||
|
||||
// Versions of FPDF types that clean up the object at scope exit.
|
||||
|
||||
using ScopedFPDFAnnotation =
|
||||
std::unique_ptr<std::remove_pointer<FPDF_ANNOTATION>::type,
|
||||
FPDFAnnotationDeleter>;
|
||||
|
||||
using ScopedFPDFAvail =
|
||||
std::unique_ptr<std::remove_pointer<FPDF_AVAIL>::type, FPDFAvailDeleter>;
|
||||
|
||||
using ScopedFPDFBitmap =
|
||||
std::unique_ptr<std::remove_pointer<FPDF_BITMAP>::type, FPDFBitmapDeleter>;
|
||||
|
||||
using ScopedFPDFDocument =
|
||||
std::unique_ptr<std::remove_pointer<FPDF_DOCUMENT>::type,
|
||||
FPDFDocumentDeleter>;
|
||||
|
||||
using ScopedFPDFFont =
|
||||
std::unique_ptr<std::remove_pointer<FPDF_FONT>::type, FPDFFontDeleter>;
|
||||
|
||||
using ScopedFPDFFormHandle =
|
||||
std::unique_ptr<std::remove_pointer<FPDF_FORMHANDLE>::type,
|
||||
FPDFFormHandleDeleter>;
|
||||
|
||||
using ScopedFPDFPage =
|
||||
std::unique_ptr<std::remove_pointer<FPDF_PAGE>::type, FPDFPageDeleter>;
|
||||
|
||||
using ScopedFPDFPageLink =
|
||||
std::unique_ptr<std::remove_pointer<FPDF_PAGELINK>::type,
|
||||
FPDFPageLinkDeleter>;
|
||||
|
||||
using ScopedFPDFPageObject =
|
||||
std::unique_ptr<std::remove_pointer<FPDF_PAGEOBJECT>::type,
|
||||
FPDFPageObjectDeleter>;
|
||||
|
||||
using ScopedFPDFStructTree =
|
||||
std::unique_ptr<std::remove_pointer<FPDF_STRUCTTREE>::type,
|
||||
FPDFStructTreeDeleter>;
|
||||
|
||||
using ScopedFPDFTextFind =
|
||||
std::unique_ptr<std::remove_pointer<FPDF_SCHHANDLE>::type,
|
||||
FPDFTextFindDeleter>;
|
||||
|
||||
using ScopedFPDFTextPage =
|
||||
std::unique_ptr<std::remove_pointer<FPDF_TEXTPAGE>::type,
|
||||
FPDFTextPageDeleter>;
|
||||
|
||||
#endif // PUBLIC_CPP_FPDF_SCOPERS_H_
|
Reference in New Issue
Block a user