KosJS: Replace static functions with dynamic

git-svn-id: svn://kolibrios.org@8477 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
maxcodehack
2020-12-26 12:19:29 +00:00
parent 0f14837705
commit f458b2c462
2 changed files with 60 additions and 24 deletions

View File

@@ -1,12 +1,36 @@
var button_text = 0
var button = 2
// Dynamic functions! //
//////////////////////////////////////////////////
function Delay(long)
{
KolibriSyscall(5, long, 0, 0, 0, 0)
}
function StartDraw()
{
KolibriSyscall(12, 1, 0, 0, 0, 0)
}
function EndDraw()
{
KolibriSyscall(12, 2, 0, 0, 0, 0)
}
function GetEvent()
{
return KolibriSyscallReturnEAX(10, 0, 0, 0, 0, 0)
}
//////////////////////////////////////////////////
function Redraw()
{
StartDraw()
WindowCreate(10, 40, 400, 200, "My window", 0xFFFFFF, 0x14)
WriteText("KolibriOS JS example", 15, 34, 0, 0x90000000, 0xFFFFFF)
ButtonCreate((150 << 16) + 100, (100 << 16) + 50, button, 0x177245)
// Delay(100)
WriteText("Click!", 155,115, 0, 0x91000000 | 0xFFFFFF)
WriteText(button_text, 15,100, 0, 0x92000000)
EndDraw()