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