#include <kanzi/graphics_2d/content_brush.hpp>
Public Member Functions | |
| virtual BrushSharedPtr | clone () KZ_OVERRIDE |
| Brush::clone() implementation. More... | |
| virtual BrushRendererSharedPtr | createBrushRenderer (Node *node) KZ_OVERRIDE |
| Brush::createBrushRenderer() implementation. More... | |
Public Member Functions inherited from kanzi::Brush | |
| virtual void | load (ResourceManager *resourceManager) |
| Perform brush-specific loading. More... | |
| unsigned int | getPropertyChangeCounter () const |
| Access property change counter. More... | |
| void | updatePropertyChangeCounter () |
| Update property change counter. More... | |
| TextureSharedPtr | getContentTexture () const |
| Access content texture. More... | |
| void | setContentTexture (TextureSharedPtr texture) |
| Set content texture. More... | |
| string | getName () const |
| Get name of this brush. More... | |
| void | setName (string_view name) |
| Set name of this brush. More... | |
| Vector2 | getTiling () const |
| Get tiling vector. More... | |
| bool | isRenderable () const |
| Tell whether or not the brush needs rendering. More... | |
| bool | isOpaque () const |
| Tell if the brush is opaque. More... | |
| ColorRGBA | getModulateColor () const |
| Gets the value of ModulateColorProperty. More... | |
| void | setModulateColor (ColorRGBA value) |
| Sets the value of ModulateColorProperty. More... | |
| float | getHorizontalTiling () const |
| Gets the value of HorizontalTilingProperty. More... | |
| void | setHorizontalTiling (float value) |
| Sets the value of HorizontalTilingProperty. More... | |
| float | getVerticalTiling () const |
| Gets the value of VerticalTilingProperty. More... | |
| void | setVerticalTiling (float value) |
| Sets the value of VerticalTilingProperty. More... | |
Public Member Functions inherited from kanzi::Object | |
| Object (Domain *domain) | |
| virtual | ~Object () |
| Domain * | getDomain () const |
| Returns the domain the object belongs to. More... | |
| KzuPropertyManager * | getPropertyManager () const |
| Returns the property manager of the object. More... | |
| KzuTaskScheduler * | getTaskScheduler () const |
| Returns the task scheduler of the object. More... | |
| KzuMessageDispatcher * | getMessageDispatcher () const |
| Returns the message dispatcher of the object. More... | |
| ResourceManager * | getResourceManager () const |
| Returns the resource manager of the object. More... | |
| virtual const Metaclass * | getDynamicMetaclass () const |
| Returns the metaclass of the dynamic type of the object. More... | |
| bool | isTypeOf (const Metaclass *objectType) const |
| Determines if the type of this object is the given type or derived from it. More... | |
| template<typename DataType > | |
| void | setProperty (const PropertyType< DataType > &propertyType, typename PropertyType< DataType >::DataType value) |
| Sets the local value of a property. More... | |
| void | setProperty (const PropertyType< ResourceID > &propertyType, ResourceSharedPtr value) |
| Sets the local value of a resource id property with a resource pointer. More... | |
| template<typename DataType > | |
| DataType | getProperty (const PropertyType< DataType > &propertyType) const |
| Returns the current value of a property. More... | |
| template<typename DataType > | |
| bool | getProperty (const PropertyType< DataType > &propertyType, typename PropertyType< DataType >::DataType &value) const |
| Evaluates the property value in the same way as the overload above but does not default to the value in property metadata if there are no inputs to the property value. More... | |
| template<typename DataType > | |
| void | setAbstractProperty (AbstractPropertyType abstractPropertyType, typename PropertyType< DataType >::DataType value) |
| void | setAbstractProperty (AbstractPropertyType abstractPropertyType, ResourceSharedPtr value) |
| template<typename DataType > | |
| DataType | getAbstractProperty (AbstractPropertyType abstractPropertyType) const |
| template<typename DataType > | |
| bool | getAbstractProperty (AbstractPropertyType abstractPropertyType, typename PropertyType< DataType >::DataType &value) const |
| bool | hasValue (AbstractPropertyType propertyType) const |
| Evaluates whether there are any inputs into the property value. More... | |
| bool | hasLocalValue (AbstractPropertyType propertyType) const |
| Evaluates whether there is a local value set for the property. More... | |
| void | removeLocalValue (AbstractPropertyType propertyType) |
| Removes the local value associated with the property. More... | |
| void | copyLocalValues (const Object &other) |
| Copies all local values from another object. More... | |
| AppliedStyleEntry * | applyObjectStyle (kanzi::StyleSharedPtr style) |
| Applies a style to an object. More... | |
| void | unapplyObjectStyle (AppliedStyleEntry *appliedStyleEntry) |
| void | applyObjectStyles () |
| Apply all styles for an object node. More... | |
| void | unapplyObjectStyles () |
| Unapplies and removes all applied styles. More... | |
Static Public Member Functions | |
| static PropertyTypeEditorInfoSharedPtr | makeEditorInfo () |
| static ContentBrushSharedPtr | create (Domain *domain, string_view name) |
| Create a new content brush. More... | |
Static Public Member Functions inherited from kanzi::Brush | |
| static PropertyTypeEditorInfoSharedPtr | makeEditorInfo () |
Static Public Member Functions inherited from kanzi::Object | |
| static const Metaclass * | getStaticMetaclass () |
| Returns the metaclass of Object class. More... | |
| static PropertyTypeEditorInfoSharedPtr | makeEditorInfo () |
| Default implementation that returns empty editor info. More... | |
Protected Member Functions | |
| ContentBrush (Domain *domain, string_view name) | |
| Constructor. More... | |
| void | calculateRenderingProperties () |
| Calculate rendering properties for this. More... | |
Protected Member Functions inherited from kanzi::Brush | |
| Brush (Domain *domain, string_view name) | |
| Constructor. More... | |
| virtual | ~Brush () |
| Destructor. More... | |
| virtual void | onPropertyChanged (AbstractPropertyType propertyType, KzuPropertyNotificationReason reason) KZ_OVERRIDE |
| Object::onPropertyChanged() implementation. More... | |
| void | setRenderable (bool renderable) |
| Set renderable status. More... | |
| void | setOpaque (bool opaque) |
| Set opaqueness status. More... | |
Protected Member Functions inherited from kanzi::Object | |
| void | initialize () |
| void | onCopy (const Object &other) |
Additional Inherited Members | |
Static Public Attributes inherited from kanzi::Brush | |
| static PropertyType< ColorRGBA > | ModulateColorProperty |
| ModulateColor property. More... | |
| static PropertyType< float > | HorizontalTilingProperty |
| HorizontalTiling property. More... | |
| static PropertyType< float > | VerticalTilingProperty |
| VerticalTiling property. More... | |
Protected Types inherited from kanzi::Object | |
| typedef vector < AppliedStyleEntry * > | AppliedStyleContainer |
| Applied style container. More... | |
Protected Attributes inherited from kanzi::Object | |
| AppliedStyleContainer | m_appliedStyles |
| Listing of applied styles applied to this object. More... | |
Texture brush class.
Implements a textured brush used to fill areas with patterns.
|
inlineexplicitprotected |
Constructor.
| domain | domain the brush belongs to. |
| name | Name of the brush. |
|
static |
|
static |
Create a new content brush.
| uiDomain | uiDomain the brush belongs to. |
| Name | of this texture brush. |
|
virtual |
Brush::clone() implementation.
Implements kanzi::Brush.
|
virtual |
Brush::createBrushRenderer() implementation.
Implements kanzi::Brush.
|
protected |
Calculate rendering properties for this.