mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-10 05:47:09 +01:00
Add SashInvisible property
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75830 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -44,6 +44,9 @@ def run():
|
||||
c.find('OnDoubleClickSash').ignore()
|
||||
c.find('OnSashPositionChange').ignore()
|
||||
c.find('OnUnsplit').ignore()
|
||||
|
||||
c.addAutoProperties()
|
||||
c.addProperty('SashInvisible', 'IsSashInvisible', 'SetSashInvisible')
|
||||
|
||||
|
||||
c = module.find('wxSplitterEvent')
|
||||
|
||||
@@ -19,7 +19,12 @@ class splitter_Tests(wtc.WidgetTestCase):
|
||||
sw.SetMinimumPaneSize(25)
|
||||
sw.SetSashPosition(150)
|
||||
sw.SetSashGravity(0.75)
|
||||
|
||||
|
||||
def test_splitterProperties(self):
|
||||
sw = wx.SplitterWindow(self.frame)
|
||||
|
||||
# just checks if they exist
|
||||
sw.MinimumPaneSize
|
||||
sw.SashGravity
|
||||
sw.SashPosition
|
||||
@@ -27,6 +32,7 @@ class splitter_Tests(wtc.WidgetTestCase):
|
||||
sw.SplitMode
|
||||
sw.Window1
|
||||
sw.Window2
|
||||
sw.SashInvisible
|
||||
|
||||
|
||||
def test_splitterFlags(self):
|
||||
|
||||
Reference in New Issue
Block a user