/////////////////////////////////////////////////////////////////////////////
-%module iewin
+%module(package="wx") iewin
%{
#include "wx/wxPython/wxPython.h"
};
+MustHaveApp(wxIEHtmlWin);
+
class wxIEHtmlWin : public wxWindow /* wxActiveX */
{
public:
void SetCharset(wxString charset);
void SetEditMode(bool seton);
bool GetEditMode();
- wxString GetStringSelection(bool asHTML = False);
- wxString GetText(bool asHTML = False);
+ wxString GetStringSelection(bool asHTML = false);
+ wxString GetText(bool asHTML = false);
bool GoBack();
bool GoForward();
bool GoHome();
bool GoSearch();
- %name(RefreshPage)bool Refresh(wxIEHtmlRefreshLevel level);
+ %Rename(RefreshPage, bool, Refresh(wxIEHtmlRefreshLevel level));
bool Stop();
};