REFERENCE MANUAL
#include <hps.h>
Public Member Functions | |
void | Assign (FontInfoState const &in_that) |
bool | Empty () const |
bool | Equals (FontInfoState const &in_kit) const |
FontInfoState () | |
FontInfoState (FontInfoState const &in_kit) | |
FontInfoState (FontInfoState &&in_that) | |
UTF8 | GetName () const |
bool | GetShellConvertibility () const |
Type | ObjectType () const |
bool | operator!= (FontInfoState const &in_kit) const |
FontInfoState & | operator= (FontInfoState &&in_that) |
FontInfoState & | operator= (FontInfoState const &in_kit) |
bool | operator== (FontInfoState const &in_kit) const |
void | Set (FontInfoState const &in_kit) |
void | Show (FontInfoState &out_kit) const |
virtual | ~FontInfoState () |
![]() | |
intptr_t | GetClassID () const |
intptr_t | GetInstanceID () const |
bool | HasType (Type in_mask) const |
Object (Object &&in_that) | |
Object & | operator= (Object const &other_object) |
Object & | operator= (Object &&in_that) |
virtual void | Reset () |
Type | Type () const |
Additional Inherited Members | |
![]() | |
template<typename T > | |
static intptr_t | ClassID () |
The FontInfoState class is a user space object, useful for carrying a group attribute settings.
FontInfoState::FontInfoState | ( | ) |
Initializes an empty State.
FontInfoState::FontInfoState | ( | FontInfoState const & | in_kit | ) |
Copies the kit in_kit into this kit.
FontInfoState::FontInfoState | ( | FontInfoState && | in_that | ) |
The move constructor creates a FontInfoState by transferring the underlying impl of the rvalue reference to this FontInfoState thereby avoiding a copy and allocation.
in_that | An rvalue reference to a FontInfoState to take the impl from. |
|
virtual |
Destroy this kit.
void FontInfoState::Assign | ( | FontInfoState const & | in_that | ) |
Copies the source FontInfoState into this FontInfoState.
in_that | The source LocatorState to copy. |
|
virtual |
Indicates whether this object has any values set on it.
Reimplemented from Object.
bool FontInfoState::Equals | ( | FontInfoState const & | in_kit | ) | const |
Check if the source FontInfoState is equivalent to this object.
in_kit | The source FontInfoState to compare to this object. |
UTF8 FontInfoState::GetName | ( | ) | const |
Gets the name of this font
bool FontInfoState::GetShellConvertibility | ( | ) | const |
Gets the shell convertibility of this font. This determines whether or not the font can be converted into a Visualize shell.
|
inlinevirtual |
This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.
Reimplemented from Object.
bool FontInfoState::operator!= | ( | FontInfoState const & | in_kit | ) | const |
Check if the source FontInfoState is not equivalent to this object.
in_kit | The source FontInfoState to compare to this object. |
FontInfoState& FontInfoState::operator= | ( | FontInfoState && | in_that | ) |
The move assignment operator transfers the underlying impl of the rvalue reference to this FontInfoState thereby avoiding a copy.
in_that | An rvalue reference to a FontInfoState to take the impl from. |
FontInfoState& FontInfoState::operator= | ( | FontInfoState const & | in_kit | ) |
Copies the source FontInfoState into this object.
in_kit | The source FontInfoState to copy. |
bool FontInfoState::operator== | ( | FontInfoState const & | in_kit | ) | const |
Check if the source FontInfoState is equivalent to this object.
in_kit | The source FontInfoState to compare to this object. |
void FontInfoState::Set | ( | FontInfoState const & | in_kit | ) |
Copies the source FontInfoState into this object.
in_kit | The source object to copy. |
void FontInfoState::Show | ( | FontInfoState & | out_kit | ) | const |
Copies this object into the given FontInfoState.
out_kit | The FontInfoState to populate with the contents of this object. |