54ColorPickerScreenController::ColorPickerScreenController()
71 screenNode = GUIParser::parse(
"resources/engine/gui",
"popup_colorpicker.xml");
85 Console::print(
string(
"ColorPickerScreenController::initialize(): An error occurred: "));
86 Console::println(
string(exception.what()));
114 if (node->
getId() ==
"colorpicker_red") {
119 if (node->
getId() ==
"colorpicker_green") {
124 if (node->
getId() ==
"colorpicker_blue") {
129 if (node->
getId() ==
"colorpicker_alpha") {
134 if (node->
getId() ==
"colorpicker_hex") {
136 if (StringTools::startsWith(hexString,
"#") ==
true) hexString = StringTools::substring(hexString, 1);
137 if (hexString.size() >= 2) {
138 color.
setRed(
static_cast<float>(Hex::decodeInt(StringTools::substring(hexString, 0, 2)) / 255.0f));
140 if (hexString.size() >= 4) {
141 color.
setGreen(
static_cast<float>(Hex::decodeInt(StringTools::substring(hexString, 2, 4)) / 255.0f));
143 if (hexString.size() >= 6) {
144 color.
setBlue(
static_cast<float>(Hex::decodeInt(StringTools::substring(hexString, 4, 6)) / 255.0f));
146 if (hexString.size() >= 8) {
147 color.
setAlpha(
static_cast<float>(Hex::decodeInt(StringTools::substring(hexString, 6, 8)) / 255.0f));
151 if (node->
getId() ==
"slider_colorpicker_brightness") {
154 auto brightnessAdjustment = 1.0f + (newBrightness - currentBrightness);
167 if (StringTools::startsWith(node->
getId(),
"colorpicker_caption_close_") ==
true) {
177 if (node->
getId() ==
"colorpicker_hex") {
196 while (hexRed.size() < 2) hexRed =
"0" + hexRed;
197 while (hexGreen.size() < 2) hexGreen =
"0" + hexGreen;
198 while (hexBlue.size() < 2) hexBlue =
"0" + hexBlue;
199 while (hexAlpha.size() < 2) hexAlpha =
"0" + hexAlpha;
Color 4 base definition class.
void setGreen(float green)
void setAlpha(float alpha)
GUI node controller base class.
virtual void setValue(const MutableString &value)=0
Set value.
virtual const MutableString & getValue()=0
void setController(GUINodeController *controller)
Set up node controller.
GUINodeController * getController()
GUI screen node that represents a screen that can be rendered via GUI system.
void setVisible(bool visible)
Set visible.
void addChangeListener(GUIChangeListener *listener)
Add change listener.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void addActionListener(GUIActionListener *listener)
Add action listener.
void addFocusListener(GUIFocusListener *listener)
Add focus listener.
Integer to hex string conversion utility class.
const string & getString() const
std::exception Exception
Exception base class.
GUI action listener interface.
GUI change listener interface.
GUI focus listener interface.
virtual void performAction()=0
Perform action.