Add pos, size and style parameters to the window constructors

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16051 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-07-06 00:42:51 +00:00
parent e422162882
commit d7abf01706
6 changed files with 90 additions and 20 deletions

View File

@@ -177,8 +177,12 @@ static const CLSID CLSID_MozillaBrowser =
//#define PROGID L"SoftwareFX.ChartFX.20" //#define PROGID L"SoftwareFX.ChartFX.20"
wxIEHtmlWin::wxIEHtmlWin(wxWindow * parent, wxWindowID id) wxIEHtmlWin::wxIEHtmlWin(wxWindow * parent, wxWindowID id,
: wxActiveX(parent, PROGID, id) const wxPoint& pos,
const wxSize& size,
long style,
const wxString& name)
: wxActiveX(parent, PROGID, id, pos, size, style, name)
{ {
SetupBrowser(); SetupBrowser();
} }

View File

@@ -62,7 +62,11 @@ enum wxIEHtmlRefreshLevel {
class wxIEHtmlWin : public wxActiveX class wxIEHtmlWin : public wxActiveX
{ {
public: 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(); virtual ~wxIEHtmlWin();
void LoadUrl(const wxString&); void LoadUrl(const wxString&);

View File

@@ -84,6 +84,9 @@ static PyObject* t_output_helper(PyObject* target, PyObject* o) {
} }
return target; return target;
} }
// Put some wx default wxChar* values into wxStrings.
DECLARE_DEF_STRING(PanelNameStr);
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
@@ -264,18 +267,27 @@ static void *SwigwxIEHtmlWinTowxObject(void *ptr) {
return (void *) dest; 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) { static PyObject *_wrap_new_wxIEHtmlWin(PyObject *self, PyObject *args, PyObject *kwargs) {
PyObject * _resultobj; PyObject * _resultobj;
wxIEHtmlWin * _result; wxIEHtmlWin * _result;
wxWindow * _arg0; wxWindow * _arg0;
wxWindowID _arg1 = (wxWindowID ) -1; wxWindowID _arg1 = (wxWindowID ) -1;
wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition;
wxSize * _arg3 = (wxSize *) &wxDefaultSize;
long _arg4 = (long ) 0;
wxString * _arg5 = (wxString *) &wxPyPanelNameStr;
PyObject * _argo0 = 0; 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]; char _ptemp[128];
self = self; 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; return NULL;
if (_argo0) { if (_argo0) {
if (_argo0 == Py_None) { _arg0 = NULL; } if (_argo0 == Py_None) { _arg0 = NULL; }
@@ -284,9 +296,27 @@ static PyObject *_wrap_new_wxIEHtmlWin(PyObject *self, PyObject *args, PyObject
return 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(); PyThreadState* __tstate = wxPyBeginAllowThreads();
_result = (wxIEHtmlWin *)new_wxIEHtmlWin(_arg0,_arg1); _result = (wxIEHtmlWin *)new_wxIEHtmlWin(_arg0,_arg1,*_arg2,*_arg3,_arg4,*_arg5);
wxPyEndAllowThreads(__tstate); wxPyEndAllowThreads(__tstate);
if (PyErr_Occurred()) return NULL; if (PyErr_Occurred()) return NULL;
@@ -297,6 +327,10 @@ static PyObject *_wrap_new_wxIEHtmlWin(PyObject *self, PyObject *args, PyObject
Py_INCREF(Py_None); Py_INCREF(Py_None);
_resultobj = Py_None; _resultobj = Py_None;
} }
{
if (_obj5)
delete _arg5;
}
return _resultobj; return _resultobj;
} }

View File

@@ -33,6 +33,13 @@
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
%{
// Put some wx default wxChar* values into wxStrings.
DECLARE_DEF_STRING(PanelNameStr);
%}
//---------------------------------------------------------------------------
class wxMSHTMLEvent : public wxNotifyEvent class wxMSHTMLEvent : public wxNotifyEvent
{ {
public: public:
@@ -86,7 +93,11 @@ enum wxIEHtmlRefreshLevel {
class wxIEHtmlWin : public wxWindow /* wxActiveX */ class wxIEHtmlWin : public wxWindow /* wxActiveX */
{ {
public: 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&); void LoadUrl(const wxString&);
bool LoadString(wxString html); bool LoadString(wxString html);

View File

@@ -185,16 +185,24 @@ DEFINE_OLE_TABLE(FrameSite)
END_OLE_TABLE; END_OLE_TABLE;
wxActiveX::wxActiveX(wxWindow * parent, REFCLSID clsid, wxWindowID id) : wxActiveX::wxActiveX(wxWindow * parent, REFCLSID clsid, wxWindowID id,
wxWindow(parent, id) const wxPoint& pos,
const wxSize& size,
long style,
const wxString& name) :
wxWindow(parent, id, pos, size, style, name)
{ {
m_bAmbientUserMode = true; m_bAmbientUserMode = true;
m_docAdviseCookie = 0; m_docAdviseCookie = 0;
CreateActiveX(clsid); CreateActiveX(clsid);
} }
wxActiveX::wxActiveX(wxWindow * parent, wxString progId, wxWindowID id) : wxActiveX::wxActiveX(wxWindow * parent, wxString progId, wxWindowID id,
wxWindow(parent, id) const wxPoint& pos,
const wxSize& size,
long style,
const wxString& name) :
wxWindow(parent, id, pos, size, style, name)
{ {
m_bAmbientUserMode = true; m_bAmbientUserMode = true;
m_docAdviseCookie = 0; m_docAdviseCookie = 0;

View File

@@ -258,20 +258,29 @@ class wxOleInit
class wxActiveX : public wxWindow { class wxActiveX : public wxWindow {
public: public:
wxActiveX(wxWindow * parent, REFCLSID clsid, wxWindowID id = -1); wxActiveX(wxWindow * parent, REFCLSID clsid, wxWindowID id = -1,
wxActiveX(wxWindow * parent, wxString progId, wxWindowID id = -1); const wxPoint& pos = wxDefaultPosition,
virtual ~wxActiveX(); 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);
void CreateActiveX(REFCLSID clsid); virtual ~wxActiveX();
void CreateActiveX(REFCLSID clsid);
void CreateActiveX(LPOLESTR progId); void CreateActiveX(LPOLESTR progId);
HRESULT ConnectAdvise(REFIID riid, IUnknown *eventSink); HRESULT ConnectAdvise(REFIID riid, IUnknown *eventSink);
void OnSize(wxSizeEvent&); void OnSize(wxSizeEvent&);
void OnSetFocus(wxFocusEvent&); void OnSetFocus(wxFocusEvent&);
void OnKillFocus(wxFocusEvent&); void OnKillFocus(wxFocusEvent&);
DECLARE_EVENT_TABLE(); DECLARE_EVENT_TABLE();
protected: protected:
friend class FrameSite; friend class FrameSite;