From: John L. <jr...@us...> - 2006-11-02 23:38:12
|
Update of /cvsroot/wxlua/wxLua/bindings/wxstc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv27364/wxLua/bindings/wxstc Modified Files: wxstc_datatypes.lua Log Message: Added wxDisplay and friends Added more wxDateTimeXXX classes update to compile in wxWidgets 2.7.2 Index: wxstc_datatypes.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/wxstc_datatypes.lua,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** wxstc_datatypes.lua 1 Nov 2006 23:44:46 -0000 1.33 --- wxstc_datatypes.lua 2 Nov 2006 23:38:08 -0000 1.34 *************** *** 229,232 **** --- 229,238 ---- Name = "wxArrayTreeItemIds", }, + wxArrayVideoModes = { + Condition = "wxLUA_USE_wxDisplay && wxUSE_DISPLAY", + DefType = "class", + Intrinsic = false, + Name = "wxArrayVideoModes", + }, wxArtProvider = { BaseClass = "wxObject", *************** *** 619,622 **** --- 625,634 ---- Name = "wxDC", }, + wxDCClipper = { + Condition = "wxLUA_USE_wxDC", + DefType = "class", + Intrinsic = false, + Name = "wxDCClipper", + }, wxDataFormat = { Condition = "wxLUA_USE_wxDataObject", *************** *** 713,716 **** --- 725,747 ---- Name = "wxDateTime::WeekDay", }, + wxDateTimeArray = { + Condition = "wxLUA_USE_wxDateTime", + DefType = "class", + Intrinsic = false, + Name = "wxDateTimeArray", + }, + wxDateTimeHolidayAuthority = { + Condition = "wxLUA_USE_wxDateTimeHolidayAuthority", + DefType = "class", + Intrinsic = false, + Name = "wxDateTimeHolidayAuthority", + }, + wxDateTimeWorkDays = { + BaseClass = "wxDateTimeHolidayAuthority", + Condition = "wxLUA_USE_wxDateTimeHolidayAuthority", + DefType = "class", + Intrinsic = false, + Name = "wxDateTimeWorkDays", + }, wxDialog = { BaseClass = "wxTopLevelWindow", *************** *** 738,741 **** --- 769,778 ---- Name = "wxDirection", }, + wxDisplay = { + Condition = "wxLUA_USE_wxDisplay && wxUSE_DISPLAY", + DefType = "class", + Intrinsic = false, + Name = "wxDisplay", + }, wxDocChildFrame = { BaseClass = "wxFrame", *************** *** 3038,3041 **** --- 3075,3084 ---- Name = "wxValidator", }, + wxVideoMode = { + Condition = "wxLUA_USE_wxDisplay && wxUSE_DISPLAY", + DefType = "class", + Intrinsic = false, + Name = "wxVideoMode", + }, wxView = { BaseClass = "wxEvtHandler", |