%pragma(python) code = "import wx"
+
+%{
+ static wxString wxPyEmptyStr("");
+%}
+
//---------------------------------------------------------------------------
class wxEvtHandler {
public:
+ wxEvtHandler();
+
bool ProcessEvent(wxEvent& event);
void AddPendingEvent(wxEvent& event);
//bool SearchEventTable(wxEventTable& table, wxEvent& event);
wxWindow* GetWindow();
void SetWindow(wxWindow* window);
- // Properties list
- %pragma(python) addtoclass = "
- _prop_list_ = {
- 'window' : ('GetWindow', 'SetWindow'),
- }
- _prop_list_.update(wxEvtHandler._prop_list_)
- "
+// // Properties list
+// %pragma(python) addtoclass = "
+// _prop_list_ = {
+// 'window' : ('GetWindow', 'SetWindow'),
+// }
+// _prop_list_.update(wxEvtHandler._prop_list_)
+// "
};
%inline %{
public:
wxWindow(wxWindow* parent, const wxWindowID id,
- const wxPoint& pos = wxPyDefaultPosition,
- const wxSize& size = wxPyDefaultSize,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
long style = 0,
char* name = "panel");
void SetPosition(const wxPoint& pos) {
self->Move(pos);
}
+
+ void SetRect(const wxRect& rect, int sizeFlags=wxSIZE_AUTO) {
+ self->SetSize(rect, sizeFlags);
+ }
}
void SetSizeHints(int minW=-1, int minH=-1, int maxW=-1, int maxH=-1, int incW=-1, int incH=-1);
//void SetPalette(wxPalette* palette);
void SetCursor(const wxCursor&cursor);
void SetEventHandler(wxEvtHandler* handler);
+ void SetExtraStyle(long exStyle);
void SetTitle(const wxString& title);
bool Show(bool show);
bool TransferDataFromWindow();
void SetCaret(wxCaret *caret);
wxCaret *GetCaret();
- %pragma(python) addtoclass = "# replaces broken shadow method
+ %pragma(python) addtoclass = "# replaces broken shadow methods
def GetCaret(self, *_args, **_kwargs):
from misc2 import wxCaretPtr
val = apply(windowsc.wxWindow_GetCaret,(self,) + _args, _kwargs)
if val: val = wxCaretPtr(val)
return val
- "
-
- // Properties list
- %pragma(python) addtoclass = "
- _prop_list_ = {
- 'size' : ('GetSize', 'SetSize'),
- 'enabled' : ('IsEnabled', 'Enable'),
- 'background' : ('GetBackgroundColour', 'SetBackgroundColour'),
- 'foreground' : ('GetForegroundColour', 'SetForegroundColour'),
- 'children' : ('GetChildren', None),
- 'charHeight' : ('GetCharHeight', None),
- 'charWidth' : ('GetCharWidth', None),
- 'clientSize' : ('GetClientSize', 'SetClientSize'),
- 'font' : ('GetFont', 'SetFont'),
- 'grandParent' : ('GetGrandParent', None),
- 'handle' : ('GetHandle', None),
- 'label' : ('GetLabel', 'SetLabel'),
- 'name' : ('GetName', 'SetName'),
- 'parent' : ('GetParent', None),
- 'position' : ('GetPosition', 'SetPosition'),
- 'title' : ('GetTitle', 'SetTitle'),
- 'style' : ('GetWindowStyleFlag', 'SetWindowStyleFlag'),
- 'visible' : ('IsShown', 'Show'),
- 'toolTip' : ('GetToolTip', 'SetToolTip'),
- 'sizer' : ('GetSizer', 'SetSizer'),
- 'validator' : ('GetValidator', 'SetValidator'),
- 'dropTarget' : ('GetDropTarget', 'SetDropTarget'),
- 'caret' : ('GetCaret', 'SetCaret'),
- 'autoLayout' : ('GetAutoLayout', 'SetAutoLayout'),
- 'constraints' : ('GetConstraints', 'SetConstraints'),
+ def GetSizer(self, *_args, **_kwargs):
+ from sizers import wxSizerPtr
+ val = apply(windowsc.wxWindow_GetSizer,(self,) + _args, _kwargs)
+ if val: val = wxSizerPtr(val)
+ return val
- }
- _prop_list_.update(wxEvtHandler._prop_list_)
+ def GetToolTip(self, *_args, **_kwargs):
+ from misc2 import wxToolTipPtr
+ val = apply(windowsc.wxWindow_GetToolTip,(self,) + _args, _kwargs)
+ if val: val = wxToolTipPtr(val)
+ return val
"
+
+
+// // Properties list
+// %pragma(python) addtoclass = "
+// _prop_list_ = {
+// 'size' : ('GetSize', 'SetSize'),
+// 'enabled' : ('IsEnabled', 'Enable'),
+// 'background' : ('GetBackgroundColour', 'SetBackgroundColour'),
+// 'foreground' : ('GetForegroundColour', 'SetForegroundColour'),
+// 'children' : ('GetChildren', None),
+// 'charHeight' : ('GetCharHeight', None),
+// 'charWidth' : ('GetCharWidth', None),
+// 'clientSize' : ('GetClientSize', 'SetClientSize'),
+// 'font' : ('GetFont', 'SetFont'),
+// 'grandParent' : ('GetGrandParent', None),
+// 'handle' : ('GetHandle', None),
+// 'label' : ('GetLabel', 'SetLabel'),
+// 'name' : ('GetName', 'SetName'),
+// 'parent' : ('GetParent', None),
+// 'position' : ('GetPosition', 'SetPosition'),
+// 'title' : ('GetTitle', 'SetTitle'),
+// 'style' : ('GetWindowStyleFlag', 'SetWindowStyleFlag'),
+// 'visible' : ('IsShown', 'Show'),
+// 'toolTip' : ('GetToolTip', 'SetToolTip'),
+// 'sizer' : ('GetSizer', 'SetSizer'),
+// 'validator' : ('GetValidator', 'SetValidator'),
+// 'dropTarget' : ('GetDropTarget', 'SetDropTarget'),
+// 'caret' : ('GetCaret', 'SetCaret'),
+// 'autoLayout' : ('GetAutoLayout', 'SetAutoLayout'),
+// 'constraints' : ('GetConstraints', 'SetConstraints'),
+
+// }
+// _prop_list_.update(wxEvtHandler._prop_list_)
+// "
};
-//%clear int* x, int* y;
return win.ConvertDialogSizeToPixels(wxSize(size_width, height))
"
-#ifdef __WXMSW__
%inline %{
wxWindow* wxWindow_FindFocus() {
return wxWindow::FindFocus();
%}
+#ifdef __WXMSW__
%inline %{
wxWindow* wxWindow_FromHWND(unsigned long hWnd) {
wxWindow* win = new wxWindow;
public:
wxPanel(wxWindow* parent,
const wxWindowID id,
- const wxPoint& pos = wxPyDefaultPosition,
- const wxSize& size = wxPyDefaultSize,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
long style = wxTAB_TRAVERSAL,
const char* name = "panel");
wxDialog(wxWindow* parent,
const wxWindowID id,
const wxString& title,
- const wxPoint& pos = wxPyDefaultPosition,
- const wxSize& size = wxPyDefaultSize,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
long style = wxDEFAULT_DIALOG_STYLE,
const char* name = "dialogBox");
int GetReturnCode();
void SetReturnCode(int retCode);
+
+ wxSizer* CreateTextSizer( const wxString &message );
+ wxSizer* CreateButtonSizer( long flags );
+
+ %pragma(python) addtoclass = "
+ # replace swig generated shadow methods to resolve import issues
+ def CreateTextSizer(self, *_args, **_kwargs):
+ import sizers
+ val = apply(windowsc.wxDialog_CreateTextSizer,(self,) + _args, _kwargs)
+ if val: val = sizers.wxSizerPtr(val)
+ return val
+ def CreateButtonSizer(self, *_args, **_kwargs):
+ import sizers
+ val = apply(windowsc.wxDialog_CreateButtonSizer,(self,) + _args, _kwargs)
+ if val: val = sizers.wxSizerPtr(val)
+ return val
+"
+
};
//---------------------------------------------------------------------------
public:
wxScrolledWindow(wxWindow* parent,
const wxWindowID id = -1,
- const wxPoint& pos = wxPyDefaultPosition,
- const wxSize& size = wxPyDefaultSize,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
long style = wxHSCROLL | wxVSCROLL,
char* name = "scrolledWindow");
void Append(int id, const wxString& item,
const wxString& helpString = wxPyEmptyStr,
- int checkable = FALSE);
+ bool checkable = FALSE);
%name(AppendMenu)void Append(int id, const wxString& item, wxMenu *subMenu,
const wxString& helpString = wxPyEmptyStr);
%name(AppendItem)void Append(const wxMenuItem* item);
class wxMenuBar : public wxWindow {
public:
- wxMenuBar();
+ wxMenuBar(long style = 0);
bool Append(wxMenu *menu, const wxString& title);
bool Insert(size_t pos, wxMenu *menu, const wxString& title);
wxAcceleratorEntry *GetAccel();
void SetAccel(wxAcceleratorEntry *accel);
+ static wxString GetLabelFromText(const wxString& text);
+
+ // wxOwnerDrawn methods
+#ifdef __WXMSW__
+ void SetFont(const wxFont& font);
+ wxFont& GetFont();
+ void SetTextColour(const wxColour& colText);
+ wxColour& GetTextColour();
+ void SetBackgroundColour(const wxColour& colBack);
+ wxColour& GetBackgroundColour();
+ void SetBitmaps(const wxBitmap& bmpChecked,
+ const wxBitmap& bmpUnchecked = wxNullBitmap);
+ void SetBitmap(const wxBitmap& bmpChecked);
+ const wxBitmap& GetBitmap(bool bChecked = TRUE);
+ void SetMarginWidth(int nWidth);
+ int GetMarginWidth();
+ static int GetDefaultMarginWidth();
+ //void SetName(const wxString& strName);
+ //const wxString& GetName();
+ //void SetCheckable(bool checkable);
+ //bool IsCheckable();
+ bool IsOwnerDrawn();
+ void ResetOwnerDrawn();
+#endif
};
//---------------------------------------------------------------------------