| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #include "GUI/BsGUITextField.h"
- #include "GUI/BsGUILayoutX.h"
- #include "GUI/BsGUILabel.h"
- #include "GUI/BsGUIInputBox.h"
- #include "UndoRedo/BsUndoRedo.h"
- using namespace std::placeholders;
- namespace bs
- {
- const UINT32 GUITextField::DEFAULT_LABEL_WIDTH = 100;
- GUITextField::GUITextField(const PrivatelyConstruct& dummy, bool multiline, const GUIContent& labelContent,
- UINT32 labelWidth, const String& style, const GUIDimensions& dimensions, bool withLabel)
- :GUIElementContainer(dimensions, style),
- mInputBox(nullptr), mLayout(nullptr), mLabel(nullptr), mHasInputFocus(false), mValue("")
- {
- mLayout = GUILayoutX::create();
- _registerChildElement(mLayout);
- if (withLabel)
- {
- mLabel = GUILabel::create(labelContent, GUIOptions(GUIOption::fixedWidth(labelWidth)), getSubStyleName(getLabelStyleType()));
- mLayout->addElement(mLabel);
- }
- mInputBox = GUIInputBox::create(multiline, getSubStyleName(getInputStyleType()));
- mLayout->addElement(mInputBox);
- mInputBox->onValueChanged.connect(std::bind(&GUITextField::valueChanged, this, _1));
- mInputBox->onFocusChanged.connect(std::bind(&GUITextField::focusChanged, this, _1));
- mInputBox->onConfirm.connect(std::bind(&GUITextField::inputConfirmed, this));
- }
- GUITextField* GUITextField::create(bool multiline, const GUIContent& labelContent, UINT32 labelWidth, const GUIOptions& options,
- const String& style)
- {
- const String* curStyle = &style;
- if (*curStyle == StringUtil::BLANK)
- curStyle = &GUITextField::getGUITypeName();
- return bs_new<GUITextField>(PrivatelyConstruct(), multiline, labelContent, labelWidth, *curStyle,
- GUIDimensions::create(options), true);
- }
- GUITextField* GUITextField::create(bool multiline, const GUIContent& labelContent, const GUIOptions& options,
- const String& style)
- {
- const String* curStyle = &style;
- if (*curStyle == StringUtil::BLANK)
- curStyle = &GUITextField::getGUITypeName();
- return bs_new<GUITextField>(PrivatelyConstruct(), multiline, labelContent, DEFAULT_LABEL_WIDTH, *curStyle,
- GUIDimensions::create(options), true);
- }
- GUITextField* GUITextField::create(bool multiline, const HString& labelText, UINT32 labelWidth, const GUIOptions& options,
- const String& style)
- {
- const String* curStyle = &style;
- if (*curStyle == StringUtil::BLANK)
- curStyle = &GUITextField::getGUITypeName();
- return bs_new<GUITextField>(PrivatelyConstruct(), multiline, GUIContent(labelText), labelWidth, *curStyle,
- GUIDimensions::create(options), true);
- }
- GUITextField* GUITextField::create(bool multiline, const HString& labelText, const GUIOptions& options,
- const String& style)
- {
- const String* curStyle = &style;
- if (*curStyle == StringUtil::BLANK)
- curStyle = &GUITextField::getGUITypeName();
- return bs_new<GUITextField>(PrivatelyConstruct(), multiline, GUIContent(labelText), DEFAULT_LABEL_WIDTH, *curStyle,
- GUIDimensions::create(options), true);
- }
- GUITextField* GUITextField::create(bool multiline, const GUIOptions& options, const String& style)
- {
- const String* curStyle = &style;
- if (*curStyle == StringUtil::BLANK)
- curStyle = &GUITextField::getGUITypeName();
- return bs_new<GUITextField>(PrivatelyConstruct(), multiline, GUIContent(), 0, *curStyle,
- GUIDimensions::create(options), false);
- }
- GUITextField* GUITextField::create(bool multiline, const GUIContent& labelContent, UINT32 labelWidth,
- const String& style)
- {
- const String* curStyle = &style;
- if (*curStyle == StringUtil::BLANK)
- curStyle = &GUITextField::getGUITypeName();
- return bs_new<GUITextField>(PrivatelyConstruct(), multiline, labelContent, labelWidth, *curStyle,
- GUIDimensions::create(), true);
- }
- GUITextField* GUITextField::create(bool multiline, const GUIContent& labelContent,
- const String& style)
- {
- const String* curStyle = &style;
- if (*curStyle == StringUtil::BLANK)
- curStyle = &GUITextField::getGUITypeName();
- return bs_new<GUITextField>(PrivatelyConstruct(), multiline, labelContent, DEFAULT_LABEL_WIDTH, *curStyle,
- GUIDimensions::create(), true);
- }
- GUITextField* GUITextField::create(bool multiline, const HString& labelText, UINT32 labelWidth,
- const String& style)
- {
- const String* curStyle = &style;
- if (*curStyle == StringUtil::BLANK)
- curStyle = &GUITextField::getGUITypeName();
- return bs_new<GUITextField>(PrivatelyConstruct(), multiline, GUIContent(labelText), labelWidth, *curStyle,
- GUIDimensions::create(), true);
- }
- GUITextField* GUITextField::create(bool multiline, const HString& labelText,
- const String& style)
- {
- const String* curStyle = &style;
- if (*curStyle == StringUtil::BLANK)
- curStyle = &GUITextField::getGUITypeName();
- return bs_new<GUITextField>(PrivatelyConstruct(), multiline, GUIContent(labelText), DEFAULT_LABEL_WIDTH, *curStyle,
- GUIDimensions::create(), true);
- }
- GUITextField* GUITextField::create(bool multiline, const String& style)
- {
- const String* curStyle = &style;
- if (*curStyle == StringUtil::BLANK)
- curStyle = &GUITextField::getGUITypeName();
- return bs_new<GUITextField>(PrivatelyConstruct(), multiline, GUIContent(), 0, *curStyle,
- GUIDimensions::create(), false);
- }
- void GUITextField::setValue(const String& value)
- {
- mValue = value;
- mInputBox->setText(value);
- }
- void GUITextField::setTint(const Color& color)
- {
- if (mLabel != nullptr)
- mLabel->setTint(color);
- mInputBox->setTint(color);
- }
- void GUITextField::_setValue(const String& value, bool triggerEvent)
- {
- setValue(value);
- if (triggerEvent)
- onValueChanged(value);
- }
- void GUITextField::_updateLayoutInternal(const GUILayoutData& data)
- {
- mLayout->_setLayoutData(data);
- mLayout->_updateLayoutInternal(data);
- }
- Vector2I GUITextField::_getOptimalSize() const
- {
- return mLayout->_getOptimalSize();
- }
- void GUITextField::styleUpdated()
- {
- if (mLabel != nullptr)
- mLabel->setStyle(getSubStyleName(getLabelStyleType()));
- mInputBox->setStyle(getSubStyleName(getInputStyleType()));
- }
- void GUITextField::valueChanged(const String& newValue)
- {
- _setValue(newValue, true);
- }
- void GUITextField::focusChanged(bool focus)
- {
- if (focus)
- {
- mHasInputFocus = true;
- onFocusChanged(true);
- }
- else
- {
- mHasInputFocus = false;
- onFocusChanged(false);
- }
- }
- void GUITextField::inputConfirmed()
- {
- onConfirm();
- }
- const String& GUITextField::getGUITypeName()
- {
- static String typeName = "GUITextField";
- return typeName;
- }
- const String& GUITextField::getInputStyleType()
- {
- static String LABEL_STYLE_TYPE = "EditorFieldInput";
- return LABEL_STYLE_TYPE;
- }
- const String& GUITextField::getLabelStyleType()
- {
- static String LABEL_STYLE_TYPE = "EditorFieldLabel";
- return LABEL_STYLE_TYPE;
- }
- }
|