From: John L. <jr...@us...> - 2007-06-27 03:12:00
|
Update of /cvsroot/wxlua/wxLua/bindings/wxstc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv13326/wxLua/bindings/wxstc Modified Files: wxstc_datatypes.lua Log Message: Unicode compilation fix for genwxbind Add wxRenderer to bindings Index: wxstc_datatypes.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/wxstc_datatypes.lua,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -d -r1.68 -r1.69 *** wxstc_datatypes.lua 26 Jun 2007 03:22:04 -0000 1.68 --- wxstc_datatypes.lua 27 Jun 2007 03:11:27 -0000 1.69 *************** *** 1689,1692 **** --- 1689,1705 ---- Name = "wxHTTP", }, + wxHeaderButtonParams = { + Condition = "wxLUA_USE_wxRenderer", + DefType = "struct", + Encapsulate = true, + IsNumber = false, + Name = "wxHeaderButtonParams", + }, + wxHeaderSortIconType = { + Condition = "wxLUA_USE_wxRenderer", + DefType = "enum", + IsNumber = true, + Name = "wxHeaderSortIconType", + }, wxHelpController = { BaseClass = "wxHelpControllerBase", *************** *** 2092,2095 **** --- 2105,2109 ---- Condition = "wxUSE_INTL", DefType = "struct", + Encapsulate = true, IsNumber = false, Name = "wxLanguageInfo", *************** *** 3004,3007 **** --- 3018,3041 ---- Name = "wxRelationship", }, + wxRendererNative = { + Condition = "wxLUA_USE_wxRenderer", + DefType = "class", + Encapsulate = true, + IsNumber = false, + Name = "wxRendererNative", + }, + wxRendererVersion = { + Condition = "wxLUA_USE_wxRenderer", + DefType = "struct", + Encapsulate = true, + IsNumber = false, + Name = "wxRendererVersion", + }, + ["wxRendererVersion::dummy"] = { + Condition = "wxLUA_USE_wxRenderer", + DefType = "enum", + IsNumber = true, + Name = "wxRendererVersion::dummy", + }, wxSashDragStatus = { Condition = "wxLUA_USE_wxSashWindow && wxUSE_SASH", *************** *** 3286,3289 **** --- 3320,3330 ---- Name = "wxSplitterEvent", }, + wxSplitterRenderParams = { + Condition = "wxLUA_USE_wxRenderer", + DefType = "struct", + Encapsulate = true, + IsNumber = false, + Name = "wxSplitterRenderParams", + }, wxSplitterWindow = { BaseClass = "wxWindow", *************** *** 4044,4047 **** --- 4085,4089 ---- ["%win"] = "defined(__WXMSW__)", ["%wince"] = "defined(__WXWINCE__)", + ["%wxHAS_NATIVE_RENDERER"] = "defined(wxHAS_NATIVE_RENDERER)", ["%wxchkver_2_4"] = "wxCHECK_VERSION(2,4,0)", ["%wxchkver_2_6"] = "wxCHECK_VERSION(2,6,0)", *************** *** 4161,4164 **** --- 4203,4207 ---- wxLUA_USE_wxRegEx = "wxLUA_USE_wxRegEx", wxLUA_USE_wxRegion = "wxLUA_USE_wxRegion", + wxLUA_USE_wxRenderer = "wxLUA_USE_wxRenderer", wxLUA_USE_wxSashWindow = "wxLUA_USE_wxSashWindow", wxLUA_USE_wxScrollBar = "wxLUA_USE_wxScrollBar", |