From: John L. <jr...@us...> - 2006-05-03 04:45:55
|
Update of /cvsroot/wxlua/website In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16621/website Modified Files: index.php screenshots.php support.php Log Message: slight updates Index: support.php =================================================================== RCS file: /cvsroot/wxlua/website/support.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** support.php 3 May 2006 04:40:18 -0000 1.6 --- support.php 3 May 2006 04:45:51 -0000 1.7 *************** *** 28,32 **** <p>It depends: <a href="http://www.wxpython.org/">wxPython</a> has a much larger footprint and greater overhead than wxLua, but it does provide more add-ons from the Python standard library.</p> <p>On the other hand, wxLua is as large as the wxWidgets library + ~100K for lua and can be easily interfaced with C++ code making it a powerful extension language (which is exactly the intent of its designers); look at <a href="http://www.lua.org/about.html">this page</a> for more info.</p> ! <p>In conclusion, if you want to write an entire application in a scripting language and you need things supported by Python which are not present out-of-the-box in wxLua, then you should use wxPython. Instead, if you want to write small applications with little overhead or extend your C++ applications, go for wxLua.</p> </div> --- 28,32 ---- <p>It depends: <a href="http://www.wxpython.org/">wxPython</a> has a much larger footprint and greater overhead than wxLua, but it does provide more add-ons from the Python standard library.</p> <p>On the other hand, wxLua is as large as the wxWidgets library + ~100K for lua and can be easily interfaced with C++ code making it a powerful extension language (which is exactly the intent of its designers); look at <a href="http://www.lua.org/about.html">this page</a> for more info.</p> ! <p>In conclusion, if you want to write an entire application in a scripting language and you need things supported by Python which are not present in wxLua out-of-the-box, then you should use wxPython. Instead, if you want to write applications with little overhead or extend your C++ applications, go for wxLua.</p> </div> Index: screenshots.php =================================================================== RCS file: /cvsroot/wxlua/website/screenshots.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** screenshots.php 3 May 2006 04:40:18 -0000 1.10 --- screenshots.php 3 May 2006 04:45:51 -0000 1.11 *************** *** 13,17 **** ?> ! <h1 id="win" class="first">wxLua on Windows</h1> <p>wxLua makes it simple to write applications perfectly integrated in Windows, thanks to the <strong>wxMSW</strong> port of <a href="http://www.wxwidgets.org">wxWidgets</a> toolkit:</p> <div style="text-align: center"> --- 13,17 ---- ?> ! <h1 id="win" class="first">wxLua on MS Windows</h1> <p>wxLua makes it simple to write applications perfectly integrated in Windows, thanks to the <strong>wxMSW</strong> port of <a href="http://www.wxwidgets.org">wxWidgets</a> toolkit:</p> <div style="text-align: center"> Index: index.php =================================================================== RCS file: /cvsroot/wxlua/website/index.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** index.php 3 May 2006 04:40:18 -0000 1.12 --- index.php 3 May 2006 04:45:51 -0000 1.13 *************** *** 24,30 **** <p>Additionally, wxLua can be used in your C++ programs to embed a <em>lua interpreter</em> ! with wxWidgets API bindings. See <a href="docs.php">wxLua documentation</a> for more info.</p> ! <p>Want an example of how easy can it is to write a cross-platform GUI? Here is a simple lua script which creates a wxFrame top level window and a menubar, just add your program to it:</p> <?php include_once("luasample.lua.html"); ?> --- 24,30 ---- <p>Additionally, wxLua can be used in your C++ programs to embed a <em>lua interpreter</em> ! with the wxWidgets API bindings. See the <a href="docs.php">wxLua documentation</a> for more info.</p> ! <p>Want an example of how easy it is to write a cross-platform GUI? Here is a simple lua script which creates a wxFrame top level window and a menubar, just add your program to it:</p> <?php include_once("luasample.lua.html"); ?> |