|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
Represents a colour or fill pattern to use for rendering paths. More...
#include "juce_FillType.h"
Public Member Functions | |
| FillType () noexcept | |
| Creates a default fill type, of solid black. | |
| FillType (Colour colour) noexcept | |
| Creates a fill type of a solid colour. | |
| FillType (const ColourGradient &gradient) | |
| Creates a gradient fill type. | |
| FillType (ColourGradient &&gradient) | |
| Creates a gradient fill type. | |
| FillType (const Image &image, const AffineTransform &transform) noexcept | |
| Creates a tiled image fill type. | |
| FillType (const FillType &) | |
| Creates a copy of another FillType. | |
| FillType & | operator= (const FillType &) |
| Makes a copy of another FillType. | |
| FillType (FillType &&) noexcept | |
| Move constructor. | |
| FillType & | operator= (FillType &&) noexcept |
| Move assignment operator. | |
| ~FillType () noexcept | |
| Destructor. | |
| bool | isColour () const noexcept |
| Returns true if this is a solid colour fill, and not a gradient or image. | |
| bool | isGradient () const noexcept |
| Returns true if this is a gradient fill. | |
| bool | isTiledImage () const noexcept |
| Returns true if this is a tiled image pattern fill. | |
| void | setColour (Colour newColour) noexcept |
| Turns this object into a solid colour fill. | |
| void | setGradient (const ColourGradient &newGradient) |
| Turns this object into a gradient fill. | |
| void | setTiledImage (const Image &image, const AffineTransform &transform) noexcept |
| Turns this object into a tiled image fill type. | |
| void | setOpacity (float newOpacity) noexcept |
| Changes the opacity that should be used. | |
| float | getOpacity () const noexcept |
| Returns the current opacity to be applied to the colour, gradient, or image. | |
| bool | isInvisible () const noexcept |
| Returns true if this fill type is completely transparent. | |
| FillType | transformed (const AffineTransform &transform) const |
| Returns a copy of this fill, adding the specified transform applied to the existing transform. | |
| bool | operator== (const FillType &) const |
| bool | operator!= (const FillType &) const |
Public Attributes | |
| Colour | colour |
| The solid colour being used. | |
| std::unique_ptr< ColourGradient > | gradient |
| Returns the gradient that should be used for filling. | |
| Image | image |
| The image that should be used for tiling. | |
| AffineTransform | transform |
| The transform that should be applied to the image or gradient that's being drawn. | |
Represents a colour or fill pattern to use for rendering paths.
This is used by the Graphics and DrawablePath classes as a way to encapsulate a brush type. It can either be a solid colour, a gradient, or a tiled image.
@tags{Graphics}
Definition at line 40 of file juce_FillType.h.
|
noexcept |
Creates a default fill type, of solid black.
Definition at line 29 of file juce_FillType.cpp.
|
noexcept |
Creates a fill type of a solid colour.
Definition at line 34 of file juce_FillType.cpp.
| juce::FillType::FillType | ( | const ColourGradient & | gradient | ) |
| juce::FillType::FillType | ( | ColourGradient && | gradient | ) |
|
noexcept |
Creates a tiled image fill type.
The transform allows you to set the scaling, offset and rotation of the pattern.
Definition at line 49 of file juce_FillType.cpp.
Creates a copy of another FillType.
Definition at line 54 of file juce_FillType.cpp.
|
noexcept |
Move constructor.
Definition at line 75 of file juce_FillType.cpp.
|
noexcept |
Destructor.
Definition at line 94 of file juce_FillType.cpp.
|
noexcept |
Returns the current opacity to be applied to the colour, gradient, or image.
Definition at line 114 of file juce_FillType.h.
|
noexcept |
Returns true if this is a solid colour fill, and not a gradient or image.
Definition at line 85 of file juce_FillType.h.
|
noexcept |
Returns true if this is a gradient fill.
Definition at line 88 of file juce_FillType.h.
|
noexcept |
Returns true if this fill type is completely transparent.
Definition at line 145 of file juce_FillType.cpp.
|
noexcept |
Returns true if this is a tiled image pattern fill.
Definition at line 91 of file juce_FillType.h.
Definition at line 106 of file juce_FillType.cpp.
Makes a copy of another FillType.
Definition at line 62 of file juce_FillType.cpp.
Move assignment operator.
Definition at line 83 of file juce_FillType.cpp.
Definition at line 98 of file juce_FillType.cpp.
Turns this object into a solid colour fill.
If the object was an image or gradient, those fields will no longer be valid.
Definition at line 111 of file juce_FillType.cpp.
| void juce::FillType::setGradient | ( | const ColourGradient & | newGradient | ) |
Turns this object into a gradient fill.
Definition at line 118 of file juce_FillType.cpp.
Changes the opacity that should be used.
If the fill is a solid colour, this just changes the opacity of that colour. For gradients and image tiles, it changes the opacity that will be used for them.
Definition at line 140 of file juce_FillType.cpp.
|
noexcept |
Turns this object into a tiled image fill type.
The transform allows you to set the scaling, offset and rotation of the pattern.
Definition at line 132 of file juce_FillType.cpp.
| FillType juce::FillType::transformed | ( | const AffineTransform & | transform | ) | const |
Returns a copy of this fill, adding the specified transform applied to the existing transform.
Definition at line 150 of file juce_FillType.cpp.
| Colour juce::FillType::colour |
The solid colour being used.
If the fill type is not a solid colour, the alpha channel of this colour indicates the opacity that should be used for the fill, and the RGB channels are ignored.
Definition at line 130 of file juce_FillType.h.
| std::unique_ptr<ColourGradient> juce::FillType::gradient |
Returns the gradient that should be used for filling.
This will be nullptr if the object is some other type of fill. If a gradient is active, the overall opacity with which it should be applied is indicated by the alpha channel of the colour variable.
Definition at line 137 of file juce_FillType.h.
| Image juce::FillType::image |
The image that should be used for tiling.
If an image fill is active, the overall opacity with which it should be applied is indicated by the alpha channel of the colour variable.
Definition at line 143 of file juce_FillType.h.
| AffineTransform juce::FillType::transform |
The transform that should be applied to the image or gradient that's being drawn.
Definition at line 146 of file juce_FillType.h.