X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/34138703c3997ce676a1e713d9ff9eb020640da7..03e9bead8a013fd207e9c3e35bcfdba22fef929d:/utils/wxPython/src/wxp.py diff --git a/utils/wxPython/src/wxp.py b/utils/wxPython/src/wxp.py index 42b824eaf2..04621ae9f4 100644 --- a/utils/wxPython/src/wxp.py +++ b/utils/wxPython/src/wxp.py @@ -25,6 +25,9 @@ class wxPyAppPtr(wxEvtHandlerPtr): def GetAppName(self): val = wxpc.wxPyApp_GetAppName(self.this) return val + def GetAuto3D(self): + val = wxpc.wxPyApp_GetAuto3D(self.this) + return val def GetClassName(self): val = wxpc.wxPyApp_GetClassName(self.this) return val @@ -59,6 +62,9 @@ class wxPyAppPtr(wxEvtHandlerPtr): def SetAppName(self,arg0): val = wxpc.wxPyApp_SetAppName(self.this,arg0) return val + def SetAuto3D(self,arg0): + val = wxpc.wxPyApp_SetAuto3D(self.this,arg0) + return val def SetClassName(self,arg0): val = wxpc.wxPyApp_SetClassName(self.this,arg0) return val @@ -311,6 +317,9 @@ wxOPEN = wxpc.wxOPEN wxSAVE = wxpc.wxSAVE wxHIDE_READONLY = wxpc.wxHIDE_READONLY wxOVERWRITE_PROMPT = wxpc.wxOVERWRITE_PROMPT +wxACCEL_ALT = wxpc.wxACCEL_ALT +wxACCEL_CTRL = wxpc.wxACCEL_CTRL +wxACCEL_SHIFT = wxpc.wxACCEL_SHIFT ERR_PARAM = wxpc.ERR_PARAM ERR_NODATA = wxpc.ERR_NODATA ERR_CANCEL = wxpc.ERR_CANCEL @@ -1371,8 +1380,12 @@ class wxApp(wxPyApp): #---------------------------------------------------------------------------- # # $Log$ -# Revision 1.3 1998/08/14 23:36:49 RD -# Beginings of wxGTK compatibility +# Revision 1.4 1998/08/15 07:36:54 RD +# - Moved the header in the .i files out of the code that gets put into +# the .cpp files. It caused CVS conflicts because of the RCS ID being +# different each time. +# +# - A few minor fixes. # # Revision 1.1 1998/08/09 08:25:49 RD # Initial version