diff options
Diffstat (limited to 'ClientHamr')
-rw-r--r-- | ClientHamr/GuiLua/test.skang | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ClientHamr/GuiLua/test.skang b/ClientHamr/GuiLua/test.skang index 0c37f92..432ab71 100644 --- a/ClientHamr/GuiLua/test.skang +++ b/ClientHamr/GuiLua/test.skang | |||
@@ -7,9 +7,12 @@ | |||
7 | 7 | ||
8 | -- This is a bit more verbose than I wanted. lol | 8 | -- This is a bit more verbose than I wanted. lol |
9 | local win = skang.window(500, 500, "G'day planet.", 'testWindow') | 9 | local win = skang.window(500, 500, "G'day planet.", 'testWindow') |
10 | skang.thingasm{win, 'quitter', 'Quits the skang window', types = 'widget', widget='"button", "Quit", 10, 10, 100, 50'} | 10 | skang.thingasm{win, 'quitter', 'Quits the skang window', types = 'widget', widget='"button", "Quit", 10, 10, 100, 30'} |
11 | win.W.quitter.action = 'skang.quit()' -- TODO Should look it up in ThingSpace.commands, and translat 'quit' into the Lua 'skang.quit()'? | 11 | win.W.quitter.action = 'skang.quit()' -- TODO Should look it up in ThingSpace.commands, and translat 'quit' into the Lua 'skang.quit()'? |
12 | 12 | ||
13 | skang.thingasm{win, 'ffuncer', 'Calls ffunc', types = 'widget', widget='"button", "ffunc()", 10, 40, 100, 30', action='test.ffunc(3, 4)'} | ||
14 | win.W.ffuncer.action = 'test.ffunc(3, 4)' | ||
15 | |||
13 | --other.foo = 'stuff' | 16 | --other.foo = 'stuff' |
14 | this.bar = 'things' | 17 | this.bar = 'things' |
15 | this.ffunc(1, 'two') | 18 | this.ffunc(1, 'two') |