From: John L. <jr...@us...> - 2007-06-30 18:18:49
|
Update of /cvsroot/wxlua/wxLua/docs In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv27412/wxLua/docs Modified Files: wxlua.html wxluaref.html Log Message: Remove fl lib, it's not going to be used fix toolbar in scribble Index: wxluaref.html =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/wxluaref.html,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** wxluaref.html 30 Jun 2007 00:12:20 -0000 1.38 --- wxluaref.html 30 Jun 2007 18:18:45 -0000 1.39 *************** *** 3463,3466 **** --- 3463,3469 ---- <font color=#AA0000><i>%function</i> void wxSafeShowMessage(const <a href="#wxString">wxString</a>& title, const <a href="#wxString">wxString</a>& text)</font><br> <br> + <font color=#009900>// All of the wxLogXXX functions take only a single string,</font><br> + <font color=#009900>// use string.format(...) to format the string in lua.</font><br> + <br> <font color=#009900>// C++ Func: void wxLogError(const char *formatString, ...)</font><br> <font color=#AA0000><i>%function</i> void wxLogError(const <a href="#wxString">wxString</a>& message)</font><br> *************** *** 3474,3478 **** <font color=#AA0000><i>%function</i> void wxLogVerbose(const <a href="#wxString">wxString</a>& message)</font><br> <font color=#009900>// C++ Func: void wxLogStatus(<a href="#wxFrame">wxFrame</a> *frame, const char *formatString, ...)</font><br> ! <font color=#009900>// void wxLogStatus(const char *formatString, ...) // this just uses the toplevel frame</font><br> <font color=#AA0000><i>%function</i> void wxLogStatus(<a href="#wxFrame">wxFrame</a> *frame, const <a href="#wxString">wxString</a>& message)</font><br> <font color=#009900>// C++ Func: void wxLogSysError(const char *formatString, ...)</font><br> --- 3477,3481 ---- <font color=#AA0000><i>%function</i> void wxLogVerbose(const <a href="#wxString">wxString</a>& message)</font><br> <font color=#009900>// C++ Func: void wxLogStatus(<a href="#wxFrame">wxFrame</a> *frame, const char *formatString, ...)</font><br> ! <font color=#009900>// void wxLogStatus(const char *formatString, ...) // this just uses the toplevel frame, use wx.NULL for the frame</font><br> <font color=#AA0000><i>%function</i> void wxLogStatus(<a href="#wxFrame">wxFrame</a> *frame, const <a href="#wxString">wxString</a>& message)</font><br> <font color=#009900>// C++ Func: void wxLogSysError(const char *formatString, ...)</font><br> *************** *** 3485,3489 **** <font color=#009900>// void wxLogTrace(wxTraceMask mask, const char *formatString, ...) - deprecated</font><br> <br> ! <b><font size=+1 color=#0066CC><i>%enum</i></font></b> <blockquote><font color=#0066CC> wxLOG_FatalError, <font color=#009900>// program can't continue, abort immediately</font><br> --- 3488,3495 ---- <font color=#009900>// void wxLogTrace(wxTraceMask mask, const char *formatString, ...) - deprecated</font><br> <br> ! <i>%typedef</i> wxTraceMask unsigned long<br> ! <i>%typedef</i> wxLogLevel unsigned long<br> ! <br> ! <b><font size=+1 color=#0066CC><i>%enum</i> <font color=#009900>// wxLogLevel - uses these enums</font></font></b> <blockquote><font color=#0066CC> wxLOG_FatalError, <font color=#009900>// program can't continue, abort immediately</font><br> *************** *** 3496,3499 **** --- 3502,3506 ---- wxLOG_Trace, <font color=#009900>// trace messages are also only enabled in debug mode</font><br> wxLOG_Progress, <font color=#009900>// used for progress indicator (not yet)</font><br> + <br> wxLOG_User, <font color=#009900>// user defined levels start here</font><br> wxLOG_Max<br> *************** *** 3510,3516 **** <font color=#006666><i>%msw</i> <i>%define_string</i> wxTRACE_OleCalls <font color=#009900>//wxT("ole") // OLE interface calls</font></font><br> <br> - <i>%typedef</i> wxLogLevel unsigned long<br> - <i>%typedef</i> wxTraceMask unsigned long<br> - <br> <b><font size=+1 color=#DD0000><i>%class</i> <i>%delete</i> <i>%noclassinfo</i> <i>%encapsulate</i> <a name="wxLog">wxLog</a></font></b> <blockquote> --- 3517,3520 ---- *************** *** 3655,3659 **** <br> void Show(bool show = true)<br> ! <a href="#wxFrame">wxFrame</a> * GetFrame() const<br> <br> <font color=#009900>//virtual void OnFrameCreate(<a href="#wxFrame">wxFrame</a> *frame)</font><br> --- 3659,3663 ---- <br> void Show(bool show = true)<br> ! <a href="#wxFrame">wxFrame</a>* GetFrame() const<br> <br> <font color=#009900>//virtual void OnFrameCreate(<a href="#wxFrame">wxFrame</a> *frame)</font><br> *************** *** 3966,3970 **** bool Ok() const<br> <br> ! <font color=#009900>// believe it or not, there aren't functions to add or remove entries for MSW</font><br> <br> <font color=#009900>// operators are WXWIN_COMPATIBILITY_2_4</font><br> --- 3970,3974 ---- bool Ok() const<br> <br> ! <font color=#009900>// believe it or not, there aren't functions to add or remove wxAcceleratorEntries for MSW</font><br> <br> <font color=#009900>// operators are WXWIN_COMPATIBILITY_2_4</font><br> *************** *** 4027,4033 **** <font color=#009900>// virtual bool PopupMenu(<a href="#wxMenu">wxMenu</a>* menu)</font><br> <br> ! <font color=#009900>// call RemoveIcon() if you want your program to exit, must have called SetIcon()</font><br> bool RemoveIcon()<br> ! <font color=#009900>// call SetIcon() if have the taskbar icon displayed</font><br> bool SetIcon(const <a href="#wxIcon">wxIcon</a>& icon, const <a href="#wxString">wxString</a>& tooltip)<br> </blockquote><font color=#DD0000><font color=#DD0000><i>%endclass</i></font></font><br> --- 4031,4037 ---- <font color=#009900>// virtual bool PopupMenu(<a href="#wxMenu">wxMenu</a>* menu)</font><br> <br> ! <font color=#009900>// call RemoveIcon() or delete this if you want your program to exit, must have called SetIcon()</font><br> bool RemoveIcon()<br> ! <font color=#009900>// call SetIcon() to have the taskbar icon displayed</font><br> bool SetIcon(const <a href="#wxIcon">wxIcon</a>& icon, const <a href="#wxString">wxString</a>& tooltip)<br> </blockquote><font color=#DD0000><font color=#DD0000><i>%endclass</i></font></font><br> *************** *** 4176,4180 **** <b><font size=+1 color=#DD0000><i>%class</i> <i>%noclassinfo</i> <a name="wxSystemSettings">wxSystemSettings</a></font></b> <blockquote> ! <font color=#009900>//<a href="#wxSystemSettings">wxSystemSettings</a>() // all members static</font><br> <br> static <a href="#wxColour">wxColour</a> GetColour(<a href="#wxSystemColour">wxSystemColour</a> index)<br> --- 4180,4184 ---- <b><font size=+1 color=#DD0000><i>%class</i> <i>%noclassinfo</i> <a name="wxSystemSettings">wxSystemSettings</a></font></b> <blockquote> ! <font color=#009900>//<a href="#wxSystemSettings">wxSystemSettings</a>() // No constructor, all members static</font><br> <br> static <a href="#wxColour">wxColour</a> GetColour(<a href="#wxSystemColour">wxSystemColour</a> index)<br> *************** *** 4392,4396 **** bool IsOk() const<br> <br> ! <font color=#009900>//bool operator==(const <a href="#wxPlatformInfo">wxPlatformInfo</a> &t) const;</font><br> <font color=#009900>//bool operator!=(const <a href="#wxPlatformInfo">wxPlatformInfo</a> &t) const</font><br> </blockquote><font color=#DD0000><font color=#DD0000><i>%endclass</i></font></font><br> --- 4396,4400 ---- bool IsOk() const<br> <br> ! <font color=#009900>//bool operator==(const <a href="#wxPlatformInfo">wxPlatformInfo</a> &t) const; // we only use the wxWidget's <a href="#wxPlatformInfo">wxPlatformInfo</a></font><br> <font color=#009900>//bool operator!=(const <a href="#wxPlatformInfo">wxPlatformInfo</a> &t) const</font><br> </blockquote><font color=#DD0000><font color=#DD0000><i>%endclass</i></font></font><br> *************** *** 4441,4445 **** <b><font size=+1 color=#DD0000><i>%class</i> <i>%delete</i> <i>%noclassinfo</i> <i>%encapsulate</i> <a name="wxDynamicLibraryDetails">wxDynamicLibraryDetails</a></font></b> <blockquote> ! <font color=#009900>// ctor, normally never used as these objects are only created by</font><br> <font color=#009900>// wxDynamicLibrary::ListLoaded()</font><br> <font color=#009900>//<a href="#wxDynamicLibraryDetails">wxDynamicLibraryDetails</a>() { m_address = NULL; m_length = 0; }</font><br> --- 4445,4449 ---- <b><font size=+1 color=#DD0000><i>%class</i> <i>%delete</i> <i>%noclassinfo</i> <i>%encapsulate</i> <a name="wxDynamicLibraryDetails">wxDynamicLibraryDetails</a></font></b> <blockquote> ! <font color=#009900>// ctor, normally never used as these objects are only created by <a href="#wxDynamicLibrary">wxDynamicLibrary</a></font><br> <font color=#009900>// wxDynamicLibrary::ListLoaded()</font><br> <font color=#009900>//<a href="#wxDynamicLibraryDetails">wxDynamicLibraryDetails</a>() { m_address = NULL; m_length = 0; }</font><br> *************** *** 5605,5609 **** <font color=#009900>//void SetWindowStyleFlag(long style) - see <a href="#wxWindow">wxWindow</a></font><br> <br> - <br> <font color=#BB0055> <font color=#009900>// <i>%override</i> bool SortItems(lua function(long item1, long item2, long data) returning int, long data)</font></font><br> <font color=#009900>// C++ Func: bool SortItems(wxListCtrlCompare fnSortCallBack, long data)</font><br> --- 5609,5612 ---- Index: wxlua.html =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/wxlua.html,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** wxlua.html 30 Jun 2007 00:12:20 -0000 1.27 --- wxlua.html 30 Jun 2007 18:18:45 -0000 1.28 *************** *** 3,19 **** <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"> - <title>wxLua Documentation</title> - <meta content="John Labenski" name="author"> </head> [...4279 lines suppressed...] things up for wxLua first.</li> + <li>Returns lua's error code LUA_ERRXXX or 0 on success</li> + + </ul> + <li>The other functions are documented in <span style="font-style: italic;">wxLua/modules/wxlua/include/wxlstate.h</span>.</li> + </ul> + </body> </html> |