X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9416aa89ca06d0fb20b1002e026d2c7ac7aa6a17..6c41903ced78c0b4115785aa80a934833abbc1ef:/wxPython/src/frames.i?ds=sidebyside diff --git a/wxPython/src/frames.i b/wxPython/src/frames.i index 27b589f068..69fc74db4e 100644 --- a/wxPython/src/frames.i +++ b/wxPython/src/frames.i @@ -16,6 +16,7 @@ %{ #include "helpers.h" #include +#include %} //---------------------------------------------------------------------- @@ -86,6 +87,7 @@ public: bool Command(int id); bool ProcessCommand(int id); bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); + bool IsFullScreen(); }; //--------------------------------------------------------------------------- @@ -104,6 +106,17 @@ public: //--------------------------------------------------------------------------- +class wxTipWindow : public wxFrame +{ +public: + wxTipWindow(wxWindow *parent, + const wxString& text, + wxCoord maxLength = 100); +}; + + +//--------------------------------------------------------------------------- +