45GUIInputInternalNode::GUIInputInternalNode(
53 const string& backgroundImage,
55 const GUIColor& backgroundImageEffectColorMul,
56 const GUIColor& backgroundImageEffectColorAdd,
63 const string& colorDisabled,
67 GUINode(screenNode, parentNode, id, flow, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScale9Grid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn)
74 if (this->font !=
nullptr) this->font->initialize();
85 Console::print(
string(
"GUIInputInternalNode::createMaxLength(): An error occurred: "));
86 Console::println(
string(exception.what()));
123 auto inputInternalController = required_dynamic_cast<GUIInputInternalController*>(this->
controller);
125 auto inputNodeController = required_dynamic_cast<GUIInputController*>(inputNode->getController());
126 auto disable = inputNodeController->isDisabled();
127 auto index = inputInternalController->getIndex();
128 auto selectionIndex = inputInternalController->getSelectionIndex();
129 if (
font !=
nullptr) {
135 inputInternalController->getOffset(),
138 selectionIndex == -1 || selectionIndex == index?-1:Math::min(selectionIndex, index),
139 selectionIndex == -1 || selectionIndex == index?-1:Math::max(selectionIndex, index),
140 inputNode->getBackgroundColor()
145 inputInternalController->isShowCursor() ==
true &&
147 (selectionIndex == -1 || selectionIndex == index)) {
156 guiRenderer->
addQuad(((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f, colorData[0], colorData[1], colorData[2], colorData[3], 0.0f, 1.0f, ((left + width) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f, colorData[0], colorData[1], colorData[2], colorData[3], 1.0f, 1.0f, ((left + width) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f, colorData[0], colorData[1], colorData[2], colorData[3], 1.0f, 0.0f, ((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f, colorData[0], colorData[1], colorData[2], colorData[3], 0.0f, 0.0f);
GUIElementNode * getFocussedNode()
static GUIFont * getFont(const string &applicationRootPath, const string &fileName)
Get font.
GUI element node conditions.
GUI node controller base class.
virtual void initialize()=0
Initialize controller after element has been created.
virtual void dispose()=0
Dispose controller.
GUINodeController * controller
friend class GUIInputInternalController
virtual void render(GUIRenderer *guiRenderer)
Render.
GUINode_ComputedConstraints computedConstraints
GUIScreenNode * screenNode
bool shouldRender()
Determine if to render.
GUIParentNode * getParentControllerNode()
virtual void dispose()
Dispose node.
GUI parent node base class thats supporting child nodes.
GUI screen node that represents a screen that can be rendered via GUI system.
const string & getApplicationRootPathName()
GUI Font A font implementation that will parse the output of the AngelCode font tool available at:
void drawString(GUIRenderer *guiRenderer, int x, int y, const MutableString &text, int offset, int length, const GUIColor &color, int selectionStartIndex=-1, int selectionEndIndex=-1, const GUIColor &backgroundColor=GUIColor::GUICOLOR_TRANSPARENT)
Draw string.
int getTextIndexX(const MutableString &text, int offset, int length, int index)
Get text index X of given text and index.
int getTextWidth(const MutableString &text)
Text width.
void bindTexture(int32_t textureId)
Bind texture.
void addQuad(float x1, float y1, float colorR1, float colorG1, float colorB1, float colorA1, float tu1, float tv1, float x2, float y2, float colorR2, float colorG2, float colorB2, float colorA2, float tu2, float tv2, float x3, float y3, float colorR3, float colorG3, float colorB3, float colorA3, float tu3, float tv3, float x4, float y4, float colorR4, float colorG4, float colorB4, float colorA4, float tu4, float tv4)
Add quad Note: quad vertices order 1 2 +-—+ | | | | +-—+ 4 3.
std::exception Exception
Exception base class.
GUI node computed constraints.
GUI node requested constraints entity.
GUI node scale 9 grid entity.