mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 05:53:53 +01:00
15 lines
331 B
Plaintext
15 lines
331 B
Plaintext
function textInput(_input, _onModify) : widget() constructor {
|
|
input = _input;
|
|
onModify = _onModify;
|
|
side_button = noone;
|
|
selecting = false;
|
|
|
|
static _resetFocus = function() { resetFocus(); }
|
|
|
|
static onKey = function(key) {}
|
|
|
|
static setSideButton = function(_button) {
|
|
self.side_button = _button;
|
|
return self;
|
|
}
|
|
} |