|
|
|
A button that is used to represent color; often used in correlation with a color picker. More...

Public Member Functions | |
| void | setColor (string newColor) |
| Set the color of the swatch control. | |
Public Attributes | |
| ColorF | color |
| The foreground color of GuiSwatchButtonCtrl. | |
A button that is used to represent color; often used in correlation with a color picker.
A swatch button is a push button that uses its color field to designate the color drawn over an image, on top of a button.
The color itself is a float value stored inside the GuiSwatchButtonCtrl::color field. The texture path that represents the image underlying the color is stored inside the GuiSwatchButtonCtrl::bitmap field. The default value assigned toGuiSwatchButtonCtrl::color is "1 1 1 1"( White ). The default/fallback image assigned to GuiSwatchButtonCtrl::bitmap is "core/art/gui/images/transp_grid".
// Create a GuiSwatchButtonCtrl that calls randomFunction with its current color when clicked %swatchButton = new GuiSwatchButtonCtrl() { profile = "GuiInspectorSwatchButtonProfile"; command = "randomFunction( $ThisControl.color );"; };
| void GuiSwatchButtonCtrl::setColor | ( | string | newColor | ) |
Set the color of the swatch control.
| newColor | The new color string given to the swatch control in float format "r g b a". |
| ColorF GuiSwatchButtonCtrl::color |
The foreground color of GuiSwatchButtonCtrl.