All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
kanzi::ColorBrush Class Reference

Color brush class. More...

#include <kanzi/graphics_2d/color_brush.hpp>

Inheritance diagram for kanzi::ColorBrush:
kanzi::Brush kanzi::Object

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 ()
 
DomaingetDomain () const
 Returns the domain the object belongs to. More...
 
KzuPropertyManager * getPropertyManager () const
 Returns the property manager of the object. More...
 
KzuTaskSchedulergetTaskScheduler () const
 Returns the task scheduler of the object. More...
 
KzuMessageDispatchergetMessageDispatcher () const
 Returns the message dispatcher of the object. More...
 
ResourceManagergetResourceManager () const
 Returns the resource manager of the object. More...
 
virtual const MetaclassgetDynamicMetaclass () 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...
 
AppliedStyleEntryapplyObjectStyle (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 ColorBrushSharedPtr create (Domain *domain, string_view name)
 Create a new color brush. More...
 
static ColorBrushSharedPtr create (Domain *domain, string_view name, const ColorRGBA &color)
 Create a new color brush. More...
 
- Static Public Member Functions inherited from kanzi::Brush
static
PropertyTypeEditorInfoSharedPtr 
makeEditorInfo ()
 
- Static Public Member Functions inherited from kanzi::Object
static const MetaclassgetStaticMetaclass ()
 Returns the metaclass of Object class. More...
 
static
PropertyTypeEditorInfoSharedPtr 
makeEditorInfo ()
 Default implementation that returns empty editor info. More...
 

Protected Member Functions

 ColorBrush (Domain *domain, string_view name)
 Constructor. More...
 
 ColorBrush (Domain *domain, string_view name, const ColorRGBA &color)
 Constructor. More...
 
virtual void onPropertyChanged (AbstractPropertyType propertyType, KzuPropertyNotificationReason reason) KZ_OVERRIDE
 Object::onPropertyChanged() implementation. 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...
 
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)
 

Properties

static PropertyType< ColorRGBAColorProperty
 Color property. More...
 
ColorRGBA getColor () const
 Gets the value of ColorProperty. More...
 
void setColor (ColorRGBA value)
 Sets the value of ColorProperty. More...
 

Additional Inherited Members

- Static Public Attributes inherited from kanzi::Brush
static PropertyType< ColorRGBAModulateColorProperty
 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...
 

Detailed Description

Color brush class.

Implements a solid-color brush used to fill areas.

Constructor & Destructor Documentation

kanzi::ColorBrush::ColorBrush ( Domain domain,
string_view  name 
)
inlineexplicitprotected

Constructor.

Parameters
domaindomain the brush belongs to.
nameName of the color brush
kanzi::ColorBrush::ColorBrush ( Domain domain,
string_view  name,
const ColorRGBA color 
)
explicitprotected

Constructor.

Parameters
domaindomain the brush belongs to.
nameName of the color brush
colorColor to use.

Member Function Documentation

ColorRGBA kanzi::ColorBrush::getColor ( ) const
inline

Gets the value of ColorProperty.

See also
setColor()
void kanzi::ColorBrush::setColor ( ColorRGBA  value)
inline

Sets the value of ColorProperty.

See also
getColor()
static PropertyTypeEditorInfoSharedPtr kanzi::ColorBrush::makeEditorInfo ( )
static
static ColorBrushSharedPtr kanzi::ColorBrush::create ( Domain domain,
string_view  name 
)
static

Create a new color brush.

Color assumes default property value.

Default rendering is used.

Parameters
uiDomainuiDomain the brush belongs to.
nameName of the color brush
static ColorBrushSharedPtr kanzi::ColorBrush::create ( Domain domain,
string_view  name,
const ColorRGBA color 
)
static

Create a new color brush.

Default rendering is used.

Parameters
uiDomainuiDomain the brush belongs to.
nameName of the color brush
virtual BrushSharedPtr kanzi::ColorBrush::clone ( )
virtual

Brush::clone() implementation.

Implements kanzi::Brush.

virtual BrushRendererSharedPtr kanzi::ColorBrush::createBrushRenderer ( Node node)
virtual

Brush::createBrushRenderer() implementation.

Implements kanzi::Brush.

virtual void kanzi::ColorBrush::onPropertyChanged ( AbstractPropertyType  propertyType,
KzuPropertyNotificationReason  reason 
)
protectedvirtual

Object::onPropertyChanged() implementation.

Reimplemented from kanzi::Brush.

void kanzi::ColorBrush::calculateRenderingProperties ( )
protected

Calculate rendering properties for this.

Member Data Documentation

PropertyType<ColorRGBA> kanzi::ColorBrush::ColorProperty
static

Color property.

The default value is ColorRGBA(0.0f, 0.0f, 0.0f, 1.0f).

See also
setColor(), getColor()

The documentation for this class was generated from the following file: