X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/de7b7fe6f65766e9f15a996c7ee8105a7eaa78eb..f6d43eda3e8bc5c17cd3c55f037abcc4a4e043be:/wxPython/contrib/iewin/iewin.py diff --git a/wxPython/contrib/iewin/iewin.py b/wxPython/contrib/iewin/iewin.py index c0e4222210..1ed4991ea9 100644 --- a/wxPython/contrib/iewin/iewin.py +++ b/wxPython/contrib/iewin/iewin.py @@ -3,27 +3,74 @@ import _iewin -import core -wx = core -class MSHTMLEvent(core.NotifyEvent): +def _swig_setattr_nondynamic(self,class_type,name,value,static=1): + if (name == "this"): + if isinstance(value, class_type): + self.__dict__[name] = value.this + if hasattr(value,"thisown"): self.__dict__["thisown"] = value.thisown + del value.thisown + return + method = class_type.__swig_setmethods__.get(name,None) + if method: return method(self,value) + if (not static) or hasattr(self,name) or (name == "thisown"): + self.__dict__[name] = value + else: + raise AttributeError("You cannot add attributes to %s" % self) + +def _swig_setattr(self,class_type,name,value): + return _swig_setattr_nondynamic(self,class_type,name,value,0) + +def _swig_getattr(self,class_type,name): + method = class_type.__swig_getmethods__.get(name,None) + if method: return method(self) + raise AttributeError,name + +import types +try: + _object = types.ObjectType + _newclass = 1 +except AttributeError: + class _object : pass + _newclass = 0 +del types + + +def _swig_setattr_nondynamic_method(set): + def set_attr(self,name,value): + if hasattr(self,name) or (name in ("this", "thisown")): + set(self,name,value) + else: + raise AttributeError("You cannot add attributes to %s" % self) + return set_attr + + +import _core +wx = _core +__docfilter__ = wx.__DocFilter(globals()) +import warnings +warnings.warn("This module is deprecated. Please use the wx.lib.iewin module instead.", + DeprecationWarning, stacklevel=2) + +class MSHTMLEvent(_core.NotifyEvent): + """Proxy of C++ MSHTMLEvent class""" def __repr__(self): return "<%s.%s; proxy of C++ wxMSHTMLEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) def __init__(self, *args, **kwargs): - """__init__(wxEventType commandType=wxEVT_NULL, int id=0) -> MSHTMLEvent""" + """__init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> MSHTMLEvent""" newobj = _iewin.new_MSHTMLEvent(*args, **kwargs) self.this = newobj.this self.thisown = 1 del newobj.thisown def GetText1(*args, **kwargs): - """GetText1() -> String""" + """GetText1(self) -> String""" return _iewin.MSHTMLEvent_GetText1(*args, **kwargs) def GetLong1(*args, **kwargs): - """GetLong1() -> long""" + """GetLong1(self) -> long""" return _iewin.MSHTMLEvent_GetLong1(*args, **kwargs) def GetLong2(*args, **kwargs): - """GetLong2() -> long""" + """GetLong2(self) -> long""" return _iewin.MSHTMLEvent_GetLong2(*args, **kwargs) @@ -51,12 +98,13 @@ IEHTML_REFRESH_NORMAL = _iewin.IEHTML_REFRESH_NORMAL IEHTML_REFRESH_IFEXPIRED = _iewin.IEHTML_REFRESH_IFEXPIRED IEHTML_REFRESH_CONTINUE = _iewin.IEHTML_REFRESH_CONTINUE IEHTML_REFRESH_COMPLETELY = _iewin.IEHTML_REFRESH_COMPLETELY -class IEHtmlWin(core.Window): +class IEHtmlWin(_core.Window): + """Proxy of C++ IEHtmlWin class""" def __repr__(self): return "<%s.%s; proxy of C++ wxIEHtmlWin instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) def __init__(self, *args, **kwargs): """ - __init__(Window parent, int id=-1, Point pos=DefaultPosition, + __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, Size size=DefaultSize, long style=0, String name=PanelNameStr) -> IEHtmlWin """ newobj = _iewin.new_IEHtmlWin(*args, **kwargs) @@ -66,60 +114,60 @@ class IEHtmlWin(core.Window): self._setOORInfo(self) def LoadUrl(*args, **kwargs): - """LoadUrl(String ??)""" + """LoadUrl(self, String ??)""" return _iewin.IEHtmlWin_LoadUrl(*args, **kwargs) def LoadString(*args, **kwargs): - """LoadString(String html) -> bool""" + """LoadString(self, String html) -> bool""" return _iewin.IEHtmlWin_LoadString(*args, **kwargs) def LoadStream(*args, **kwargs): - """LoadStream(InputStream is) -> bool""" + """LoadStream(self, InputStream is) -> bool""" return _iewin.IEHtmlWin_LoadStream(*args, **kwargs) Navigate = LoadUrl def SetCharset(*args, **kwargs): - """SetCharset(String charset)""" + """SetCharset(self, String charset)""" return _iewin.IEHtmlWin_SetCharset(*args, **kwargs) def SetEditMode(*args, **kwargs): - """SetEditMode(bool seton)""" + """SetEditMode(self, bool seton)""" return _iewin.IEHtmlWin_SetEditMode(*args, **kwargs) def GetEditMode(*args, **kwargs): - """GetEditMode() -> bool""" + """GetEditMode(self) -> bool""" return _iewin.IEHtmlWin_GetEditMode(*args, **kwargs) def GetStringSelection(*args, **kwargs): - """GetStringSelection(bool asHTML=False) -> String""" + """GetStringSelection(self, bool asHTML=False) -> String""" return _iewin.IEHtmlWin_GetStringSelection(*args, **kwargs) def GetText(*args, **kwargs): - """GetText(bool asHTML=False) -> String""" + """GetText(self, bool asHTML=False) -> String""" return _iewin.IEHtmlWin_GetText(*args, **kwargs) def GoBack(*args, **kwargs): - """GoBack() -> bool""" + """GoBack(self) -> bool""" return _iewin.IEHtmlWin_GoBack(*args, **kwargs) def GoForward(*args, **kwargs): - """GoForward() -> bool""" + """GoForward(self) -> bool""" return _iewin.IEHtmlWin_GoForward(*args, **kwargs) def GoHome(*args, **kwargs): - """GoHome() -> bool""" + """GoHome(self) -> bool""" return _iewin.IEHtmlWin_GoHome(*args, **kwargs) def GoSearch(*args, **kwargs): - """GoSearch() -> bool""" + """GoSearch(self) -> bool""" return _iewin.IEHtmlWin_GoSearch(*args, **kwargs) def RefreshPage(*args, **kwargs): - """RefreshPage(int level) -> bool""" + """RefreshPage(self, int level) -> bool""" return _iewin.IEHtmlWin_RefreshPage(*args, **kwargs) def Stop(*args, **kwargs): - """Stop() -> bool""" + """Stop(self) -> bool""" return _iewin.IEHtmlWin_Stop(*args, **kwargs)