aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ClientHamr/GuiLua/test.skang
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-04-20 04:51:19 +1000
committerDavid Walter Seikel2014-04-20 04:51:19 +1000
commit407dee6650c6fbb8506146eda91428155890c623 (patch)
tree13a63b74a71f5edb67c4c453d59111edb3a6f4fc /ClientHamr/GuiLua/test.skang
parentTrying to add widget actions, but it's broken somehow. Think maybe Keyed is ... (diff)
downloadSledjHamr-407dee6650c6fbb8506146eda91428155890c623.zip
SledjHamr-407dee6650c6fbb8506146eda91428155890c623.tar.gz
SledjHamr-407dee6650c6fbb8506146eda91428155890c623.tar.bz2
SledjHamr-407dee6650c6fbb8506146eda91428155890c623.tar.xz
Fix up widget action stuff.
Diffstat (limited to 'ClientHamr/GuiLua/test.skang')
-rw-r--r--ClientHamr/GuiLua/test.skang4
1 files changed, 1 insertions, 3 deletions
diff --git a/ClientHamr/GuiLua/test.skang b/ClientHamr/GuiLua/test.skang
index 340bb08..0c37f92 100644
--- a/ClientHamr/GuiLua/test.skang
+++ b/ClientHamr/GuiLua/test.skang
@@ -8,9 +8,7 @@
8-- This is a bit more verbose than I wanted. lol 8-- This is a bit more verbose than I wanted. lol
9local win = skang.window(500, 500, "G'day planet.", 'testWindow') 9local win = skang.window(500, 500, "G'day planet.", 'testWindow')
10skang.thingasm{win, 'quitter', 'Quits the skang window', types = 'widget', widget='"button", "Quit", 10, 10, 100, 50'} 10skang.thingasm{win, 'quitter', 'Quits the skang window', types = 'widget', widget='"button", "Quit", 10, 10, 100, 50'}
11skang.printTableStart(win.W.quitter, '', 'quitter') 11win.W.quitter.action = 'skang.quit()' -- TODO Should look it up in ThingSpace.commands, and translat 'quit' into the Lua 'skang.quit()'?
12win.W.quitter.action = 1
13win.W.quitter.action = 'quit' -- 'quit' is looked up in ThingSpace.commands, and translated into the Lua 'skang.quit()'.
14 12
15--other.foo = 'stuff' 13--other.foo = 'stuff'
16this.bar = 'things' 14this.bar = 'things'