// wxList& GetChildren();
%extend {
DocAStr(GetChildren,
- "GetChildren(sefl) -> list",
+ "GetChildren(self) -> list",
"Returns a list of all the `wx.SizerItem` objects managed by the sizer.", "");
PyObject* GetChildren() {
wxSizerItemList& list = self->GetChildren();
"This funciton needs to be called after all the buttons have been added
to the sizer. It will reorder them and position them in a platform
specifc manner.", "");
+
+ void SetAffirmativeButton( wxButton *button );
+ void SetNegativeButton( wxButton *button );
+ void SetCancelButton( wxButton *button );
wxButton* GetAffirmativeButton() const;
wxButton* GetApplyButton() const;