aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ClientHamr/GuiLua/skang.lua
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-04-18 14:14:36 +1000
committerDavid Walter Seikel2014-04-18 14:14:36 +1000
commit6e35e5b6e2335026cc13471d95829eaf124c2ba4 (patch)
tree61994cbe03d4a87cfb65bdb8f955b36911faf977 /ClientHamr/GuiLua/skang.lua
parentTODO and comment additions. (diff)
downloadSledjHamr-6e35e5b6e2335026cc13471d95829eaf124c2ba4.zip
SledjHamr-6e35e5b6e2335026cc13471d95829eaf124c2ba4.tar.gz
SledjHamr-6e35e5b6e2335026cc13471d95829eaf124c2ba4.tar.bz2
SledjHamr-6e35e5b6e2335026cc13471d95829eaf124c2ba4.tar.xz
Move clear() and quit() to GuiLua.c, and actually implement quit().
Diffstat (limited to 'ClientHamr/GuiLua/skang.lua')
-rw-r--r--ClientHamr/GuiLua/skang.lua12
1 files changed, 1 insertions, 11 deletions
diff --git a/ClientHamr/GuiLua/skang.lua b/ClientHamr/GuiLua/skang.lua
index 5dbf36f..8a882d2 100644
--- a/ClientHamr/GuiLua/skang.lua
+++ b/ClientHamr/GuiLua/skang.lua
@@ -991,21 +991,11 @@ thingasm('set', 'Set the current value of an existing Thing or metadata.', set,
991thingasm('nada', 'Do nothing.', function () --[[ This function intentionally left blank. ]] end) 991thingasm('nada', 'Do nothing.', function () --[[ This function intentionally left blank. ]] end)
992 992
993 993
994-- TODO - Some function stubs, for now. Fill them up later. Probably move the lot to GuiLua.c. 994-- TODO - Some function stubs, for now. Fill them up later.
995clear = function ()
996end
997
998skang = function (name) 995skang = function (name)
999end 996end
1000quit = function ()
1001end
1002 997
1003thingasm('clear', 'The current skin is cleared of all widgets.', clear)
1004thingasm('skang', 'Parse the contents of a skang file or URL.', skang, 'URL') 998thingasm('skang', 'Parse the contents of a skang file or URL.', skang, 'URL')
1005thingasm('quit', 'Quit, exit, remove thyself.', quit)
1006
1007-- TODO - This moved to the GuiLua.c, but it's not all there yet.
1008--thingasm{'window', 'The size and title of the application Frame.', window, 'x,y,name', acl='GGG'}
1009 999
1010 1000
1011moduleEnd(_M) 1001moduleEnd(_M)