mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
40 lines
959 B
Plaintext
40 lines
959 B
Plaintext
function textInput(_input, _onModify) : widget() constructor {
|
|
input = _input;
|
|
onModify = _onModify;
|
|
selecting = false;
|
|
auto_update = false;
|
|
|
|
typing = false;
|
|
|
|
parser_server = noone;
|
|
|
|
autocomplete_delay = 0;
|
|
autocomplete_modi = false;
|
|
use_autocomplete = true;
|
|
autocomplete_server = noone;
|
|
autocomplete_object = noone;
|
|
autocomplete_context = {};
|
|
|
|
function_guide_server = noone;
|
|
|
|
static _resetFocus = function() { resetFocus(); }
|
|
|
|
static onKey = function(key) {}
|
|
|
|
static setAutoUpdate = function() /*=>*/ { auto_update = true; return self; }
|
|
|
|
static setSideButton = function(_button) /*=>*/ { self.side_button = _button; return self; }
|
|
|
|
static breakCharacter = function(ch) /*=>*/ { return ch == " " || ch == "\n"; }
|
|
|
|
static clone = function() {
|
|
var _onModify = onModify;
|
|
onModify = noone;
|
|
|
|
var cln = variable_clone(self);
|
|
cln.onModify = _onModify;
|
|
onModify = _onModify;
|
|
|
|
return cln;
|
|
}
|
|
} |