X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b5a5d6473c0f5339854a4105a57c6a733632f073..4e1c35f810f574af79e649fa37171dfa7fc775ee:/wxPython/src/msw/frames.py?ds=sidebyside diff --git a/wxPython/src/msw/frames.py b/wxPython/src/msw/frames.py index dc3cc8ef01..d2ac054f6a 100644 --- a/wxPython/src/msw/frames.py +++ b/wxPython/src/msw/frames.py @@ -5,6 +5,8 @@ from misc import * from gdi import * +from fonts import * + from windows import * from clip_dnd import * @@ -44,6 +46,9 @@ class wxTopLevelWindowPtr(wxWindowPtr): def SetIcon(self, *_args, **_kwargs): val = apply(framesc.wxTopLevelWindow_SetIcon,(self,) + _args, _kwargs) return val + def SetIcons(self, *_args, **_kwargs): + val = apply(framesc.wxTopLevelWindow_SetIcons,(self,) + _args, _kwargs) + return val def ShowFullScreen(self, *_args, **_kwargs): val = apply(framesc.wxTopLevelWindow_ShowFullScreen,(self,) + _args, _kwargs) return val @@ -229,6 +234,7 @@ class wxSplashScreenWindow(wxSplashScreenWindowPtr): def __init__(self,*_args,**_kwargs): self.this = apply(framesc.new_wxSplashScreenWindow,_args,_kwargs) self.thisown = 1 + self._setOORInfo(self) @@ -253,6 +259,7 @@ class wxSplashScreen(wxSplashScreenPtr): def __init__(self,*_args,**_kwargs): self.this = apply(framesc.new_wxSplashScreen,_args,_kwargs) self.thisown = 1 + self._setOORInfo(self)