From: John L. <jr...@us...> - 2007-06-01 18:19:51
|
Update of /cvsroot/wxlua/wxLua/docs In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv2839/wxLua/docs Modified Files: dirs.txt wxluaref.html Log Message: Fix Makefiles to work for genwxbind.lua w/ cygwin in MSW Make all the %override comments in the bindings uniform and fix the parameters actually used for them. Index: wxluaref.html =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/wxluaref.html,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** wxluaref.html 31 May 2007 21:38:40 -0000 1.19 --- wxluaref.html 1 Jun 2007 18:19:46 -0000 1.20 *************** *** 970,974 **** <br> <font color=#CC3300> // <i>%override</i> void wxFrame::SetStatusWidths(lua table with number indexes and values)</font><br> ! // virtual void SetStatusWidths(int n, int *widths)<br> virtual void SetStatusWidths(LuaTable intTable)<br> <br> --- 970,974 ---- <br> <font color=#CC3300> // <i>%override</i> void wxFrame::SetStatusWidths(lua table with number indexes and values)</font><br> ! // C++ Func: virtual void SetStatusWidths(int n, int *widths)<br> virtual void SetStatusWidths(LuaTable intTable)<br> [...1370 lines suppressed...] <br> --- 16610,16614 ---- <br> <font color=#CC3300> // <i>%override</i> [lua string styleBytes] SetStyleBytes(int length, lua string styleBytes)</font><br> ! // C++ Func: void SetStyleBytes(int length, char* styleBytes);<br> void SetStyleBytes(int length, char* styleBytes);<br> <br> *************** *** 17751,17755 **** //#else<br> <font color=#CC3300> // <i>%override</i> [int startPos, int endPos] GetSelection()</font><br> ! // void GetSelection(int* startPos, int* endPos);<br> void GetSelection();<br> //#endif<br> --- 17755,17759 ---- //#else<br> <font color=#CC3300> // <i>%override</i> [int startPos, int endPos] GetSelection()</font><br> ! // C++ Func: void GetSelection(int* startPos, int* endPos);<br> void GetSelection();<br> //#endif<br> Index: dirs.txt =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/dirs.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** dirs.txt 11 Dec 2006 00:09:15 -0000 1.4 --- dirs.txt 1 Jun 2007 18:19:46 -0000 1.5 *************** *** 1,3 **** ! 11/20/2005 This is a description of the directory structure of wxLua. --- 1,3 ---- ! 5/31/2007 This is a description of the directory structure of wxLua. *************** *** 7,70 **** ------------------------------------------------------------------------------- - wxLua/ - /art/ - images and icons are here, preferably in XPM format - /apps/ - c/c++ application code is here - /build/ - build for all applications - /wxlua/ - wxLua the main IDE for wxLua (the "Standalone" program) - /embedded/ - TODO - an embedded sample - /runtime/ - TODO - a stripped down runtime for wxLua - /bin/ - output binaries are built here, lua for example ! /bindings/ - input *.i files to make the "wrappers" ! genwxluabind.lua - the main wrapper file, converts *.i to *.cpp ! /wxwidgets/ - wrapper files for wxWidgets ! /bit/ - TODO - the bitwise lib for lua ! /build/ - cmake, bakefile stuff here, may call sub build dirs ! /docs/ - any generic docs go here ! /lib/ - output libs are built here, wxlualib for example ! /modules/ - c/c++ code for wxlua ! /build/ - build files for all of this ! /lua/ - lua itself ! /include/ ! /src/ ! /the rest of lua.../ ! /wxlua/ - the wxlua library itself ! /include/ - internal.h, interp.h, library.h, callback.h ! /src/ - internal.cpp, interp.cpp, library.cpp ! /wxluasocket/ - lua to cpp sockets (the original lua sockets) ! /include/ - debugio.h, dserver.h, socket.h ! /src/ - debugio.cpp, dserver.cpp, socket.cpp ! /wxluadebug/ - mechanism for getting/showing info from lua ! /include/ - debug.h, stacktree, splittree ! /src/ - debug.cpp, stacktree, splittree ! /wxxmlrpc/ - TODO - ? ! /include/ - ! /src/ - ! /wxdebuggernub/ - TODO - this is a generic lib for xmlrpc? don"t prepend wxlua to it ! /include/ - ! /src/ - ! /wxluadebugger/ - TODO - ? this depends on wxlua so prepend wxlua to it ! /include/ - ! /src/ - ! /samples/ - sample wxlua programs ! /name/ - TODO - any multifile sample gets its own dir ! /utils/ - generic utils ! /bin2c/ - a program to convert a text file to an unsigned char array ! ------------------------------------------------------------------------------ ! DEAD UNUSED DIRECTORIES (to be removed by Sourceforge) ! ------------------------------------------------------------------------------ ! wxLua/ ! /import/ - see /bindings/... ! /include/ - see /modules/[module name]/include ! /src/ - see /modules/[module name]/src ! /lua/ - see /modules/lua/* ! /wrappers/ - see /modules/wxbind ! /wxlua/ - see /modules/wxlua ------------------------------------------------------------------------------ --- 7,77 ---- ------------------------------------------------------------------------------- ! /apps/ - C/C++ application code is here ! /build/ - Build files for all libraries and applications ! /wxlua/ - wxLua the main IDE for wxLua (the "Standalone" program) ! /wxluaedit/ - wxLuaEdit IDE ! /wxluafreeze/ - A program to execute wxLua code ! /wxluacan/ - A sample of how to write your own bindings ! /art/ - Images and icons are here, preferably in XPM format ! /bin/ - Output executables are built here ! /bindings/ - Input *.i files to make the "wrappers" ! genwxluabind.lua - Binding generator, converts *.i to *.cpp ! /wxwidgets/ - Wrapper files for wxWidgets ! /wxstc/ - Wrapper files for the wxStyledTextCtrl ! /wxluasocket/ - Wrapper files for bindings for wxluasocket ! /build/ - Build files to compile wxLua ! /autoconf/ - Files for generating the configure script ! /bakefiles/ - Bakefile files to generate the build files ! /kdevelop/ - KDevelop project files ! /msvc6/ - MS Visual Studio 6 build files ! /msw/ - Makefiles for Bcc, Gcc, Vc, Watcom ! /distrib/ - Files to make a wxLua distribution with ! /autopackage/ ! /innosetup/ ! /macbundle/ ! /docs/ - Docs for wxLua ! /doxygen/ - Output dir for doxygen using doxygen.cfg file. ! ! /lib/ - Output libs are built here ! ! /modules/ - C/C++ code for wxlua libraries ! /build/ - build files for modules ! /lua/ - lua itself ! /include/ - headers from src copied here for install routine ! /src/ ! /the rest of lua.../ ! /luamodule/ - A lua module, shared library, to load using require. ! /include/ ! /src/ ! /wxbind/ - Output from /bindings/wxwidgets ! /include/ ! /src/ ! /wxbindstc/ - Output from /bindings/wxstc ! /include/ ! /src/ ! /wxlua/ - the main wxlua library itself ! /include/ - ! /src/ - ! /wxluadebug/ - Debug code, to show stack, and variables ! /include/ - ! /src/ - ! /wxluasocket/ - Remote debugging over TCP code ! /include/ - ! /src/ - ! ! /samples/ - Sample wxlua programs ! ! /util/ - Utilility programs ! /bin2c/ - A lua program to convert files to an unsigned char array ! /wrapmodule/ - A lua script to "wrap" the sample to allow them to run ! using the /modules/luamodule by properly initializing ! wxWidgets after running the lua code. ------------------------------------------------------------------------------ *************** *** 73,77 **** wxLua/ ! Embedded/ - moved to apps/xxx FIXME Examples/ - moved to samples Import/ - moved to bindings/wxwidgets --- 80,84 ---- wxLua/ ! Embedded/ - moved to apps/wxluaedit Examples/ - moved to samples Import/ - moved to bindings/wxwidgets *************** *** 87,103 **** wxLua/modules/wxlua ! internal.h wxLuaInternals.h wxlcallb.h wxLuaCallback.h ! wxlintrp.h wxLuaInterpreter.h wxlua.h wxLua.h wxLua/modules/wxluadebug ! debug.h wxLuaDebug.h ! splttree.h wxLuaSplitTree.h ! staktree.h wxLuaStackTree.h wxLua/modules/wxluasocket ! dservice.h wxLuaDebuggerService.h ! wxldbgio.h wxLuaDebugIO.h wxldserv.h wxLuaDebugServer.h removed wxLuaLibrary.h - debugger is a wxEvtHandler now --- 94,110 ---- wxLua/modules/wxlua ! wxlstate.h wxLuaInternals.h wxlcallb.h wxLuaCallback.h ! wxlstate.h wxLuaInterpreter.h wxlua.h wxLua.h wxLua/modules/wxluadebug ! wxldebug.h wxLuaDebug.h ! removed wxLuaSplitTree.h ! wxlstack.h wxLuaStackTree.h wxLua/modules/wxluasocket ! removed wxLuaDebuggerService.h ! wxlsock.h wxLuaDebugIO.h wxldserv.h wxLuaDebugServer.h removed wxLuaLibrary.h - debugger is a wxEvtHandler now *************** *** 113,128 **** wxLua/modules/wxlua ! internal.cpp wxLuaInternals.cpp ! wxlintrp.cpp wxLuaInterpreter.cpp wxlcallb.cpp taken out of wxLuaInternals.cpp wxLua/modules/wxluadebug ! debug.cpp wxLuaDebug.cpp ! splttree.cpp wxLuaSplitTree.cpp ! staktree.cpp wxLuaStackTree.cpp wxLua/modules/wxluasocket ! dservice.cpp wxLuaDebuggerService.cpp ! wxldbgio.cpp wxLuaDebugIO.cpp wxldserv.cpp wxLuaDebugServer.cpp removed wxLuaLibrary.cpp --- 120,135 ---- wxLua/modules/wxlua ! wxlstate.cpp wxLuaInternals.cpp ! wxlstate.cpp wxLuaInterpreter.cpp wxlcallb.cpp taken out of wxLuaInternals.cpp wxLua/modules/wxluadebug ! wxldebug.cpp wxLuaDebug.cpp ! removed wxLuaSplitTree.cpp ! wxlstack.cpp wxLuaStackTree.cpp wxLua/modules/wxluasocket ! removed wxLuaDebuggerService.cpp ! wxlsock.cpp wxLuaDebugIO.cpp wxldserv.cpp wxLuaDebugServer.cpp removed wxLuaLibrary.cpp |