From: John L. <jr...@us...> - 2005-11-24 06:38:25
|
Update of /cvsroot/wxlua/wxLua/bindings/wxwidgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5356/wxLua/bindings/wxwidgets Modified Files: defsutil.i wx.rules Removed Files: README.txt htmlwin.cpp htmlwin.h printing.cpp printing.h wxluawrap.i Log Message: remove more dead files add back univ platform for defsutils.i cleanup wx.rules add wxluaeditor, an embedded sample editor using wxSTEditor --- wxluawrap.i DELETED --- --- printing.cpp DELETED --- --- htmlwin.h DELETED --- Index: wx.rules =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/wx.rules,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** wx.rules 19 Nov 2005 23:58:49 -0000 1.3 --- wx.rules 24 Nov 2005 06:38:17 -0000 1.4 *************** *** 1,30 **** -- rules to build wxLua binding for parts/debuggermsw ! wxidepath="../" ! --cdluapath=wxidepath.."/parts/cdlua/" ! interfacedir=wxidepath.."/bindings/wxwidgets" ! outputdir=wxidepath.."/modules/wxbind/src" ! outputheaderdir=wxidepath.."/modules/wxbind/include" ! hook_namespace="wx" ! hook_precmp_header="wx/wxprec.h" ! hook_binding_class=hook_namespace.."_Binding" ! hook_define_file=hook_namespace.."_define" ! hook_define_fn="GetDefineList_"..hook_namespace ! hook_object_file=hook_namespace.."_object" ! hook_object_fn="GetObjectList_"..hook_namespace ! hook_event_file=hook_namespace.."_event" ! hook_event_fn="GetEventList_"..hook_namespace ! hook_builtin_file=hook_namespace.."_builtin" ! hook_builtin_fn="GetBuiltinList_"..hook_namespace ! hook_class_file=hook_namespace.."_class" ! hook_class_fn="GetClassList_"..hook_namespace ! hook_header_file="wxbind/include/wxbind.h" ! override_file="override.hpp" -- generate comments into code comment = true ! -- list of interface files interfaceFileList = { --- 1,31 ---- -- rules to build wxLua binding for parts/debuggermsw ! wxluapath="../" ! --cdluapath=wxluapath.."/parts/cdlua/" -- FIXME see genwxbind for this ! interfacedir = wxluapath.."/bindings/wxwidgets" ! outputdir = wxluapath.."/modules/wxbind/src" ! outputheaderdir = wxluapath.."/modules/wxbind/include" ! ! hook_namespace = "wx" -- lua namespace ! hook_precmp_header = "wx/wxprec.h" -- always #include this ! hook_binding_class = hook_namespace.."_Binding" -- wxLuaBinding class ! hook_define_file = hook_namespace.."_define" ! hook_define_fn = "GetDefineList_"..hook_namespace ! hook_object_file = hook_namespace.."_object" ! hook_object_fn = "GetObjectList_"..hook_namespace ! hook_event_file = hook_namespace.."_event" ! hook_event_fn = "GetEventList_"..hook_namespace ! hook_builtin_file = hook_namespace.."_builtin" ! hook_builtin_fn = "GetBuiltinList_"..hook_namespace ! hook_class_file = hook_namespace.."_class" ! hook_class_fn = "GetClassList_"..hook_namespace ! hook_header_file = "wxbind/include/wxbind.h" ! override_file = "override.hpp" -- bindings to override -- generate comments into code comment = true ! -- list of interface files to use to make the bindings interfaceFileList = { *************** *** 79,91 **** } ! -- additional bind conditions conditions["DOXYGEN_INCLUDE"] = "defined(DOXYGEN_INCLUDE)" - conditions["pmSUPPORT_OLD_FORMAT"] = "pmSUPPORT_OLD_FORMAT" - - conditions["wxLUA_USE_CODEDRAGON_COMPONENT"] = "wxLUA_USE_CODEDRAGON_COMPONENT" - conditions["wxLUA_USE_CODEDRAGON_DEBUGGER"] = "wxLUA_USE_CODEDRAGON_DEBUGGER" - conditions["wxLUA_USE_CODEDRAGON_DEBUGGERMSW"] = "wxLUA_USE_CODEDRAGON_DEBUGGERMSW" - conditions["wxLUA_USE_CODEDRAGON_EXEC"] = "wxLUA_USE_CODEDRAGON_EXEC" - conditions["wxLUA_USE_CODEDRAGON_GUIDE"] = "wxLUA_USE_CODEDRAGON_GUIDE" - conditions["wxLUA_USE_CODEDRAGON_IDE"] = "wxLUA_USE_CODEDRAGON_IDE" - conditions["wxLUA_USE_CODEDRAGON_WIZARD"] = "wxLUA_USE_CODEDRAGON_WIZARD" --- 80,83 ---- } ! -- you can add additional conditions here conditions["DOXYGEN_INCLUDE"] = "defined(DOXYGEN_INCLUDE)" Index: defsutil.i =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/defsutil.i,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** defsutil.i 19 Nov 2005 07:08:39 -0000 1.5 --- defsutil.i 24 Nov 2005 06:38:17 -0000 1.6 *************** *** 37,41 **** %endenum - // FIXME add wxProcess %class %delete %encapsulate wxProcess, wxEvtHandler wxProcess(wxEvtHandler *parent = NULL, int nId = wxID_ANY) --- 37,40 ---- *************** *** 139,143 **** %motif %define wxPlatformMotif %os2 %define wxPlatformOS2 ! // %univ %define wxPlatformUniv // FIXME add this back %x11 %define wxPlatformX11 %cocoa %define wxPlatformCocoa --- 138,142 ---- %motif %define wxPlatformMotif %os2 %define wxPlatformOS2 ! %univ %define wxPlatformUniv %x11 %define wxPlatformX11 %cocoa %define wxPlatformCocoa --- htmlwin.cpp DELETED --- --- README.txt DELETED --- --- printing.h DELETED --- |