The HPS::AttributeLockKit class provides support for attribute locking, which allows temporarily override of an attribute setting for a segment and its descendants. More...
#include <hps.h>
Public Member Functions | |
AttributeLockKit () | |
Initializes an empty kit. More... | |
AttributeLockKit (AttributeLockKit const &in_kit) | |
Copies the kit in_kit into this kit. More... | |
AttributeLockKit (AttributeLockKit &&in_that) | |
The move constructor creates a AttributeLockKit by transferring the underlying impl of the rvalue reference to this AttributeLockKit thereby avoiding a copy and allocation. More... | |
AttributeLockKit & | operator= (AttributeLockKit &&in_that) |
The move assignment operator transfers the underlying impl of the rvalue reference to this AttributeLockKit thereby avoiding a copy. More... | |
virtual | ~AttributeLockKit () |
Destroy this kit. More... | |
HPS::Type | ObjectType () const |
void | Set (AttributeLockKit const &in_kit) |
Copies the source AttributeLockKit into this object. More... | |
void | Show (AttributeLockKit &out_kit) const |
Copies this object into the given AttributeLockKit. More... | |
AttributeLockKit & | operator= (AttributeLockKit const &in_kit) |
Copies the source AttributeLockKit into this object. More... | |
bool | Empty () const |
Indicates whether this object has any values set on it. More... | |
bool | Equals (AttributeLockKit const &in_kit) const |
Check if the source AttributeLockKit is equivalent to this object. More... | |
bool | operator== (AttributeLockKit const &in_kit) const |
Check if the source AttributeLockKit is equivalent to this object. More... | |
bool | operator!= (AttributeLockKit const &in_kit) const |
Check if the source AttributeLockKit is not equivalent to this object. More... | |
AttributeLockKit & | SetLock (AttributeLock::Type in_type, bool in_state=true) |
Applies an attribute lock that prevents attributes of the chosen type from being modified in child segments. More... | |
AttributeLockKit & | SetLock (AttributeLockTypeArray const &in_types, BoolArray const &in_states) |
Applies attribute locks that prevents attributes of the chosen types from being modified in child segments. More... | |
AttributeLockKit & | SetSubsegmentLockOverride (AttributeLock::Type in_type, bool in_state=true) |
Normally, if a segment applies an attribute lock it will defeat an existing lock set in a parent segment. More... | |
AttributeLockKit & | SetSubsegmentLockOverride (AttributeLockTypeArray const &in_types, BoolArray const &in_states) |
Normally, if a segment applies an attribute lock it will defeat an existing lock set in a parent segment. More... | |
AttributeLockKit & | UnsetLock (AttributeLock::Type in_type=AttributeLock::Type::Everything) |
Removes an attribute lock setting. More... | |
AttributeLockKit & | UnsetLock (AttributeLockTypeArray const &in_types) |
Removes a collection of attribute lock settings. More... | |
AttributeLockKit & | UnsetSubsegmentLockOverride (AttributeLock::Type in_type=AttributeLock::Type::Everything) |
Removes a subsegment lock override setting. More... | |
AttributeLockKit & | UnsetSubsegmentLockOverride (AttributeLockTypeArray const &in_types) |
Removes a collection of subsegment lock override settings. More... | |
AttributeLockKit & | UnsetEverything () |
Removes all settings from this object. More... | |
bool | ShowLock (AttributeLock::Type in_type, bool &out_state) const |
Shows the state of a particular attribute lock. More... | |
bool | ShowLock (AttributeLockTypeArray &out_types, BoolArray &out_states) const |
Shows the state of all attribute locks. More... | |
bool | ShowSubsegmentLockOverride (AttributeLock::Type in_type, bool &out_state) const |
Shows the state of a particular subsegment lock override. More... | |
bool | ShowSubsegmentLockOverride (AttributeLockTypeArray &out_types, BoolArray &out_states) const |
Shows the state of all subsegment lock overrides. More... | |
virtual HPS::Type | Type () const |
This function returns the true type of the underlying object. More... | |
virtual void | Reset () |
Resets this object to its initial, uninitialized state. More... | |
bool | HasType (HPS::Type in_mask) const |
This function indicates whether this Object has the given Type mask. More... | |
intptr_t | GetClassID () const |
Returns a unique identifier that is shared by all objects of the same class. More... | |
intptr_t | GetInstanceID () const |
Returns an identifier that can be used to identify which instance of a class an object is. More... | |
Static Public Member Functions | |
static AttributeLockKit | GetDefault () |
Creates an AttributeLockKit which contains the default settings. More... | |
template<typename T > | |
static intptr_t | ClassID () |
Unique identifier for this class. More... | |
Static Public Attributes | |
static const HPS::Type | staticType = HPS::Type::AttributeLockKit |
The HPS::AttributeLockKit class provides support for attribute locking, which allows temporarily override of an attribute setting for a segment and its descendants.
This control is used to set and unset attribute locks at the segment level. Calling HPS::AttributeLockKit::GetDefault() will return a kit with values found in this table.
HPS::AttributeLockKit::AttributeLockKit | ( | ) |
Initializes an empty kit.
HPS::AttributeLockKit::AttributeLockKit | ( | AttributeLockKit const & | in_kit | ) |
Copies the kit in_kit into this kit.
HPS::AttributeLockKit::AttributeLockKit | ( | AttributeLockKit && | in_that | ) |
The move constructor creates a AttributeLockKit by transferring the underlying impl of the rvalue reference to this AttributeLockKit thereby avoiding a copy and allocation.
in_that | An rvalue reference to a AttributeLockKit to take the impl from. |
|
virtual |
Destroy this kit.
|
inlinestaticinherited |
Unique identifier for this class.
Note: this method uses construction of static objects. If used in a constructor, it should be used in the body not the initializer list.
|
virtual |
Indicates whether this object has any values set on it.
Reimplemented from HPS::Object.
bool HPS::AttributeLockKit::Equals | ( | AttributeLockKit const & | in_kit | ) | const |
Check if the source AttributeLockKit is equivalent to this object.
in_kit | The source AttributeLockKit to compare to this object. |
|
inherited |
Returns a unique identifier that is shared by all objects of the same class.
|
static |
Creates an AttributeLockKit which contains the default settings.
The returned object will not necessarily have values set for every option, but it will have settings for those options where it is reasonable to have a default.
|
inherited |
Returns an identifier that can be used to identify which instance of a class an object is.
Different keys and controls will return the same value if they are backed by the same database resource.
|
inherited |
|
inlinevirtual |
bool HPS::AttributeLockKit::operator!= | ( | AttributeLockKit const & | in_kit | ) | const |
Check if the source AttributeLockKit is not equivalent to this object.
in_kit | The source AttributeLockKit to compare to this object. |
AttributeLockKit& HPS::AttributeLockKit::operator= | ( | AttributeLockKit && | in_that | ) |
The move assignment operator transfers the underlying impl of the rvalue reference to this AttributeLockKit thereby avoiding a copy.
in_that | An rvalue reference to a AttributeLockKit to take the impl from. |
AttributeLockKit& HPS::AttributeLockKit::operator= | ( | AttributeLockKit const & | in_kit | ) |
Copies the source AttributeLockKit into this object.
in_kit | The source AttributeLockKit to copy. |
bool HPS::AttributeLockKit::operator== | ( | AttributeLockKit const & | in_kit | ) | const |
Check if the source AttributeLockKit is equivalent to this object.
in_kit | The source AttributeLockKit to compare to this object. |
|
virtualinherited |
Resets this object to its initial, uninitialized state.
Reimplemented in HPS::EventHandler, HPS::EventDispatcher, HPS::World, HPS::HighlightSearchResults, HPS::HighlightSearchResultsIterator, HPS::SelectionResults, HPS::SelectionResultsIterator, HPS::FontSearchResults, HPS::FontSearchResultsIterator, HPS::SearchResults, and HPS::SearchResultsIterator.
void HPS::AttributeLockKit::Set | ( | AttributeLockKit const & | in_kit | ) |
Copies the source AttributeLockKit into this object.
in_kit | The source object to copy. |
AttributeLockKit& HPS::AttributeLockKit::SetLock | ( | AttributeLock::Type | in_type, |
bool | in_state = true |
||
) |
Applies an attribute lock that prevents attributes of the chosen type from being modified in child segments.
in_type | The type of attribute to lock or unlock. |
in_state | Whether the attribute should be locked. |
AttributeLockKit& HPS::AttributeLockKit::SetLock | ( | AttributeLockTypeArray const & | in_types, |
BoolArray const & | in_states | ||
) |
Applies attribute locks that prevents attributes of the chosen types from being modified in child segments.
in_types | An array of attribute types that should be locked or unlocked. |
in_states | An array of bools with each one indicating whether the corresponding type in in_types should be locked. |
AttributeLockKit& HPS::AttributeLockKit::SetSubsegmentLockOverride | ( | AttributeLock::Type | in_type, |
bool | in_state = true |
||
) |
Normally, if a segment applies an attribute lock it will defeat an existing lock set in a parent segment.
This method designates a particular lock as a "super lock" that cannot be overridden by subsegments.
in_type | The type of attribute lock that should be ignored in subsegments. |
in_state | Whether the attribute lock should override locks in subsegments. |
AttributeLockKit& HPS::AttributeLockKit::SetSubsegmentLockOverride | ( | AttributeLockTypeArray const & | in_types, |
BoolArray const & | in_states | ||
) |
Normally, if a segment applies an attribute lock it will defeat an existing lock set in a parent segment.
This method designates a collection of locks as a "super locks" that cannot be overridden by subsegments.
in_types | An array of types of attribute locks that should be ignored in subsegments. |
in_states | An array of bools with each one indicating whether the corresponding attribute lock in in_types should override locks in subsegments. |
void HPS::AttributeLockKit::Show | ( | AttributeLockKit & | out_kit | ) | const |
Copies this object into the given AttributeLockKit.
out_kit | The AttributeLockKit to populate with the contents of this object. |
bool HPS::AttributeLockKit::ShowLock | ( | AttributeLock::Type | in_type, |
bool & | out_state | ||
) | const |
Shows the state of a particular attribute lock.
in_type | The type of attribute lock to be queried. |
out_state | Whether the attribute is locked. |
bool HPS::AttributeLockKit::ShowLock | ( | AttributeLockTypeArray & | out_types, |
BoolArray & | out_states | ||
) | const |
Shows the state of all attribute locks.
out_types | An array of types that have an attribute lock setting. |
out_states | An array of bools with each indicating whether the corresponding entry in in_types is locked. |
bool HPS::AttributeLockKit::ShowSubsegmentLockOverride | ( | AttributeLock::Type | in_type, |
bool & | out_state | ||
) | const |
Shows the state of a particular subsegment lock override.
in_type | The type of attribute lock to be queried. |
out_state | Whether the attribute lock will override locks in subsegments. |
bool HPS::AttributeLockKit::ShowSubsegmentLockOverride | ( | AttributeLockTypeArray & | out_types, |
BoolArray & | out_states | ||
) | const |
Shows the state of all subsegment lock overrides.
out_types | An array of types that have a subsegment lock override setting. |
out_states | An array of bools with each indicating whether the corresponding entry in in_types is will be ignored in subsegments. |
|
inlinevirtualinherited |
This function returns the true type of the underlying object.
This function is useful for finding the type of smart pointer objects that have been cast to more generic types.
Reimplemented from HPS::Object.
AttributeLockKit& HPS::AttributeLockKit::UnsetEverything | ( | ) |
Removes all settings from this object.
AttributeLockKit& HPS::AttributeLockKit::UnsetLock | ( | AttributeLock::Type | in_type = AttributeLock::Type::Everything | ) |
Removes an attribute lock setting.
AttributeLockKit& HPS::AttributeLockKit::UnsetLock | ( | AttributeLockTypeArray const & | in_types | ) |
Removes a collection of attribute lock settings.
AttributeLockKit& HPS::AttributeLockKit::UnsetSubsegmentLockOverride | ( | AttributeLock::Type | in_type = AttributeLock::Type::Everything | ) |
Removes a subsegment lock override setting.
AttributeLockKit& HPS::AttributeLockKit::UnsetSubsegmentLockOverride | ( | AttributeLockTypeArray const & | in_types | ) |
Removes a collection of subsegment lock override settings.
|
static |