Pixel-Composer/scripts/textInput/textInput.gml

19 lines
450 B
Text
Raw Normal View History

2023-10-03 12:14:28 +07:00
function textInput(_input, _onModify) : widget() constructor {
input = _input;
onModify = _onModify;
side_button = noone;
2023-10-03 12:14:28 +07:00
selecting = false;
2023-03-08 20:59:54 +07:00
2023-12-18 10:40:21 +07:00
typing = false;
2023-03-08 20:59:54 +07:00
static _resetFocus = function() { resetFocus(); }
static onKey = function(key) {}
2023-11-01 14:10:25 +07:00
2023-11-27 17:40:28 +07:00
static setSideButton = function(_button) { #region
2023-11-01 14:10:25 +07:00
self.side_button = _button;
return self;
2023-11-27 17:40:28 +07:00
} #endregion
static breakCharacter = function(ch) { return ch == " " || ch == "\n"; }
2023-01-17 14:11:55 +07:00
}