Changeset 24

Show
Ignore:
Timestamp:
02/15/02 22:11:00 (7 years ago)
Author:
sholloway
Message:

*** empty log message ***

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/RBSkinning/RBSkinning/test.skin

    r21 r24  
    2929                                <layout_spacer size='(10, -1)' /> 
    3030                                <toggle_button label='toggle button 2' /> 
     31                                <layout_spacer size='(10, -1)' /> 
     32                                <line size='(1, 20)' style='wxLI_VERTICAL' sizerFlag='wxEXPAND' /> 
    3133                                <layout_spacer size='(10, -1)' /> 
    3234                                <check label='check 1' value='1'/> 
  • trunk/RBSkinning/RBSkinning/wxPythonSkin/splitter.py

    r23 r24  
    1919        'style':        'wxSP_3D | wxCLIP_CHILDREN', 
    2020        'orientation':  'vertical', 
    21         'sashPos':      '100', 
    22         'minPaneSize':  '20', 
     21        'splitterPos':      '300', 
     22        'splitterMinSize':  '50', 
    2323        }) 
    2424 
     
    4141        elif self.settings['orientation'] == 'horizontal': 
    4242            self.object.SplitHorizontally(childWindows[0], childWindows[1]) 
    43         self.object.SetMinimumPaneSize(self.wxEval('minPaneSize')) 
    44         self.object.SetSashPosition(self.wxEval('sashPos')) 
    4543        self.AddToLayout() 
     44        self.object.SetSashPosition(self.wxEval('splitterPos')) 
     45        self.object.SetMinimumPaneSize(self.wxEval('splitterMinSize')) 
    4646