Property access range wraps the access of properties from another range. More...
#include <kanzi/core.ui/binding/property_access_range.hpp>
Classes | |
class | PropertyAccessRangeLocation |
Location implementation for property access range. More... | |
Public Member Functions | |
void | adapt (AbstractRangeSharedPtr sourceRange, AbstractPropertyType propertyType) |
Adapts a new range and property type. More... | |
AbstractPropertyType | getPropertyType () const |
Gets the property type used for access. More... | |
Public Member Functions inherited from kanzi::AbstractRange | |
AbstractRangeIterator | beginIteration () |
Gets an iterator to the beginning of this range. More... | |
AbstractRangeSharedPtr | createView (size_t length) |
Creates a view over this range. More... | |
AbstractRangeSharedPtr | evaluate () |
Evaluate the abstract range. More... | |
AbstractRangeLocationPtr | locationBegin () |
Gets an iteratable location to beginning of the range. More... | |
virtual | ~AbstractRange ()=default |
Destructor. More... | |
Static Public Member Functions | |
static PropertyAccessRangeSharedPtr | create (AbstractRangeSharedPtr sourceRange, AbstractPropertyType propertyType) |
Creates a new iterator range. More... | |
Protected Member Functions | |
AbstractRangeLocationPtr | locationBeginOverride () override |
AbstractRange::locationBeginOverride() implementation. More... | |
PropertyAccessRange (AbstractRangeSharedPtr sourceRange, AbstractPropertyType propertyType) | |
Constructor. More... | |
Protected Member Functions inherited from kanzi::AbstractRange | |
AbstractRange ()=default | |
Constructor. More... | |
virtual AbstractRangeSharedPtr | createViewOverride (size_t length) |
Implementation-dependent view over the range. More... | |
virtual AbstractRangeSharedPtr | evaluateOverride () |
Implementation-dependent evaluation of the range. More... | |
Protected Attributes | |
AbstractPropertyType | m_propertyType |
Property type being accessed. More... | |
AbstractRangeSharedPtr | m_sourceRangeReference |
Reference to the source range. More... | |
Property access range wraps the access of properties from another range.
As opposed to reading the values and writing a ValueRange, PropertyAccessRange provides a lazy access to the properties of another range.
|
inlineexplicitprotected |
Constructor.
sourceRange | Range to iterate. |
propertyType | Property type to access. |
|
static |
Creates a new iterator range.
sourceRange | Range to iterate. |
propertyType | Property type to access. |
void kanzi::PropertyAccessRange::adapt | ( | AbstractRangeSharedPtr | sourceRange, |
AbstractPropertyType | propertyType | ||
) |
Adapts a new range and property type.
sourceRange | Range to iterate. |
propertyType | Property type to access. |
|
inline |
Gets the property type used for access.
|
overrideprotectedvirtual |
AbstractRange::locationBeginOverride() implementation.
Implements kanzi::AbstractRange.
|
protected |
Reference to the source range.
|
protected |
Property type being accessed.