Public Member Functions | List of all members
HPS::Publish::ImageKit Class Reference

#include <sprk_publish.h>

Inheritance diagram for HPS::Publish::ImageKit:
HPS::Sprocket HPS::Object

Public Member Functions

 ImageKit ()
 
 ImageKit (ImageKit const &in_kit)
 
 ImageKit (ImageKit &&in_kit)
 
HPS::Type ObjectType () const
 
void Set (ImageKit const &in_kit)
 
void Show (ImageKit &out_kit) const
 
ImageKitoperator= (ImageKit const &in_kit)
 
ImageKitoperator= (ImageKit &&in_kit)
 
bool Empty () const
 
bool Equals (ImageKit const &in_kit) const
 
bool operator== (ImageKit const &in_kit) const
 
bool operator!= (ImageKit const &in_kit) const
 
ImageKitSetFile (char const *in_filename)
 
ImageKitSetSize (int in_width, int in_height)
 
ImageKitSetFormat (Image::Format in_format)
 
ImageKitUnsetFile ()
 
ImageKitUnsetSize ()
 
ImageKitUnsetFormat ()
 
ImageKitUnsetEverything ()
 
bool ShowFile (UTF8 &out_filename) const
 
bool ShowSize (int &out_width, int &out_height) const
 
bool ShowFormat (Image::Format &out_format) const
 
- Public Member Functions inherited from HPS::Sprocket
 Sprocket (HPS::Sprocket const &in_that)=default
 
 Sprocket (Sprocket &&in_that)
 
- Public Member Functions inherited from HPS::Object
 Object (Object const &that)
 
Objectoperator= (Object const &other_object)
 
 Object (Object &&in_that)
 
Objectoperator= (Object &&in_that)
 
HPS::Type Type () const
 
virtual void Reset ()
 
bool HasType (HPS::Type in_mask) const
 
intptr_t GetClassID () const
 
intptr_t GetInstanceID () const
 

Additional Inherited Members

- Public Types inherited from HPS::Sprocket
enum  UpdateType { Synchronous, Asynchronous }
 
- Static Public Member Functions inherited from HPS::Object
template<typename T >
static intptr_t ClassID ()
 

Detailed Description

The ImageKit class is a user space object. It acts as the container for all data that can be used to specify an image for a Publish PDF.

Constructor & Destructor Documentation

HPS::Publish::ImageKit::ImageKit ( )

The default constructor creates an empty ImageKit object.

HPS::Publish::ImageKit::ImageKit ( ImageKit const &  in_kit)

The copy constructor creates a new ImageKit object that contains the same settings as the source ImageKit.

Parameters
in_kitThe source ImageKit to copy.
HPS::Publish::ImageKit::ImageKit ( ImageKit &&  in_kit)

The move constructor creates an ImageKit by transferring the underlying object of the rvalue reference to this ImageKit.

Parameters
in_kitAn rvalue reference to an ImageKit to take the underlying object from.

Member Function Documentation

bool HPS::Publish::ImageKit::Empty ( ) const
virtual

Indicates whether this ImageKit has any values set on it.

Returns
true if no values are set on this ImageKit, false otherwise.

Reimplemented from HPS::Object.

bool HPS::Publish::ImageKit::Equals ( ImageKit const &  in_kit) const

Check if the source ImageKit is equivalent to this ImageKit.

Parameters
in_kitThe source ImageKit to compare to this ImageKit.
Returns
true if the objects are equivalent, false otherwise.
HPS::Type HPS::Publish::ImageKit::ObjectType ( ) const
inlinevirtual

This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.

Returns
The declared type of the object in question, which may differ from the true, underlying type.

Reimplemented from HPS::Object.

bool HPS::Publish::ImageKit::operator!= ( ImageKit const &  in_kit) const

Check if the source ImageKit is not equivalent to this ImageKit.

Parameters
in_kitThe source ImageKit to compare to this ImageKit.
Returns
true if the objects are not equivalent, false otherwise.
ImageKit& HPS::Publish::ImageKit::operator= ( ImageKit const &  in_kit)

Copies the source ImageKit into this ImageKit.

Parameters
in_kitThe source ImageKit to copy.
Returns
A reference to this ImageKit.
ImageKit& HPS::Publish::ImageKit::operator= ( ImageKit &&  in_kit)

The move assignment operator transfers the underlying object of the rvalue reference to this ImageKit.

Parameters
in_kitAn rvalue reference to an ImageKit to take the underlying object from.
Returns
A reference to this ImageKit.
bool HPS::Publish::ImageKit::operator== ( ImageKit const &  in_kit) const

Check if the source ImageKit is equivalent to this ImageKit.

Parameters
in_kitThe source ImageKit to compare to this ImageKit.
Returns
true if the objects are equivalent, false otherwise.
void HPS::Publish::ImageKit::Set ( ImageKit const &  in_kit)

Copies the source ImageKit into this ImageKit.

Parameters
in_kitThe source ImageKit to copy.
ImageKit& HPS::Publish::ImageKit::SetFile ( char const *  in_filename)

Sets the file for the image. This corresponds to the value that will be passed to A3DPDFImageData::m_pcFileName.

Parameters
in_filenameUTF8-encoded filename for the image.
Returns
A reference to this ImageKit.
ImageKit& HPS::Publish::ImageKit::SetFormat ( Image::Format  in_format)

Sets the format of the image. This corresponds to the value that will be passed to A3DPDFImageData::m_eFormat.

Parameters
in_formatThe format of the image.
Returns
A reference to this ImageKit.
ImageKit& HPS::Publish::ImageKit::SetSize ( int  in_width,
int  in_height 
)

Sets the size of the image in pixels. This corresponds to the value that will be passed to A3DPDFImageData::m_iWidth and A3DPDFImageData::m_iHeight.

Parameters
in_widthThe width of the image in pixels.
in_heightThe height of the image in pixels.
Returns
A reference to this ImageKit.
void HPS::Publish::ImageKit::Show ( ImageKit out_kit) const

Copies this ImageKit into the given ImageKit.

Parameters
out_kitThe ImageKit to populate with the contents of this ImageKit.
bool HPS::Publish::ImageKit::ShowFile ( UTF8 out_filename) const

Shows the file setting.

Parameters
out_filenameThe filename for the image.
Returns
true if a color was specified, false otherwise.
bool HPS::Publish::ImageKit::ShowFormat ( Image::Format out_format) const

Shows the format setting.

Parameters
out_formatThe format of the image.
Returns
true if a format was specified, false otherwise.
bool HPS::Publish::ImageKit::ShowSize ( int &  out_width,
int &  out_height 
) const

Shows the size setting.

Parameters
out_widthThe width of the image in pixels.
out_heightThe height of the image in pixels.
Returns
true if a width and height were specified, false otherwise.
ImageKit& HPS::Publish::ImageKit::UnsetEverything ( )

Removes all data from the image.

Returns
A reference to this ImageKit.
ImageKit& HPS::Publish::ImageKit::UnsetFile ( )

Removes the file from the image.

Returns
A reference to this ImageKit.
ImageKit& HPS::Publish::ImageKit::UnsetFormat ( )

Removes the format from the image.

Returns
A reference to this ImageKit.
ImageKit& HPS::Publish::ImageKit::UnsetSize ( )

Removes the size from the image.

Returns
A reference to this ImageKit.

The documentation for this class was generated from the following file: