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
val = wxWindowPtr(val)
return val
def SetToolBar(self,arg0):
- val = mdic.wxMDIParentFrame_SetToolBar(self.this,arg0)
+ val = mdic.wxMDIParentFrame_SetToolBar(self.this,arg0.this)
return val
def Tile(self):
val = mdic.wxMDIParentFrame_Tile(self.this)
args = tuple(argl)
self.this = apply(mdic.new_wxMDIParentFrame,(arg0.this,arg1,arg2,)+args)
self.thisown = 1
+ wx._StdFrameCallbacks(self)
args = tuple(argl)
self.this = apply(mdic.new_wxMDIChildFrame,(arg0.this,arg1,arg2,)+args)
self.thisown = 1
+ wx._StdFrameCallbacks(self)
def __init__(self,arg0,*args) :
self.this = apply(mdic.new_wxMDIClientWindow,(arg0.this,)+args)
self.thisown = 1
+ wx._StdWindowCallbacks(self)
+ wx._StdOnScrollCallbacks(self)