1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface defs for wxTipWindow
7 // Created: 22-Dec-1998
9 // Copyright: (c) 2003 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
19 #include <wx/tipwin.h>
22 //---------------------------------------------------------------------------
28 public wxPyPopupTransientWindow
34 %addtofunc wxTipWindow "self._setOORInfo(self)"
37 wxTipWindow(wxWindow *parent,
39 wxCoord maxLength = 100,
40 wxRect* rectBound = NULL) {
42 return new wxTipWindow(parent, tmp, maxLength, NULL, rectBound);
47 // If rectBound is not NULL, the window will disappear automatically when
48 // the mouse leave the specified rect: note that rectBound should be in the
49 // screen coordinates!
50 void SetBoundingRect(const wxRect& rectBound);
52 // Hide and destroy the window
56 //---------------------------------------------------------------------------