#include <Fillable.hpp>
Inheritance diagram for Fillable:


These include circles, rectangles, and polygons. All of these objects can contain a fill color.
Definition at line 44 of file Fillable.hpp.
Public Member Functions | |
| Fillable (void) | |
| Default constructor. | |
| Fillable (const StrokeStyle &istyle) | |
| Constructor. | |
| Fillable (const Color &ifillColor) | |
| Constructor. | |
| Fillable (const StrokeStyle &istyle, const Color &ifillColor) | |
| Constructor. | |
| bool | hasOwnFillColor (void) const |
| Accessor. Does this fillable have a preferred fill color? | |
| Color | getFillColor (void) const |
| Accessor. What is the fill color for this fillable? | |
| void | setFillColor (const Color &ifillColor) |
| Mutator. Set the fill color. | |
| void | removeFillColor (void) |
| Mutator. Remove the fill color...use default. | |
Protected Attributes | |
| Color | fillColor |
| Default fill color. | |
| bool | hasFillColor |
| A fill color has been set? | |
|
|
Default constructor.
Definition at line 55 of file Fillable.hpp. References hasFillColor. |
|
|
Constructor. Defines a basic shape by a StrokeStyle.
Definition at line 63 of file Fillable.hpp. References hasFillColor. |
|
|
Constructor. Defines a basic shape by a fill color.
Definition at line 71 of file Fillable.hpp. References fillColor, and hasFillColor. |
|
||||||||||||
|
Constructor. Defines a basic shape by a StrokeStyle and a fill color.
Definition at line 80 of file Fillable.hpp. References fillColor, and hasFillColor. |
|
|
Accessor. What is the fill color for this fillable?
Definition at line 88 of file Fillable.hpp. |
|
|
Accessor. Does this fillable have a preferred fill color?
Definition at line 85 of file Fillable.hpp. |
|
|
Mutator. Remove the fill color...use default.
Definition at line 94 of file Fillable.hpp. References hasFillColor. |
|
|
Mutator. Set the fill color.
Definition at line 91 of file Fillable.hpp. References fillColor, and hasFillColor. |
|
|
Default fill color.
Definition at line 99 of file Fillable.hpp. Referenced by Fillable(), and setFillColor(). |
|
|
A fill color has been set?
Definition at line 102 of file Fillable.hpp. Referenced by Fillable(), removeFillColor(), and setFillColor(). |
1.3.9.1