X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a57d56d66294799d6d36e64fa7aed6ff42a4d1e9..cd72551c2b6cbf67a4a5caf0ba00ba64e41183b2:/wxPython/src/windows3.i?ds=sidebyside diff --git a/wxPython/src/windows3.i b/wxPython/src/windows3.i index 1b0179a824..8b8ad5fb9a 100644 --- a/wxPython/src/windows3.i +++ b/wxPython/src/windows3.i @@ -18,6 +18,7 @@ #include #ifndef __WXMAC__ #include +#include #endif %} @@ -266,6 +267,33 @@ public: virtual void Dismiss(); }; -#endif //--------------------------------------------------------------------------- +class wxTipWindow : public wxPyPopupTransientWindow +{ +public: + %addmethods { + wxTipWindow(wxWindow *parent, + const wxString* text, + wxCoord maxLength = 100, + wxRect* rectBound = NULL) { + wxString tmp = *text; + return new wxTipWindow(parent, tmp, maxLength, NULL, rectBound); + } + } + + %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" + + // If rectBound is not NULL, the window will disappear automatically when + // the mouse leave the specified rect: note that rectBound should be in the + // screen coordinates! + void SetBoundingRect(const wxRect& rectBound); + + // Hide and destroy the window + void Close(); +}; + + +//--------------------------------------------------------------------------- + +#endif