MCPcopy Create free account
hub / github.com/Siv3D/OpenSiv3D / TextBox

Function TextBox

Siv3D/src/Siv3D/SimpleGUI/SivSimpleGUI.cpp:757–762  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

755 }
756
757 bool TextBox(TextEditState& text, const Vec2& pos, double width, const Optional<size_t>& maxChars, const bool enabled)
758 {
759 width = Max(width, MinTextBoxWidth);
760
761 return TextBoxAt(text, pos + Vec2{ width * 0.5, 18.0 }, width, maxChars, enabled);
762 }
763
764 bool TextBoxAt(TextEditState& text, const Vec2& center, const double _width, const Optional<size_t>& maxChars, const bool enabled)
765 {

Callers 2

TextBox1Function · 0.85
TextBox2Function · 0.85

Calls 2

TextBoxAtFunction · 0.85
MaxFunction · 0.50

Tested by

no test coverage detected