Version 0.4.1 for wxGTK

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@809 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
1998-10-07 07:35:36 +00:00
parent e86d366cab
commit b26e2dc41d
26 changed files with 3275 additions and 918 deletions

View File

@@ -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 wxp
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
wxp._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
wxp._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
wxp._StdWindowCallbacks(self)
wxp._StdOnScrollCallbacks(self)