| 1 | # This file was created automatically by SWIG 1.3.29. |
| 2 | # Don't modify this file, modify the SWIG interface instead. |
| 3 | |
| 4 | """ |
| 5 | wx.webkit.WebKitCtrl for Mac OSX. |
| 6 | """ |
| 7 | |
| 8 | import _webkit |
| 9 | import new |
| 10 | new_instancemethod = new.instancemethod |
| 11 | def _swig_setattr_nondynamic(self,class_type,name,value,static=1): |
| 12 | if (name == "thisown"): return self.this.own(value) |
| 13 | if (name == "this"): |
| 14 | if type(value).__name__ == 'PySwigObject': |
| 15 | self.__dict__[name] = value |
| 16 | return |
| 17 | method = class_type.__swig_setmethods__.get(name,None) |
| 18 | if method: return method(self,value) |
| 19 | if (not static) or hasattr(self,name): |
| 20 | self.__dict__[name] = value |
| 21 | else: |
| 22 | raise AttributeError("You cannot add attributes to %s" % self) |
| 23 | |
| 24 | def _swig_setattr(self,class_type,name,value): |
| 25 | return _swig_setattr_nondynamic(self,class_type,name,value,0) |
| 26 | |
| 27 | def _swig_getattr(self,class_type,name): |
| 28 | if (name == "thisown"): return self.this.own() |
| 29 | method = class_type.__swig_getmethods__.get(name,None) |
| 30 | if method: return method(self) |
| 31 | raise AttributeError,name |
| 32 | |
| 33 | def _swig_repr(self): |
| 34 | try: strthis = "proxy of " + self.this.__repr__() |
| 35 | except: strthis = "" |
| 36 | return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) |
| 37 | |
| 38 | import types |
| 39 | try: |
| 40 | _object = types.ObjectType |
| 41 | _newclass = 1 |
| 42 | except AttributeError: |
| 43 | class _object : pass |
| 44 | _newclass = 0 |
| 45 | del types |
| 46 | |
| 47 | |
| 48 | def _swig_setattr_nondynamic_method(set): |
| 49 | def set_attr(self,name,value): |
| 50 | if (name == "thisown"): return self.this.own(value) |
| 51 | if hasattr(self,name) or (name == "this"): |
| 52 | set(self,name,value) |
| 53 | else: |
| 54 | raise AttributeError("You cannot add attributes to %s" % self) |
| 55 | return set_attr |
| 56 | |
| 57 | |
| 58 | import _core |
| 59 | wx = _core |
| 60 | __docfilter__ = wx.__DocFilter(globals()) |
| 61 | class WebKitCtrl(_core.Control): |
| 62 | """Proxy of C++ WebKitCtrl class""" |
| 63 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
| 64 | __repr__ = _swig_repr |
| 65 | def __init__(self, *args, **kwargs): |
| 66 | """ |
| 67 | __init__(self, Window parent, int winID=-1, String strURL=EmptyString, |
| 68 | Point pos=DefaultPosition, Size size=DefaultSize, |
| 69 | long style=0, Validator validator=DefaultValidator, |
| 70 | String name=WebKitNameStr) -> WebKitCtrl |
| 71 | """ |
| 72 | _webkit.WebKitCtrl_swiginit(self,_webkit.new_WebKitCtrl(*args, **kwargs)) |
| 73 | self._setOORInfo(self) |
| 74 | |
| 75 | def Create(*args, **kwargs): |
| 76 | """ |
| 77 | Create(self, Window parent, int winID=-1, String strURL=EmptyString, |
| 78 | Point pos=DefaultPosition, Size size=DefaultSize, |
| 79 | long style=0, Validator validator=DefaultValidator, |
| 80 | String name=WebKitNameStr) -> bool |
| 81 | """ |
| 82 | return _webkit.WebKitCtrl_Create(*args, **kwargs) |
| 83 | |
| 84 | def LoadURL(*args, **kwargs): |
| 85 | """LoadURL(self, String url)""" |
| 86 | return _webkit.WebKitCtrl_LoadURL(*args, **kwargs) |
| 87 | |
| 88 | def CanGoBack(*args, **kwargs): |
| 89 | """CanGoBack(self) -> bool""" |
| 90 | return _webkit.WebKitCtrl_CanGoBack(*args, **kwargs) |
| 91 | |
| 92 | def CanGoForward(*args, **kwargs): |
| 93 | """CanGoForward(self) -> bool""" |
| 94 | return _webkit.WebKitCtrl_CanGoForward(*args, **kwargs) |
| 95 | |
| 96 | def GoBack(*args, **kwargs): |
| 97 | """GoBack(self) -> bool""" |
| 98 | return _webkit.WebKitCtrl_GoBack(*args, **kwargs) |
| 99 | |
| 100 | def GoForward(*args, **kwargs): |
| 101 | """GoForward(self) -> bool""" |
| 102 | return _webkit.WebKitCtrl_GoForward(*args, **kwargs) |
| 103 | |
| 104 | def Reload(*args, **kwargs): |
| 105 | """Reload(self)""" |
| 106 | return _webkit.WebKitCtrl_Reload(*args, **kwargs) |
| 107 | |
| 108 | def Stop(*args, **kwargs): |
| 109 | """Stop(self)""" |
| 110 | return _webkit.WebKitCtrl_Stop(*args, **kwargs) |
| 111 | |
| 112 | def CanGetPageSource(*args, **kwargs): |
| 113 | """CanGetPageSource(self) -> bool""" |
| 114 | return _webkit.WebKitCtrl_CanGetPageSource(*args, **kwargs) |
| 115 | |
| 116 | def GetPageSource(*args, **kwargs): |
| 117 | """GetPageSource(self) -> String""" |
| 118 | return _webkit.WebKitCtrl_GetPageSource(*args, **kwargs) |
| 119 | |
| 120 | def SetPageSource(*args, **kwargs): |
| 121 | """SetPageSource(self, String source, String baseUrl=EmptyString)""" |
| 122 | return _webkit.WebKitCtrl_SetPageSource(*args, **kwargs) |
| 123 | |
| 124 | def GetPageURL(*args, **kwargs): |
| 125 | """GetPageURL(self) -> String""" |
| 126 | return _webkit.WebKitCtrl_GetPageURL(*args, **kwargs) |
| 127 | |
| 128 | def GetPageTitle(*args, **kwargs): |
| 129 | """GetPageTitle(self) -> String""" |
| 130 | return _webkit.WebKitCtrl_GetPageTitle(*args, **kwargs) |
| 131 | |
| 132 | def GetSelection(*args, **kwargs): |
| 133 | """GetSelection(self) -> String""" |
| 134 | return _webkit.WebKitCtrl_GetSelection(*args, **kwargs) |
| 135 | |
| 136 | def CanIncreaseTextSize(*args, **kwargs): |
| 137 | """CanIncreaseTextSize(self) -> bool""" |
| 138 | return _webkit.WebKitCtrl_CanIncreaseTextSize(*args, **kwargs) |
| 139 | |
| 140 | def IncreaseTextSize(*args, **kwargs): |
| 141 | """IncreaseTextSize(self)""" |
| 142 | return _webkit.WebKitCtrl_IncreaseTextSize(*args, **kwargs) |
| 143 | |
| 144 | def CanDecreaseTextSize(*args, **kwargs): |
| 145 | """CanDecreaseTextSize(self) -> bool""" |
| 146 | return _webkit.WebKitCtrl_CanDecreaseTextSize(*args, **kwargs) |
| 147 | |
| 148 | def DecreaseTextSize(*args, **kwargs): |
| 149 | """DecreaseTextSize(self)""" |
| 150 | return _webkit.WebKitCtrl_DecreaseTextSize(*args, **kwargs) |
| 151 | |
| 152 | def Print(*args, **kwargs): |
| 153 | """Print(self, bool showPrompt=False)""" |
| 154 | return _webkit.WebKitCtrl_Print(*args, **kwargs) |
| 155 | |
| 156 | def MakeEditable(*args, **kwargs): |
| 157 | """MakeEditable(self, bool enable=True)""" |
| 158 | return _webkit.WebKitCtrl_MakeEditable(*args, **kwargs) |
| 159 | |
| 160 | def IsEditable(*args, **kwargs): |
| 161 | """IsEditable(self) -> bool""" |
| 162 | return _webkit.WebKitCtrl_IsEditable(*args, **kwargs) |
| 163 | |
| 164 | def RunScript(*args, **kwargs): |
| 165 | """RunScript(self, String javascript) -> String""" |
| 166 | return _webkit.WebKitCtrl_RunScript(*args, **kwargs) |
| 167 | |
| 168 | def SetScrollPos(*args, **kwargs): |
| 169 | """SetScrollPos(self, int pos)""" |
| 170 | return _webkit.WebKitCtrl_SetScrollPos(*args, **kwargs) |
| 171 | |
| 172 | def GetScrollPos(*args, **kwargs): |
| 173 | """GetScrollPos(self) -> int""" |
| 174 | return _webkit.WebKitCtrl_GetScrollPos(*args, **kwargs) |
| 175 | |
| 176 | PageSource = property(GetPageSource,SetPageSource,doc="See `GetPageSource` and `SetPageSource`") |
| 177 | PageTitle = property(GetPageTitle,doc="See `GetPageTitle`") |
| 178 | PageURL = property(GetPageURL,doc="See `GetPageURL`") |
| 179 | ScrollPos = property(GetScrollPos,SetScrollPos,doc="See `GetScrollPos and SetScrollPos`") |
| 180 | Selection = property(GetSelection,doc="See `GetSelection`") |
| 181 | _webkit.WebKitCtrl_swigregister(WebKitCtrl) |
| 182 | cvar = _webkit.cvar |
| 183 | WebKitNameStr = cvar.WebKitNameStr |
| 184 | |
| 185 | def PreWebKitCtrl(*args, **kwargs): |
| 186 | """PreWebKitCtrl() -> WebKitCtrl""" |
| 187 | val = _webkit.new_PreWebKitCtrl(*args, **kwargs) |
| 188 | return val |
| 189 | |
| 190 | WEBKIT_STATE_START = _webkit.WEBKIT_STATE_START |
| 191 | WEBKIT_STATE_NEGOTIATING = _webkit.WEBKIT_STATE_NEGOTIATING |
| 192 | WEBKIT_STATE_REDIRECTING = _webkit.WEBKIT_STATE_REDIRECTING |
| 193 | WEBKIT_STATE_TRANSFERRING = _webkit.WEBKIT_STATE_TRANSFERRING |
| 194 | WEBKIT_STATE_STOP = _webkit.WEBKIT_STATE_STOP |
| 195 | WEBKIT_STATE_FAILED = _webkit.WEBKIT_STATE_FAILED |
| 196 | WEBKIT_NAV_LINK_CLICKED = _webkit.WEBKIT_NAV_LINK_CLICKED |
| 197 | WEBKIT_NAV_BACK_NEXT = _webkit.WEBKIT_NAV_BACK_NEXT |
| 198 | WEBKIT_NAV_FORM_SUBMITTED = _webkit.WEBKIT_NAV_FORM_SUBMITTED |
| 199 | WEBKIT_NAV_RELOAD = _webkit.WEBKIT_NAV_RELOAD |
| 200 | WEBKIT_NAV_FORM_RESUBMITTED = _webkit.WEBKIT_NAV_FORM_RESUBMITTED |
| 201 | WEBKIT_NAV_OTHER = _webkit.WEBKIT_NAV_OTHER |
| 202 | wxEVT_WEBKIT_STATE_CHANGED = _webkit.wxEVT_WEBKIT_STATE_CHANGED |
| 203 | wxEVT_WEBKIT_BEFORE_LOAD = _webkit.wxEVT_WEBKIT_BEFORE_LOAD |
| 204 | class WebKitBeforeLoadEvent(_core.CommandEvent): |
| 205 | """Proxy of C++ WebKitBeforeLoadEvent class""" |
| 206 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
| 207 | __repr__ = _swig_repr |
| 208 | def IsCancelled(*args, **kwargs): |
| 209 | """IsCancelled(self) -> bool""" |
| 210 | return _webkit.WebKitBeforeLoadEvent_IsCancelled(*args, **kwargs) |
| 211 | |
| 212 | def Cancel(*args, **kwargs): |
| 213 | """Cancel(self, bool cancel=True)""" |
| 214 | return _webkit.WebKitBeforeLoadEvent_Cancel(*args, **kwargs) |
| 215 | |
| 216 | def GetURL(*args, **kwargs): |
| 217 | """GetURL(self) -> String""" |
| 218 | return _webkit.WebKitBeforeLoadEvent_GetURL(*args, **kwargs) |
| 219 | |
| 220 | def SetURL(*args, **kwargs): |
| 221 | """SetURL(self, String url)""" |
| 222 | return _webkit.WebKitBeforeLoadEvent_SetURL(*args, **kwargs) |
| 223 | |
| 224 | def SetNavigationType(*args, **kwargs): |
| 225 | """SetNavigationType(self, int navType)""" |
| 226 | return _webkit.WebKitBeforeLoadEvent_SetNavigationType(*args, **kwargs) |
| 227 | |
| 228 | def GetNavigationType(*args, **kwargs): |
| 229 | """GetNavigationType(self) -> int""" |
| 230 | return _webkit.WebKitBeforeLoadEvent_GetNavigationType(*args, **kwargs) |
| 231 | |
| 232 | def __init__(self, *args, **kwargs): |
| 233 | """__init__(self, Window win=(wxWindow *) NULL) -> WebKitBeforeLoadEvent""" |
| 234 | _webkit.WebKitBeforeLoadEvent_swiginit(self,_webkit.new_WebKitBeforeLoadEvent(*args, **kwargs)) |
| 235 | NavigationType = property(GetNavigationType,SetNavigationType,doc="See `GetNavigationType` and `SetNavigationType`") |
| 236 | URL = property(GetURL,SetURL,doc="See `GetURL` and `SetURL`") |
| 237 | _webkit.WebKitBeforeLoadEvent_swigregister(WebKitBeforeLoadEvent) |
| 238 | |
| 239 | class WebKitStateChangedEvent(_core.CommandEvent): |
| 240 | """Proxy of C++ WebKitStateChangedEvent class""" |
| 241 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
| 242 | __repr__ = _swig_repr |
| 243 | def __init__(self, *args, **kwargs): |
| 244 | """__init__(self, Window win=None) -> WebKitStateChangedEvent""" |
| 245 | _webkit.WebKitStateChangedEvent_swiginit(self,_webkit.new_WebKitStateChangedEvent(*args, **kwargs)) |
| 246 | def GetState(*args, **kwargs): |
| 247 | """GetState(self) -> int""" |
| 248 | return _webkit.WebKitStateChangedEvent_GetState(*args, **kwargs) |
| 249 | |
| 250 | def SetState(*args, **kwargs): |
| 251 | """SetState(self, int state)""" |
| 252 | return _webkit.WebKitStateChangedEvent_SetState(*args, **kwargs) |
| 253 | |
| 254 | def GetURL(*args, **kwargs): |
| 255 | """GetURL(self) -> String""" |
| 256 | return _webkit.WebKitStateChangedEvent_GetURL(*args, **kwargs) |
| 257 | |
| 258 | def SetURL(*args, **kwargs): |
| 259 | """SetURL(self, String url)""" |
| 260 | return _webkit.WebKitStateChangedEvent_SetURL(*args, **kwargs) |
| 261 | |
| 262 | State = property(GetState,SetState,doc="See `GetState` and `SetState`") |
| 263 | URL = property(GetURL,SetURL,doc="See `GetURL` and `SetURL`") |
| 264 | _webkit.WebKitStateChangedEvent_swigregister(WebKitStateChangedEvent) |
| 265 | |
| 266 | EVT_WEBKIT_STATE_CHANGED = wx.PyEventBinder(wxEVT_WEBKIT_STATE_CHANGED) |
| 267 | EVT_WEBKIT_BEFORE_LOAD = wx.PyEventBinder(wxEVT_WEBKIT_BEFORE_LOAD) |
| 268 | |
| 269 | |
| 270 | |