From: John L. <jr...@us...> - 2007-11-25 21:34:08
|
Update of /cvsroot/wxlua/wxLua/samples In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv23733/wxLua/samples Added Files: auidemo.wx.lua Log Message: Updated wxAUI to 2.8.6 and added a sample for it --- NEW FILE: auidemo.wx.lua --- --[[ /////////////////////////////////////////////////////////////////////////////// // Name: auidemo.cpp // Purpose: wxaui: wx advanced user interface - sample/test program // Author: Benjamin I. Williams // Modified by: // Created: 2005-10-03 // RCS-ID: $Id: auidemo.wx.lua,v 1.1 2007/11/25 21:34:05 jrl1 Exp $ // Copyright: (C) Copyright 2005, Kirix Corporation, All Rights Reserved. // Licence: wxWindows Library Licence, Version 3.1 /////////////////////////////////////////////////////////////////////////////// --]] --/* XPM */ local sample_xpm = { --/* columns rows colors chars-per-pixel */ "32 32 6 1", " c black", [...1589 lines suppressed...] <p>See README.txt for more information.</p> </body></html> ]] return text; end function MyApp:OnInit() local myframe = MyFrame:create() local frame = myframe.this wx.wxGetApp():SetTopWindow(frame); frame:Show(); return true; end MyApp:OnInit() |