Files
poco/PDF/include/Poco/PDF/Declarations.h
Matej Kenda 7a23a039f9 Reorganise external libs to separate subdirectory (#4996)
* chore(PCRE): properly detect library type on newer macOS

* chore(ZLIB): move source files to own zlib directory and update CMake files.

* chore(PCRE): move source files to own pcre2 directory and update CMake files.

* chore(UTF8PROC): move source files to own utf8proc directory and update CMake files.

* chore(ZLIB): remove header files

* chore(PDJSON): move source files to own pdjson directory and update CMake files.

* chore(SQLite3): move source files to own sqlite3 directory and update CMake files.

* chore(UNBUNDLED): Correct includes.

* chore(expat): move source files to own expat directory and update CMake files.

* chore(wepoll): move source files to own wepoll directory and update CMake files.

* chore(7zip): move source files to own 7zip directory and update CMake files.

* chore(CMake): fix compile and link flags for dependent static libraries

* chore(CMake): set PCRE2_STATIC when building PCRE2.

* chore(SQLite3): Set SQLITE_THREADSAFE for unbundled build, add warnings.

* chore(CMake): Modifications to build and link properly static target libraries (using OBJECT library type and link using BUILD_LOCAL_INTERFACE)

* chore(CMake): fix order of includes in main CMakeLists.txt.

* chore(CI): Build mysql tests with cmake.

* chore(CI): Build mongodb, redis, sqlite no parser tests with cmake.

* chore(CI): Build odbc tests with cmake.

* chore(CI): Build more ations with cmake, other fixes.

* chore(CI): Fixes for macOS

* chore(CMake): extract hpdf and png files to own directories in dependencies

* fix(CMake): include dependencies after all module dependencies are resolved.

* fix(CMake): Improve dependency handling of dependencies to compile them only when necessary.

* fix(CMake): PDF: move t4.h to proper directory, modify include.

* fix(CMake): Fixes to link properly on all platforms.

* fix(CMAKE): Wrong ENABLE for SQLITE

* enh(PDF): Remove dependencies on hpdf headers from Poco::PDF interface and make usage of hpdf only internal.

* enh(CI): Convert more jobs to use cmake.

* enh(CI): Convert macOS sanitizer jobs to use cmake.

* enh(mkrelease): Copy dependencies when creating release package.

* eng(CMake): Add missing POCO_SO option to enable/disable small object optimization.

* enh(CI): Run linux sanitizer with cmake, various fixes and improvements.

* fix(CMake): bundled build: ZLIB::ZLIB is already linked with Foundation, no need to link again to Poco::Zip

* fix(CI): vptr undefined sanitizer causes foundation tests to fail when linking, disable it

* chore(tests): Minor code improvements.

* fix(AsyncNotificationCenter): fix a data race with member _listsEmpty by making it atomic.

* eng(CI): Add a few more time sensitive tests to cppignore.lnx

* chore(Thread): Code updates.

* eng(CI): Add a few more time sensitive tests to cppignore.lnx

* fix(AsyncNotificationCenter): must join threads to avoid data race in dtor.

* chore(CI): Pass TSAN_OPTIONS to jobs where necessary

* chore(CI): run rests without sudo, compile with parallelism

* chore(CI): Use POCO_MINIMAL_BUILD to simplify CMake configure lines.

* chore(CI): Add 32-bit Windows VS build

* chore(CMake): Printout cmake generator platform.

* chore(CMake): linux-gcc-make-armv7l -> linux-gcc-cmake-armv7l

* chore(ci): windows-2025-msvc-cmake-32bit -> windows-2025-msvc-cmake-Win32

* chore(CI): Convert all remaining jobs to CMake.

* chore(make): Prevent building with make.

* chore(CodeQL): exclude all external code from CodeQL checks.

* chore(macOS): Set min support version to 13.3 to properly support C++20 standard.
2025-09-11 17:11:29 +02:00

133 lines
3.1 KiB
C++

//
// Page.h
//
// Library: PDF
// Package: PDFCore
// Module: Page
//
// Definition of the Page class.
//
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef PDF_Declarations_INCLUDED
#define PDF_Declarations_INCLUDED
#include <vector>
// HPDF forward declatations to avoid including hpdf.h in header files
struct _HPDF_TransMatrix;
using HPDF_TransMatrix =_HPDF_TransMatrix;
struct _HPDF_Rect;
using HPDF_Rect =_HPDF_Rect;
struct _HPDF_Point;
using HPDF_Point =_HPDF_Point;
//enum _HPDF_LineJoin;
//using HPDF_LineJoin =_HPDF_LineJoin;
struct _HPDF_DashMode;
using HPDF_DashMode =_HPDF_DashMode;
struct _HPDF_RGBColor;
using HPDF_RGBColor =_HPDF_RGBColor;
struct _HPDF_CMYKColor;
using HPDF_CMYKColor =_HPDF_CMYKColor;
struct _HPDF_TextWidth;
using HPDF_TextWidth = _HPDF_TextWidth;
struct _HPDF_Doc_Rec;
using HPDF_Doc_Rec = _HPDF_Doc_Rec;
using HPDF_Doc = _HPDF_Doc_Rec*;
using HPDF_BYTE = unsigned char;
using HPDF_UINT16 = unsigned short;
using HPDF_UINT32 = unsigned int;
using HPDF_STATUS = unsigned long;
struct _HPDF_Dict_Rec;
using HPDF_Dict = _HPDF_Dict_Rec*;
struct _HPDF_Array_Rec;
using HPDF_Array = _HPDF_Array_Rec*;
using HPDF_EmbeddedFile = HPDF_Dict;
using HPDF_NameDict = HPDF_Dict;
using HPDF_NameTree = HPDF_Dict;
using HPDF_Pages = HPDF_Dict;
using HPDF_Page = HPDF_Dict;
using HPDF_Annotation = HPDF_Dict;
using HPDF_3DMeasure = HPDF_Dict;
using HPDF_ExData = HPDF_Dict;
using HPDF_XObject = HPDF_Dict;
using HPDF_Image = HPDF_Dict;
using HPDF_Outline = HPDF_Dict;
using HPDF_EncryptDict = HPDF_Dict;
using HPDF_Action = HPDF_Dict;
using HPDF_ExtGState = HPDF_Dict;
using HPDF_Destination = HPDF_Array;
using HPDF_U3D = HPDF_Dict;
using HPDF_OutputIntent = HPDF_Dict;
using HPDF_JavaScript = HPDF_Dict;
using HPDF_Font = HPDF_Dict;
struct _HPDF_Encoder_Rec;
using HPDF_Encoder_Rec = _HPDF_Encoder_Rec;
using HPDF_Encoder = HPDF_Encoder_Rec*;
namespace Poco::PDF {
using TransMatrix = HPDF_TransMatrix;
using Rectangle = HPDF_Rect;
using Point = HPDF_Point;
using DashMode = HPDF_DashMode;
using RGBColor = HPDF_RGBColor;
using CMYKColor = HPDF_CMYKColor;
using PatternVec = std::vector<HPDF_UINT16>;
using TextWidth = HPDF_TextWidth;
// Note: constants must match the ones in hpdf_consts.h
static constexpr int HPDF_ENABLE_READ = 0;
static constexpr int HPDF_ENABLE_PRINT = 4;
static constexpr int HPDF_ENABLE_EDIT_ALL = 8;
static constexpr int HPDF_ENABLE_COPY = 16;
static constexpr int HPDF_ENABLE_EDIT = 32;
// Note: constants must match the ones in hpdf_consts.h
static constexpr int HPDF_COMP_NONE = 0x00;
static constexpr int HPDF_COMP_TEXT = 0x01;
static constexpr int HPDF_COMP_IMAGE = 0x02;
static constexpr int HPDF_COMP_METADATA = 0x04;
static constexpr int HPDF_COMP_ALL = 0x0F;
// Note: values must match the ones in hpdf_types.h
enum LineCap {
HPDF_BUTT_END = 0,
HPDF_ROUND_END,
HPDF_PROJECTING_SCUARE_END,
HPDF_LINECAP_EOF
};
// Note: values must match the ones in hpdf_types.h
enum LineJoin {
HPDF_MITER_JOIN = 0,
HPDF_ROUND_JOIN,
HPDF_BEVEL_JOIN,
HPDF_LINEJOIN_EOF
};
}
#endif // PDF_Declarations_INCLUDED