From: John L. <jr...@us...> - 2006-05-03 22:52:20
|
Update of /cvsroot/wxlua/wxLua/bindings/wxstc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27806/wxLua/bindings/wxstc Modified Files: wxstc_datatypes.lua Log Message: don't track pushed wxWindows using EVT_DESTROY twice update geometry.i to 2.6.3 fix unary op - to use op_neg and fix binding operators in general update docs for op_neg Index: wxstc_datatypes.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/wxstc_datatypes.lua,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** wxstc_datatypes.lua 1 May 2006 22:20:25 -0000 1.17 --- wxstc_datatypes.lua 3 May 2006 22:52:17 -0000 1.18 *************** *** 409,412 **** --- 409,417 ---- Name = "wxClientData", }, + wxClientDataContainer = { + DefType = "class", + Intrinsic = false, + Name = "wxClientDataContainer", + }, wxClipboard = { BaseClass = "wxObject", *************** *** 942,946 **** }, wxFontList = { - BaseClass = "wxList", Condition = "wxLUA_USE_wxFontList", DefType = "class", --- 947,950 ---- *************** *** 1047,1051 **** }, ["wxGridCellAttr::wxAttrKind"] = { ! Condition = "(wxCHECK_VERSION(2,3,0)) && (wxLUA_USE_wxGrid)", DefType = "enum", Intrinsic = true, --- 1051,1055 ---- }, ["wxGridCellAttr::wxAttrKind"] = { ! Condition = "wxLUA_USE_wxGrid", DefType = "enum", Intrinsic = true, *************** *** 1058,1061 **** --- 1062,1079 ---- Name = "wxGridCellAttrProvider", }, + wxGridCellAutoWrapStringEditor = { + BaseClass = "wxGridCellTextEditor", + Condition = "wxLUA_USE_wxGrid", + DefType = "class", + Intrinsic = false, + Name = "wxGridCellAutoWrapStringEditor", + }, + wxGridCellAutoWrapStringRenderer = { + BaseClass = "wxGridCellStringRenderer", + Condition = "wxLUA_USE_wxGrid", + DefType = "class", + Intrinsic = false, + Name = "wxGridCellAutoWrapStringRenderer", + }, wxGridCellBoolEditor = { BaseClass = "wxGridCellEditor", *************** *** 1072,1075 **** --- 1090,1100 ---- Name = "wxGridCellBoolRenderer", }, + wxGridCellChoiceEditor = { + BaseClass = "wxGridCellEditor", + Condition = "wxLUA_USE_wxGrid", + DefType = "class", + Intrinsic = false, + Name = "wxGridCellChoiceEditor", + }, wxGridCellCoords = { Condition = "wxLUA_USE_wxGrid", *************** *** 1078,1082 **** --- 1103,1115 ---- Name = "wxGridCellCoords", }, + wxGridCellDateTimeRenderer = { + BaseClass = "wxGridCellStringRenderer", + Condition = "wxLUA_USE_wxGrid", + DefType = "class", + Intrinsic = false, + Name = "wxGridCellDateTimeRenderer", + }, wxGridCellEditor = { + BaseClass = "wxGridCellWorker", Condition = "wxLUA_USE_wxGrid", DefType = "class", *************** *** 1084,1087 **** --- 1117,1134 ---- Name = "wxGridCellEditor", }, + wxGridCellEnumEditor = { + BaseClass = "wxGridCellChoiceEditor", + Condition = "wxLUA_USE_wxGrid", + DefType = "class", + Intrinsic = false, + Name = "wxGridCellEnumEditor", + }, + wxGridCellEnumRenderer = { + BaseClass = "wxGridCellStringRenderer", + Condition = "wxLUA_USE_wxGrid", + DefType = "class", + Intrinsic = false, + Name = "wxGridCellEnumRenderer", + }, wxGridCellFloatEditor = { BaseClass = "wxGridCellTextEditor", *************** *** 1113,1116 **** --- 1160,1164 ---- }, wxGridCellRenderer = { + BaseClass = "wxGridCellWorker", Condition = "wxLUA_USE_wxGrid", DefType = "class", *************** *** 1132,1135 **** --- 1180,1190 ---- Name = "wxGridCellTextEditor", }, + wxGridCellWorker = { + BaseClass = "wxClientDataContainer", + Condition = "wxLUA_USE_wxGrid", + DefType = "class", + Intrinsic = false, + Name = "wxGridCellWorker", + }, wxGridEditorCreatedEvent = { BaseClass = "wxCommandEvent", |