X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a6cb8040a8f73935791c44b8f1b8ac4711cb84f6..38d4ee871b07587238e5a326d93e6976868ba7c1:/wxPython/wx/lib/splitter.py diff --git a/wxPython/wx/lib/splitter.py b/wxPython/wx/lib/splitter.py index a56a8b696d..6a819a41ac 100644 --- a/wxPython/wx/lib/splitter.py +++ b/wxPython/wx/lib/splitter.py @@ -17,7 +17,6 @@ more than once. """ import wx -import sys _RENDER_VER = (2,6,1,1) @@ -134,7 +133,7 @@ class MultiSplitterWindow(wx.PyPanel): of the window stack. If sashPos is given then it is used to size the new window. """ - self.InsertWindow(sys.maxint, window, sashPos) + self.InsertWindow(len(self._windows), window, sashPos) def InsertWindow(self, idx, window, sashPos=-1): @@ -210,6 +209,16 @@ class MultiSplitterWindow(wx.PyPanel): return self._sashes[idx] + def SetSashPosition(self, idx, pos): + """ + Set the psition of the idx'th sash, measured from the left/top + of the window preceding the sash. + """ + assert idx < len(self._sashes) + self._sashes[idx] = pos + self._SizeWindows() + + def SizeWindows(self): """ Reposition and size the windows managed by the splitter.