From: John L. <jr...@us...> - 2006-12-01 06:25:50
|
Update of /cvsroot/wxlua/wxLua/bindings/wxstc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1213/wxLua/bindings/wxstc Modified Files: wxstc_datatypes.lua Log Message: removed TRUE/FALSE pushed into lua since lua has true/false now removed pointers to functions in wxLuaBinding, just use the member vars Index: wxstc_datatypes.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/wxstc_datatypes.lua,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** wxstc_datatypes.lua 2 Nov 2006 23:38:08 -0000 1.34 --- wxstc_datatypes.lua 1 Dec 2006 06:25:46 -0000 1.35 *************** *** 13,17 **** WXHANDLE = "void *", WXWidget = "unsigned long", - luaObject = "lua_State *", ["wxDateTime::wxDateTime_t"] = "unsigned short", wxDouble = "double", --- 13,16 ---- *************** *** 1798,1802 **** }, wxLog = { ! Condition = "(wxCHECK_VERSION(2,2,0) && !wxCHECK_VERSION(2,5,0) || WXWIN_COMPATIBILITY_2_4) && (wxLUA_USE_wxApp)", DefType = "class", Intrinsic = false, --- 1797,1801 ---- }, wxLog = { ! Condition = "(wxCHECK_VERSION(2,2,0) && !wxCHECK_VERSION(2,5,0) || (defined(WXWIN_COMPATIBILITY_2_4) && WXWIN_COMPATIBILITY_2_4)) && (wxUSE_LOG) && (wxLUA_USE_wxApp)", DefType = "class", Intrinsic = false, *************** *** 1823,1826 **** --- 1822,1830 ---- Name = "wxLuaObject", }, + wxLuaObject_Type = { + DefType = "enum", + Intrinsic = true, + Name = "wxLuaObject_Type", + }, wxLuaPrintout = { BaseClass = "wxPrintout", *************** *** 3298,3312 **** ["%wxchkver272"] = "wxCHECK_VERSION(2,7,2)", ["%wxchkver28"] = "wxCHECK_VERSION(2,8,0)", ! ["%wxcompat20"] = "WXWIN_COMPATIBILITY_2", ! ["%wxcompat22"] = "WXWIN_COMPATIBILITY_2_2", ! ["%wxcompat24"] = "WXWIN_COMPATIBILITY_2_4", ! ["%wxcompat26"] = "WXWIN_COMPATIBILITY_2_6", ! ["%wxcompat28"] = "WXWIN_COMPATIBILITY_2_8", ["%x11"] = "defined(__WXX11__)", ! WXWIN_COMPATIBILITY_2 = "WXWIN_COMPATIBILITY_2", ! WXWIN_COMPATIBILITY_2_2 = "WXWIN_COMPATIBILITY_2_2", ! WXWIN_COMPATIBILITY_2_4 = "WXWIN_COMPATIBILITY_2_4", ! WXWIN_COMPATIBILITY_2_6 = "WXWIN_COMPATIBILITY_2_6", ! WXWIN_COMPATIBILITY_2_8 = "WXWIN_COMPATIBILITY_2_8", wxLUA_USE_FL = "wxLUA_USE_FL", wxLUA_USE_Geometry = "wxLUA_USE_Geometry", --- 3302,3318 ---- ["%wxchkver272"] = "wxCHECK_VERSION(2,7,2)", ["%wxchkver28"] = "wxCHECK_VERSION(2,8,0)", ! ["%wxchkver_2_2"] = "wxCHECK_VERSION(2,2,0)", ! ["%wxchkver_2_5"] = "wxCHECK_VERSION(2,5,0)", ! ["%wxcompat20"] = "(defined(WXWIN_COMPATIBILITY_2) && WXWIN_COMPATIBILITY_2)", ! ["%wxcompat22"] = "(defined(WXWIN_COMPATIBILITY_2_2) && WXWIN_COMPATIBILITY_2_2)", ! ["%wxcompat24"] = "(defined(WXWIN_COMPATIBILITY_2_4) && WXWIN_COMPATIBILITY_2_4)", ! ["%wxcompat26"] = "(defined(WXWIN_COMPATIBILITY_2_6) && WXWIN_COMPATIBILITY_2_6)", ! ["%wxcompat28"] = "(defined(WXWIN_COMPATIBILITY_2_8) && WXWIN_COMPATIBILITY_2_8)", ["%x11"] = "defined(__WXX11__)", ! WXWIN_COMPATIBILITY_2 = "(defined(WXWIN_COMPATIBILITY_2) && WXWIN_COMPATIBILITY_2)", ! WXWIN_COMPATIBILITY_2_2 = "(defined(WXWIN_COMPATIBILITY_2_2) && WXWIN_COMPATIBILITY_2_2)", ! WXWIN_COMPATIBILITY_2_4 = "(defined(WXWIN_COMPATIBILITY_2_4) && WXWIN_COMPATIBILITY_2_4)", ! WXWIN_COMPATIBILITY_2_6 = "(defined(WXWIN_COMPATIBILITY_2_6) && WXWIN_COMPATIBILITY_2_6)", ! WXWIN_COMPATIBILITY_2_8 = "(defined(WXWIN_COMPATIBILITY_2_8) && WXWIN_COMPATIBILITY_2_8)", wxLUA_USE_FL = "wxLUA_USE_FL", wxLUA_USE_Geometry = "wxLUA_USE_Geometry", *************** *** 3343,3349 **** --- 3349,3357 ---- wxLUA_USE_wxDateSpan = "wxLUA_USE_wxDateSpan", wxLUA_USE_wxDateTime = "wxLUA_USE_wxDateTime", + wxLUA_USE_wxDateTimeHolidayAuthority = "wxLUA_USE_wxDateTimeHolidayAuthority", wxLUA_USE_wxDialog = "wxLUA_USE_wxDialog", wxLUA_USE_wxDir = "wxLUA_USE_wxDir", wxLUA_USE_wxDirDialog = "wxLUA_USE_wxDirDialog", + wxLUA_USE_wxDisplay = "wxLUA_USE_wxDisplay", wxLUA_USE_wxDragDrop = "wxLUA_USE_wxDragDrop", wxLUA_USE_wxFile = "wxLUA_USE_wxFile", *************** *** 3598,3601 **** --- 3606,3610 ---- wxUSE_UXTHEME_AUTO = "wxUSE_UXTHEME_AUTO", wxUSE_VALIDATORS = "wxUSE_VALIDATORS", + wxUSE_WAVE = "wxUSE_WAVE", wxUSE_WCHAR_T = "wxUSE_WCHAR_T", wxUSE_WCSRTOMBS = "wxUSE_WCSRTOMBS", |