X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/70551f4702bfdd1796be68bc4c24503d229a05c5..a91b47e800c78dbf8e91191ce3977d148a13f1fe:/utils/wxPython/src/gtk/mdi.py diff --git a/utils/wxPython/src/gtk/mdi.py b/utils/wxPython/src/gtk/mdi.py index fad0e58dcc..3bd0fa00a1 100644 --- a/utils/wxPython/src/gtk/mdi.py +++ b/utils/wxPython/src/gtk/mdi.py @@ -6,6 +6,15 @@ from misc import * from windows import * from gdi import * + +from frames import * + +from stattool import * + +from controls import * + +from events import * +import wx class wxMDIParentFramePtr(wxFramePtr): def __init__(self,this): self.this = this @@ -52,6 +61,7 @@ class wxMDIParentFrame(wxMDIParentFramePtr): args = tuple(argl) self.this = apply(mdic.new_wxMDIParentFrame,(arg0.this,arg1,arg2,)+args) self.thisown = 1 + wx._StdFrameCallbacks(self) @@ -90,6 +100,7 @@ class wxMDIChildFrame(wxMDIChildFramePtr): args = tuple(argl) self.this = apply(mdic.new_wxMDIChildFrame,(arg0.this,arg1,arg2,)+args) self.thisown = 1 + wx._StdFrameCallbacks(self) @@ -104,6 +115,8 @@ class wxMDIClientWindow(wxMDIClientWindowPtr): def __init__(self,arg0,*args) : self.this = apply(mdic.new_wxMDIClientWindow,(arg0.this,)+args) self.thisown = 1 + wx._StdWindowCallbacks(self) + wx._StdOnScrollCallbacks(self)