text in the demo for more details of what this means, but in a nutshell methods such as wxWindow.GetParent or FindWindowById will now return a shadow object of the proper type if it can. By "proper type" I mean that if the wxWindow pointer returned from FindWindowById really points to a wxButton then the Python object constructed will be of a wxButtonPtr class instead of wxWindowPtr as before. This should reduce or eliminiate the need for wxPyTypeCast. (Woo Hoo!) The objects returned are still not the original Python object, but that is the next step. (Although it will probably only work on Python 2.1 and beyond because it will use weak references.) A few other minor tweaks and fixes and additions for things found while doing the OOR stuff. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10202 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
232 lines
9.4 KiB
Python
232 lines
9.4 KiB
Python
# This file was created automatically by SWIG.
|
|
import windows2c
|
|
|
|
from misc import *
|
|
|
|
from gdi import *
|
|
|
|
from windows import *
|
|
|
|
from clip_dnd import *
|
|
|
|
from controls import *
|
|
|
|
from events import *
|
|
import wx
|
|
class wxNotebookEventPtr(wxNotifyEventPtr):
|
|
def __init__(self,this):
|
|
self.this = this
|
|
self.thisown = 0
|
|
def GetSelection(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebookEvent_GetSelection,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetOldSelection(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebookEvent_GetOldSelection,(self,) + _args, _kwargs)
|
|
return val
|
|
def SetOldSelection(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebookEvent_SetOldSelection,(self,) + _args, _kwargs)
|
|
return val
|
|
def SetSelection(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebookEvent_SetSelection,(self,) + _args, _kwargs)
|
|
return val
|
|
def __repr__(self):
|
|
return "<C wxNotebookEvent instance at %s>" % (self.this,)
|
|
class wxNotebookEvent(wxNotebookEventPtr):
|
|
def __init__(self,this):
|
|
self.this = this
|
|
|
|
|
|
|
|
|
|
class wxNotebookPtr(wxControlPtr):
|
|
def __init__(self,this):
|
|
self.this = this
|
|
self.thisown = 0
|
|
def GetPageCount(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_GetPageCount,(self,) + _args, _kwargs)
|
|
return val
|
|
def SetSelection(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_SetSelection,(self,) + _args, _kwargs)
|
|
return val
|
|
def AdvanceSelection(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_AdvanceSelection,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetSelection(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_GetSelection,(self,) + _args, _kwargs)
|
|
return val
|
|
def SetPageText(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_SetPageText,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetPageText(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_GetPageText,(self,) + _args, _kwargs)
|
|
return val
|
|
def SetImageList(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_SetImageList,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetImageList(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_GetImageList,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetPageImage(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_GetPageImage,(self,) + _args, _kwargs)
|
|
return val
|
|
def SetPageImage(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_SetPageImage,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetRowCount(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_GetRowCount,(self,) + _args, _kwargs)
|
|
return val
|
|
def SetPageSize(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_SetPageSize,(self,) + _args, _kwargs)
|
|
return val
|
|
def SetPadding(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_SetPadding,(self,) + _args, _kwargs)
|
|
return val
|
|
def DeletePage(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_DeletePage,(self,) + _args, _kwargs)
|
|
return val
|
|
def RemovePage(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_RemovePage,(self,) + _args, _kwargs)
|
|
return val
|
|
def DeleteAllPages(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_DeleteAllPages,(self,) + _args, _kwargs)
|
|
return val
|
|
def AddPage(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_AddPage,(self,) + _args, _kwargs)
|
|
return val
|
|
def InsertPage(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_InsertPage,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetPage(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_GetPage,(self,) + _args, _kwargs)
|
|
return val
|
|
def ResizeChildren(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxNotebook_ResizeChildren,(self,) + _args, _kwargs)
|
|
return val
|
|
def __repr__(self):
|
|
return "<C wxNotebook instance at %s>" % (self.this,)
|
|
class wxNotebook(wxNotebookPtr):
|
|
def __init__(self,*_args,**_kwargs):
|
|
self.this = apply(windows2c.new_wxNotebook,_args,_kwargs)
|
|
self.thisown = 1
|
|
#wx._StdWindowCallbacks(self)
|
|
|
|
|
|
|
|
|
|
class wxSplitterEventPtr(wxCommandEventPtr):
|
|
def __init__(self,this):
|
|
self.this = this
|
|
self.thisown = 0
|
|
def GetSashPosition(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterEvent_GetSashPosition,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetX(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterEvent_GetX,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetY(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterEvent_GetY,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetWindowBeingRemoved(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterEvent_GetWindowBeingRemoved,(self,) + _args, _kwargs)
|
|
return val
|
|
def SetSashPosition(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterEvent_SetSashPosition,(self,) + _args, _kwargs)
|
|
return val
|
|
def __repr__(self):
|
|
return "<C wxSplitterEvent instance at %s>" % (self.this,)
|
|
class wxSplitterEvent(wxSplitterEventPtr):
|
|
def __init__(self,this):
|
|
self.this = this
|
|
|
|
|
|
|
|
|
|
class wxSplitterWindowPtr(wxWindowPtr):
|
|
def __init__(self,this):
|
|
self.this = this
|
|
self.thisown = 0
|
|
def GetBorderSize(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_GetBorderSize,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetMinimumPaneSize(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_GetMinimumPaneSize,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetSashPosition(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_GetSashPosition,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetSashSize(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_GetSashSize,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetSplitMode(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_GetSplitMode,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetWindow1(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_GetWindow1,(self,) + _args, _kwargs)
|
|
return val
|
|
def GetWindow2(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_GetWindow2,(self,) + _args, _kwargs)
|
|
return val
|
|
def Initialize(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_Initialize,(self,) + _args, _kwargs)
|
|
return val
|
|
def IsSplit(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_IsSplit,(self,) + _args, _kwargs)
|
|
return val
|
|
def ReplaceWindow(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_ReplaceWindow,(self,) + _args, _kwargs)
|
|
return val
|
|
def SetBorderSize(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_SetBorderSize,(self,) + _args, _kwargs)
|
|
return val
|
|
def SetSashPosition(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_SetSashPosition,(self,) + _args, _kwargs)
|
|
return val
|
|
def SetSashSize(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_SetSashSize,(self,) + _args, _kwargs)
|
|
return val
|
|
def SetMinimumPaneSize(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_SetMinimumPaneSize,(self,) + _args, _kwargs)
|
|
return val
|
|
def SetSplitMode(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_SetSplitMode,(self,) + _args, _kwargs)
|
|
return val
|
|
def SplitHorizontally(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_SplitHorizontally,(self,) + _args, _kwargs)
|
|
return val
|
|
def SplitVertically(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_SplitVertically,(self,) + _args, _kwargs)
|
|
return val
|
|
def Unsplit(self, *_args, **_kwargs):
|
|
val = apply(windows2c.wxSplitterWindow_Unsplit,(self,) + _args, _kwargs)
|
|
return val
|
|
def __repr__(self):
|
|
return "<C wxSplitterWindow instance at %s>" % (self.this,)
|
|
class wxSplitterWindow(wxSplitterWindowPtr):
|
|
def __init__(self,*_args,**_kwargs):
|
|
self.this = apply(windows2c.new_wxSplitterWindow,_args,_kwargs)
|
|
self.thisown = 1
|
|
#wx._StdWindowCallbacks(self)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#-------------- FUNCTION WRAPPERS ------------------
|
|
|
|
|
|
|
|
#-------------- VARIABLE WRAPPERS ------------------
|
|
|
|
wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED = windows2c.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
|
|
wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING = windows2c.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
|
|
wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING = windows2c.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
|
|
wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED = windows2c.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
|
|
wxEVT_COMMAND_SPLITTER_UNSPLIT = windows2c.wxEVT_COMMAND_SPLITTER_UNSPLIT
|
|
wxEVT_COMMAND_SPLITTER_DOUBLECLICKED = windows2c.wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
|
|
wxSPLIT_HORIZONTAL = windows2c.wxSPLIT_HORIZONTAL
|
|
wxSPLIT_VERTICAL = windows2c.wxSPLIT_VERTICAL
|
|
wxSPLIT_DRAG_NONE = windows2c.wxSPLIT_DRAG_NONE
|
|
wxSPLIT_DRAG_DRAGGING = windows2c.wxSPLIT_DRAG_DRAGGING
|
|
wxSPLIT_DRAG_LEFT_DOWN = windows2c.wxSPLIT_DRAG_LEFT_DOWN
|