%pythoncode { wx = _core }
%pythoncode { __docfilter__ = wx.__DocFilter(globals()) }
-%include _wizard_rename.i
-
MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
//----------------------------------------------------------------------
const wxBitmap& bitmap = wxNullBitmap,
const wxString& resource = wxPyEmptyString) {
wxChar* res = NULL;
- if (resource.Length())
+ if (resource.length())
res = (wxChar*)resource.c_str();
return self->Create(parent, bitmap, res);
}
const wxBitmap* bitmap = &wxNullBitmap,
const wxString* resource = &wxPyEmptyString) {
wxChar* res = NULL;
- if (resource->Length())
+ if (resource->length())
res = (wxChar*)resource->c_str();
return new wxPyWizardPage(parent, *bitmap, res);
}
const wxBitmap& bitmap = wxNullBitmap,
const wxString& resource = wxPyEmptyString) {
wxChar* res = NULL;
- if (resource.Length())
+ if (resource.length())
res = (wxChar*)resource.c_str();
return self->Create(parent, bitmap, res);
}
virtual void SetBorder(int border);
// is the wizard running?
- bool IsRunning() const { return m_page != NULL; }
+ bool IsRunning() const;
// show the prev/next page, but call TransferDataFromWindow on the current
// page first and return False without changing the page if