Extension used to access view's origins if it exists.
More...
#include <iolink/view/ViewOriginExtension.h>
|
virtual uint64_t | uid () const =0 |
| Returns an unique identifier for current view.
|
|
virtual size_t | parentCount () const =0 |
| Returns the count of parents used to create the current view.
|
|
virtual std::shared_ptr< ViewOriginExtension > | parent (size_t idx) const =0 |
| Returns, for the given index, the viewOrigin extension of the parent used to create the current view.
|
|
virtual ViewDataOrigin | dataOrigin () const =0 |
| Returns the data origin of current view.
|
|
virtual std::string | displayName () const =0 |
| Returns the name of the current view to display.
|
|
std::string | toString () const |
| String representation of the extension.
|
|
|
static constexpr size_t | EXTENSION_ID = 0x3 |
| Identifier used to load the extension using the View::extension method.
|
|
Extension used to access view's origins if it exists.
Views can be created from scratch, but also from one or many other views. This extension provides methods which allow to build the dependency tree of current view. It also helps to retrieve information to know data origin and to identify a view between others.
- Examples
- customImageView.cpp.
◆ cast()
Upcast a generic extension to this specific type.
- Parameters
-
extension | The extension to cast. |
- Returns
- The upcasted extension. This will be null if no upcasting is possible.
◆ dataOrigin()
virtual ViewDataOrigin iolink::ViewOriginExtension::dataOrigin |
( |
| ) |
const |
|
pure virtual |
◆ displayName()
virtual std::string iolink::ViewOriginExtension::displayName |
( |
| ) |
const |
|
pure virtual |
◆ parent()
virtual std::shared_ptr< ViewOriginExtension > iolink::ViewOriginExtension::parent |
( |
size_t |
idx | ) |
const |
|
pure virtual |
Returns, for the given index, the viewOrigin extension of the parent used to create the current view.
- Parameters
-
idx | index of parent to retrieve |
- Exceptions
-
Error | if the index is out of range |
- Returns
- a ViewOrigin extension which cannot be null
Implemented in CheckerboardImageView::ViewOriginImpl.
◆ parentCount()
virtual size_t iolink::ViewOriginExtension::parentCount |
( |
| ) |
const |
|
pure virtual |
◆ uid()
virtual uint64_t iolink::ViewOriginExtension::uid |
( |
| ) |
const |
|
pure virtual |
The documentation for this class was generated from the following file: