Update of /cvsroot/wxlua/wxLua/bindings
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31187/wxLua/bindings
Modified Files:
genidocs.lua genwxbind.lua
Log Message:
Fix wxAnimationCtrl condition
add more controls to controls.wx.lua sample and show events for everything
Index: genidocs.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/genidocs.lua,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** genidocs.lua 17 Jun 2007 17:17:36 -0000 1.7
--- genidocs.lua 20 Jun 2007 22:57:33 -0000 1.8
***************
*** 34,37 ****
--- 34,42 ----
colours.blkcomment = "888888" -- grey
+ colours.in_manual = "AAFFAA" -- for table showing classes
+ colours.in_wxlua = "AAFFAA"
+ colours.not_in_manual = "FFAAAA"
+ colours.not_in_wxlua = "FFAAAA"
+
-- ----------------------------------------------------------------------------
-- Dummy function that genwxbind.lua has and the XXX_rules.lua might use
***************
*** 164,167 ****
--- 169,173 ----
table.insert(fileTable, "<tr>")
+ -- link to class in html file
if allClasses[cname] then
table.insert(fileTable, "<td>"..MakeLink(cname)) -- optional </td>
***************
*** 170,185 ****
end
if completeClassRefTable and completeClassRefTable[cname] then
! table.insert(fileTable, "<td align=\"center\">X")
else
! table.insert(fileTable, "<td> ")
end
if allClasses[cname] then
! table.insert(fileTable, "<td align=\"center\">X")
else
! table.insert(fileTable, "<td> ")
end
if msgForClassInIndex and msgForClassInIndex[cname] then
table.insert(fileTable, "<td>"..msgForClassInIndex[cname])
--- 176,194 ----
end
+ -- in "manual" or complete list of classes
if completeClassRefTable and completeClassRefTable[cname] then
! table.insert(fileTable, "<td align=\"center\" bgcolor="..colours.in_manual..">X")
else
! table.insert(fileTable, "<td bgcolor="..colours.not_in_manual.."> ")
end
+ -- wrapped by wxLua
if allClasses[cname] then
! table.insert(fileTable, "<td align=\"center\" bgcolor="..colours.in_wxlua..">X")
else
! table.insert(fileTable, "<td bgcolor="..colours.not_in_wxlua.."> ")
end
+ -- note about the class
if msgForClassInIndex and msgForClassInIndex[cname] then
table.insert(fileTable, "<td>"..msgForClassInIndex[cname])
Index: genwxbind.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/genwxbind.lua,v
retrieving revision 1.131
retrieving revision 1.132
diff -C2 -d -r1.131 -r1.132
*** genwxbind.lua 19 Jun 2007 22:26:45 -0000 1.131
--- genwxbind.lua 20 Jun 2007 22:57:33 -0000 1.132
***************
*** 909,913 ****
preprocConditionTable["wxLUA_USE_wxAboutDialog"] = "wxLUA_USE_wxAboutDialog"
preprocConditionTable["wxLUA_USE_wxAcceleratorTable"] = "wxLUA_USE_wxAcceleratorTable"
! preprocConditionTable["wxLUA_USE_Animation"] = "wxLUA_USE_Animation"
preprocConditionTable["wxLUA_USE_wxApp"] = "wxLUA_USE_wxApp"
preprocConditionTable["wxLUA_USE_wxArrayInt"] = "wxLUA_USE_wxArrayInt"
--- 909,913 ----
preprocConditionTable["wxLUA_USE_wxAboutDialog"] = "wxLUA_USE_wxAboutDialog"
preprocConditionTable["wxLUA_USE_wxAcceleratorTable"] = "wxLUA_USE_wxAcceleratorTable"
! preprocConditionTable["wxLUA_USE_wxAnimation"] = "wxLUA_USE_wxAnimation"
preprocConditionTable["wxLUA_USE_wxApp"] = "wxLUA_USE_wxApp"
preprocConditionTable["wxLUA_USE_wxArrayInt"] = "wxLUA_USE_wxArrayInt"
|