%{
#include "helpers.h"
#include <wx/minifram.h>
+#include <wx/tipwin.h>
%}
//----------------------------------------------------------------------
wxPoint GetClientAreaOrigin() const;
bool Command(int id);
bool ProcessCommand(int id);
-#ifdef __WXMSW__
bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
-#endif
+ bool IsFullScreen();
};
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
+class wxTipWindow : public wxFrame
+{
+public:
+ wxTipWindow(wxWindow *parent,
+ const wxString& text,
+ wxCoord maxLength = 100);
+};
+
+
+//---------------------------------------------------------------------------
+