From: John L. <jr...@us...> - 2007-06-18 21:41:10
|
Update of /cvsroot/wxlua/wxLua/docs In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv32406/wxLua/docs Modified Files: wxluaref.html Log Message: Fix last commit of trying to preserve the order of the binding conditions, this way works. Index: wxluaref.html =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/wxluaref.html,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** wxluaref.html 18 Jun 2007 19:51:27 -0000 1.28 --- wxluaref.html 18 Jun 2007 21:40:33 -0000 1.29 *************** *** 5500,5505 **** void SetSelection(int n)<br> void SetStringSelection(const <a href="#wxString">wxString</a>& string)<br> ! bool Show(bool show = true)<br> ! bool Show(int item, bool show = true)<br> </blockquote><font color=#DD0000><font color=#DD0000><i>%endclass</i></font></font><br> <br> --- 5500,5505 ---- void SetSelection(int n)<br> void SetStringSelection(const <a href="#wxString">wxString</a>& string)<br> ! <font color=#009900>//bool Show(bool show = true) // see <a href="#wxWindow">wxWindow</a></font><br> ! bool Show(int item, bool show) <font color=#009900>// must specify both for overload</font><br> </blockquote><font color=#DD0000><font color=#DD0000><i>%endclass</i></font></font><br> <br> *************** *** 11923,11927 **** </blockquote><font color=#0066CC><i>%endenum</i></font><br> <br> ! <b><font size=+1 color=#DD0000><i>%class</i> <i>%delete</i> <a name="wxCursor">wxCursor</a>, <a href="#wxBitmap">wxBitmap</a> <font color=#009900>// just <a href="#wxObject">wxObject</a> in GTK</font></font></b> <blockquote> <font color=#006666> <i>%define_object</i> wxNullCursor</font><br> --- 11923,11927 ---- </blockquote><font color=#0066CC><i>%endenum</i></font><br> <br> ! <b><font size=+1 color=#DD0000><i>%class</i> <i>%delete</i> <a name="wxCursor">wxCursor</a>, <a href="#wxObject">wxObject</a> <font color=#009900>// <a href="#wxObject">wxObject</a> in gtk, wxGDIImage in msw, <a href="#wxBitmap">wxBitmap</a> in osx</font></font></b> <blockquote> <font color=#006666> <i>%define_object</i> wxNullCursor</font><br> *************** *** 11931,11939 **** <br> <a href="#wxCursor">wxCursor</a>()<br> - <i>%win</i>|<i>%mac</i> <a href="#wxCursor">wxCursor</a>(const <a href="#wxString">wxString</a>& cursorName, long type, int hotSpotX = 0, int hotSpotY = 0)<br> <a href="#wxCursor">wxCursor</a>(int id)<br> <a href="#wxCursor">wxCursor</a>(const <a href="#wxImage">wxImage</a>& image)<br> <br> - <font color=#009900>//bool Ok() - see <a href="#wxBitmap">wxBitmap</a></font><br> <font color=#009900>//<i>%win</i> WXHANDLE GetHandle()</font><br> <font color=#009900>//<i>%win</i> void SetHandle(WXHANDLE handle)</font><br> --- 11931,11940 ---- <br> <a href="#wxCursor">wxCursor</a>()<br> <a href="#wxCursor">wxCursor</a>(int id)<br> <a href="#wxCursor">wxCursor</a>(const <a href="#wxImage">wxImage</a>& image)<br> + <i>%win</i>|<i>%mac</i> <a href="#wxCursor">wxCursor</a>(const <a href="#wxString">wxString</a>& cursorName, long type, int hotSpotX = 0, int hotSpotY = 0)<br> + <br> + bool Ok()<br> <br> <font color=#009900>//<i>%win</i> WXHANDLE GetHandle()</font><br> <font color=#009900>//<i>%win</i> void SetHandle(WXHANDLE handle)</font><br> *************** *** 11941,11948 **** <i>%win</i> int GetHeight()<br> <i>%win</i> int GetDepth()<br> ! <i>%win</i> void SetWidth(int width)<br> ! <i>%win</i> void SetHeight(int height)<br> ! <i>%win</i> void SetDepth(int depth)<br> ! <i>%win</i> void SetSize(const <a href="#wxSize">wxSize</a>& size)<br> </blockquote><font color=#DD0000><font color=#DD0000><i>%endclass</i></font></font><br> <br> --- 11942,11949 ---- <i>%win</i> int GetHeight()<br> <i>%win</i> int GetDepth()<br> ! <font color=#009900>//<i>%win</i> void SetWidth(int width)</font><br> ! <font color=#009900>//<i>%win</i> void SetHeight(int height)</font><br> ! <font color=#009900>//<i>%win</i> void SetDepth(int depth)</font><br> ! <font color=#009900>//<i>%win</i> void SetSize(const <a href="#wxSize">wxSize</a>& size)</font><br> </blockquote><font color=#DD0000><font color=#DD0000><i>%endclass</i></font></font><br> <br> *************** *** 18215,18219 **** virtual bool AddPage(<a href="#wxWindow">wxWindow</a> *page, const <a href="#wxString">wxString</a>& text, bool bSelect = false, int imageId = wxNOT_FOUND);<br> virtual bool AddSubPage(<a href="#wxWindow">wxWindow</a> *page, const <a href="#wxString">wxString</a>& text, bool bSelect = false, int imageId = wxNOT_FOUND);<br> - virtual bool DeletePage(size_t pos);<br> virtual bool IsNodeExpanded(size_t pos) const;<br> <br> --- 18216,18219 ---- |