%{
#include "helpers.h"
#include <wx/minifram.h>
+#include <wx/tipwin.h>
%}
//----------------------------------------------------------------------
const wxSize& size = wxDefaultSize,
long style = wxDEFAULT_FRAME_STYLE,
char* name = "frame");
+ %name(wxPreFrame)wxFrame();
- %pragma(python) addtomethod = "__init__:#wx._StdFrameCallbacks(self)"
+ bool Create(wxWindow* parent, const wxWindowID id, const wxString& title,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = wxDEFAULT_FRAME_STYLE,
+ char* name = "frame");
void Centre(int direction = wxBOTH);
wxStatusBar* CreateStatusBar(int number = 1,
const wxSize& size = wxDefaultSize,
long style = wxDEFAULT_FRAME_STYLE,
char* name = "frame");
+ %name(wxPreMiniFrame)wxMiniFrame();
+
+ bool Create(wxWindow* parent, const wxWindowID id, const wxString& title,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = wxDEFAULT_FRAME_STYLE,
+ char* name = "frame");
+};
+
- %pragma(python) addtomethod = "__init__:#wx._StdFrameCallbacks(self)"
+//---------------------------------------------------------------------------
+
+class wxTipWindow : public wxFrame
+{
+public:
+ wxTipWindow(wxWindow *parent,
+ const wxString& text,
+ wxCoord maxLength = 100);
};