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 %pythonAppend wxTipWindow "self._setOORInfo(self)"
37 wxTipWindow(wxWindow *parent,
39 wxCoord maxLength = 100,
40 wxRect* rectBound = NULL) {
41 return new wxTipWindow(parent, text, maxLength, NULL, rectBound);
46 // If rectBound is not NULL, the window will disappear automatically when
47 // the mouse leave the specified rect: note that rectBound should be in the
48 // screen coordinates!
49 void SetBoundingRect(const wxRect& rectBound);
51 // Hide and destroy the window
55 //---------------------------------------------------------------------------