PoDoFo 1.0.0-dev
|
This class represents a PdfArray Use it for all arrays that are written to a PDF file. More...
#include <PdfArray.h>
Public Types | |
using | size_type = size_t |
using | value_type = PdfObject |
using | reference = value_type & |
using | const_reference = const value_type & |
using | iterator = PdfArrayList::iterator |
using | const_iterator = PdfArrayList::const_iterator |
using | reverse_iterator = PdfArrayList::reverse_iterator |
using | const_reverse_iterator = PdfArrayList::const_reverse_iterator |
Public Member Functions | |
PdfArray () | |
Create an empty array. | |
PdfArray (const PdfArray &rhs) | |
Deep copy an existing PdfArray. | |
PdfArray (PdfArray &&rhs) noexcept | |
PdfArray & | operator= (const PdfArray &rhs) |
assignment operator | |
PdfArray & | operator= (PdfArray &&rhs) noexcept |
unsigned | GetSize () const |
bool | IsEmpty () const |
void | Clear () |
Remove all elements from the array. | |
void | Write (OutputStream &stream, PdfWriteFlags writeMode, const PdfStatefulEncrypt *encrypt, charbuff &buffer) const override |
Write the complete datatype to a file. | |
template<typename T > | |
T | GetAtAs (unsigned idx) const |
template<typename T > | |
T | GetAtAsSafe (unsigned idx, const std::common_type_t< T > &defvalue={ }) const |
template<typename T > | |
bool | TryGetAtAs (unsigned idx, T &value) const |
const PdfObject * | FindAt (unsigned idx) const |
Get the object at the given index out of the array. | |
PdfObject * | FindAt (unsigned idx) |
const PdfObject & | MustFindAt (unsigned idx) const |
PdfObject & | MustFindAt (unsigned idx) |
template<typename T > | |
T | FindAtAs (unsigned idx, const std::common_type_t< T > &defvalue={ }) const |
template<typename T > | |
T | FindAtAsSafe (unsigned idx, const std::common_type_t< T > &defvalue={ }) const |
template<typename T > | |
bool | TryFindAtAs (unsigned idx, T &value) const |
void | RemoveAt (unsigned idx) |
PdfObject & | Add (const PdfObject &obj) |
PdfObject & | Add (PdfObject &&obj) |
void | AddIndirect (const PdfObject &obj) |
PdfObject & | AddIndirectSafe (const PdfObject &obj) |
PdfObject & | SetAt (unsigned idx, const PdfObject &obj) |
PdfObject & | SetAt (unsigned idx, PdfObject &&obj) |
void | SetAtIndirect (unsigned idx, const PdfObject *obj) |
PdfObject & | SetAtIndirectSafe (unsigned idx, const PdfObject &obj) |
PdfArrayIndirectIterable | GetIndirectIterator () |
PdfArrayConstIndirectIterable | GetIndirectIterator () const |
void | Resize (unsigned count, const PdfObject &val=PdfObject()) |
Resize the internal vector. | |
void | Reserve (unsigned n) |
void | SwapAt (unsigned atIndex, unsigned toIndex) |
void | MoveTo (unsigned atIndex, unsigned toIndex) |
size_t | size () const |
PdfObject & | operator[] (size_type idx) |
const PdfObject & | operator[] (size_type idx) const |
iterator | begin () |
Returns a read/write iterator that points to the first element in the array. | |
const_iterator | begin () const |
Returns a read-only (constant) iterator that points to the first element in the array. | |
iterator | end () |
Returns a read/write iterator that points one past the last element in the array. | |
const_iterator | end () const |
Returns a read-only (constant) iterator that points one past the last element in the array. | |
reverse_iterator | rbegin () |
Returns a read/write reverse iterator that points to the last element in the array. | |
const_reverse_iterator | rbegin () const |
Returns a read-only (constant) reverse iterator that points to the last element in the array. | |
reverse_iterator | rend () |
Returns a read/write reverse iterator that points to one before the first element in the array. | |
const_reverse_iterator | rend () const |
Returns a read-only (constant) reverse iterator that points to one before the first element in the array. | |
void | resize (size_t size) |
void | reserve (size_t size) |
iterator | insert (const iterator &pos, const PdfObject &obj) |
iterator | insert (const iterator &pos, PdfObject &&obj) |
template<typename InputIterator > | |
void | insert (const iterator &pos, const InputIterator &first, const InputIterator &last) |
void | erase (const iterator &pos) |
void | erase (const iterator &first, const iterator &last) |
reference | front () |
const_reference | front () const |
reference | back () |
const_reference | back () const |
bool | operator== (const PdfArray &rhs) const |
bool | operator!= (const PdfArray &rhs) const |
![]() | |
const PdfObject * | GetOwner () const |
PdfObject * | GetOwner () |
![]() | |
std::string | ToString (PdfWriteFlags flags=PdfWriteFlags::None) const |
Converts the current object into a string representation which can be written directly to a PDF file on disc. | |
void | ToString (std::string &str, PdfWriteFlags flags=PdfWriteFlags::None) const |
Static Public Member Functions | |
template<typename TReal , typename = std::enable_if_t<std::is_floating_point_v<TReal>>> | |
static PdfArray | FromReals (cspan< TReal > reals) |
template<typename TInt , typename = std::enable_if_t<std::is_integral_v<TInt>>> | |
static PdfArray | FromNumbers (cspan< TInt > numbers) |
static PdfArray | FromBools (cspan< bool > bools) |
Protected Member Functions | |
void | resetDirty () override |
void | setChildrenParent () override |
![]() | |
PdfObject * | GetIndirectObject (const PdfReference &reference) const |
PdfDocument * | GetObjectDocument () |
void | SetDirty () |
bool | IsIndirectReferenceAllowed (const PdfObject &obj) |
void | AssertMutable () const |
Friends | |
class | PdfObject |
class | PdfTokenizer |
This class represents a PdfArray Use it for all arrays that are written to a PDF file.
A PdfArray can hold any PdfVariant.
Deep copy an existing PdfArray.
rhs | the array to copy |
PdfObject & PdfArray::back | ( | ) |
PdfArray::iterator PdfArray::begin | ( | ) |
Returns a read/write iterator that points to the first element in the array.
Iteration is done in ordinary element order.
PdfArray::const_iterator PdfArray::begin | ( | ) | const |
Returns a read-only (constant) iterator that points to the first element in the array.
Iteration is done in ordinary element order.
PdfArray::iterator PdfArray::end | ( | ) |
Returns a read/write iterator that points one past the last element in the array.
Iteration is done in ordinary element order.
PdfArray::const_iterator PdfArray::end | ( | ) | const |
Returns a read-only (constant) iterator that points one past the last element in the array.
Iteration is done in ordinary element order.
Get the object at the given index out of the array.
Lookup in the indirect objects as well, if the shallow object was a reference. The returned value is a pointer to the internal object in the dictionary so it MUST not be deleted.
idx |
PdfObject & PdfArray::front | ( | ) |
unsigned PdfArray::GetSize | ( | ) | const |
bool PdfArray::IsEmpty | ( | ) | const |
assignment operator
rhs | the array to assign |
PdfArray::reverse_iterator PdfArray::rbegin | ( | ) |
Returns a read/write reverse iterator that points to the last element in the array.
Iteration is done in reverse element order.
PdfArray::const_reverse_iterator PdfArray::rbegin | ( | ) | const |
Returns a read-only (constant) reverse iterator that points to the last element in the array.
Iteration is done in reverse element order.
PdfArray::reverse_iterator PdfArray::rend | ( | ) |
Returns a read/write reverse iterator that points to one before the first element in the array.
Iteration is done in reverse element order.
PdfArray::const_reverse_iterator PdfArray::rend | ( | ) | const |
Returns a read-only (constant) reverse iterator that points to one before the first element in the array.
Iteration is done in reverse element order.
|
overrideprotectedvirtual |
Implements PoDoFo::PdfDataContainer.
Resize the internal vector.
count | new size |
value | reference value |
|
overrideprotectedvirtual |
Implements PoDoFo::PdfDataContainer.
size_t PdfArray::size | ( | ) | const |
|
overridevirtual |
Write the complete datatype to a file.
device | write the object to this device |
writeMode | additional options for writing this object |
encrypt | an encryption object which is used to encrypt this object or nullptr to not encrypt this object |
Implements PoDoFo::PdfDataContainer.