//#define PROGID L"SoftwareFX.ChartFX.20"
-wxIEHtmlWin::wxIEHtmlWin(wxWindow * parent, wxWindowID id)
- : wxActiveX(parent, PROGID, id)
+wxIEHtmlWin::wxIEHtmlWin(wxWindow * parent, wxWindowID id,
+ const wxPoint& pos,
+ const wxSize& size,
+ long style,
+ const wxString& name)
+ : wxActiveX(parent, PROGID, id, pos, size, style, name)
{
SetupBrowser();
}
class wxIEHtmlWin : public wxActiveX
{
public:
- wxIEHtmlWin(wxWindow * parent, wxWindowID id = -1);
+ wxIEHtmlWin(wxWindow * parent, wxWindowID id = -1,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = 0,
+ const wxString& name = wxPanelNameStr);
virtual ~wxIEHtmlWin();
void LoadUrl(const wxString&);
}
return target;
}
+
+ // Put some wx default wxChar* values into wxStrings.
+ DECLARE_DEF_STRING(PanelNameStr);
#ifdef __cplusplus
extern "C" {
#endif
return (void *) dest;
}
-#define new_wxIEHtmlWin(_swigarg0,_swigarg1) (new wxIEHtmlWin(_swigarg0,_swigarg1))
+#define new_wxIEHtmlWin(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (new wxIEHtmlWin(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5))
static PyObject *_wrap_new_wxIEHtmlWin(PyObject *self, PyObject *args, PyObject *kwargs) {
PyObject * _resultobj;
wxIEHtmlWin * _result;
wxWindow * _arg0;
wxWindowID _arg1 = (wxWindowID ) -1;
+ wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition;
+ wxSize * _arg3 = (wxSize *) &wxDefaultSize;
+ long _arg4 = (long ) 0;
+ wxString * _arg5 = (wxString *) &wxPyPanelNameStr;
PyObject * _argo0 = 0;
- char *_kwnames[] = { "parent","id", NULL };
+ wxPoint temp;
+ PyObject * _obj2 = 0;
+ wxSize temp0;
+ PyObject * _obj3 = 0;
+ PyObject * _obj5 = 0;
+ char *_kwnames[] = { "parent","id","pos","size","style","name", NULL };
char _ptemp[128];
self = self;
- if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:new_wxIEHtmlWin",_kwnames,&_argo0,&_arg1))
+ if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iOOlO:new_wxIEHtmlWin",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4,&_obj5))
return NULL;
if (_argo0) {
if (_argo0 == Py_None) { _arg0 = NULL; }
return NULL;
}
}
+ if (_obj2)
+{
+ _arg2 = &temp;
+ if (! wxPoint_helper(_obj2, &_arg2))
+ return NULL;
+}
+ if (_obj3)
+{
+ _arg3 = &temp0;
+ if (! wxSize_helper(_obj3, &_arg3))
+ return NULL;
+}
+ if (_obj5)
+{
+ _arg5 = wxString_in_helper(_obj5);
+ if (_arg5 == NULL)
+ return NULL;
+}
{
PyThreadState* __tstate = wxPyBeginAllowThreads();
- _result = (wxIEHtmlWin *)new_wxIEHtmlWin(_arg0,_arg1);
+ _result = (wxIEHtmlWin *)new_wxIEHtmlWin(_arg0,_arg1,*_arg2,*_arg3,_arg4,*_arg5);
wxPyEndAllowThreads(__tstate);
if (PyErr_Occurred()) return NULL;
Py_INCREF(Py_None);
_resultobj = Py_None;
}
+{
+ if (_obj5)
+ delete _arg5;
+}
return _resultobj;
}
//---------------------------------------------------------------------------
+%{
+ // Put some wx default wxChar* values into wxStrings.
+ DECLARE_DEF_STRING(PanelNameStr);
+%}
+
+//---------------------------------------------------------------------------
+
class wxMSHTMLEvent : public wxNotifyEvent
{
public:
class wxIEHtmlWin : public wxWindow /* wxActiveX */
{
public:
- wxIEHtmlWin(wxWindow * parent, wxWindowID id = -1);
+ wxIEHtmlWin(wxWindow * parent, wxWindowID id = -1,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = 0,
+ const wxString& name = wxPyPanelNameStr);
void LoadUrl(const wxString&);
bool LoadString(wxString html);
END_OLE_TABLE;
-wxActiveX::wxActiveX(wxWindow * parent, REFCLSID clsid, wxWindowID id) :
- wxWindow(parent, id)
+wxActiveX::wxActiveX(wxWindow * parent, REFCLSID clsid, wxWindowID id,
+ const wxPoint& pos,
+ const wxSize& size,
+ long style,
+ const wxString& name) :
+ wxWindow(parent, id, pos, size, style, name)
{
m_bAmbientUserMode = true;
m_docAdviseCookie = 0;
CreateActiveX(clsid);
}
-wxActiveX::wxActiveX(wxWindow * parent, wxString progId, wxWindowID id) :
- wxWindow(parent, id)
+wxActiveX::wxActiveX(wxWindow * parent, wxString progId, wxWindowID id,
+ const wxPoint& pos,
+ const wxSize& size,
+ long style,
+ const wxString& name) :
+ wxWindow(parent, id, pos, size, style, name)
{
m_bAmbientUserMode = true;
m_docAdviseCookie = 0;
class wxActiveX : public wxWindow {
public:
- wxActiveX(wxWindow * parent, REFCLSID clsid, wxWindowID id = -1);
- wxActiveX(wxWindow * parent, wxString progId, wxWindowID id = -1);
- virtual ~wxActiveX();
-
- void CreateActiveX(REFCLSID clsid);
+ wxActiveX(wxWindow * parent, REFCLSID clsid, wxWindowID id = -1,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = 0,
+ const wxString& name = wxPanelNameStr);
+ wxActiveX(wxWindow * parent, wxString progId, wxWindowID id = -1,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = 0,
+ const wxString& name = wxPanelNameStr);
+
+ virtual ~wxActiveX();
+
+ void CreateActiveX(REFCLSID clsid);
void CreateActiveX(LPOLESTR progId);
- HRESULT ConnectAdvise(REFIID riid, IUnknown *eventSink);
+ HRESULT ConnectAdvise(REFIID riid, IUnknown *eventSink);
- void OnSize(wxSizeEvent&);
- void OnSetFocus(wxFocusEvent&);
+ void OnSize(wxSizeEvent&);
+ void OnSetFocus(wxFocusEvent&);
void OnKillFocus(wxFocusEvent&);
- DECLARE_EVENT_TABLE();
+ DECLARE_EVENT_TABLE();
protected:
friend class FrameSite;