mailr13499 - /branches/gui_testing/gui/wizard.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on July 07, 2011 - 17:38:
Author: bugman
Date: Thu Jul  7 17:38:46 2011
New Revision: 13499

URL: http://svn.gna.org/viewcvs/relax?rev=13499&view=rev
Log:
Add the divider, padding and spacing args to the wizard page file_selection() 
method.


Modified:
    branches/gui_testing/gui/wizard.py

Modified: branches/gui_testing/gui/wizard.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/wizard.py?rev=13499&r1=13498&r2=13499&view=diff
==============================================================================
--- branches/gui_testing/gui/wizard.py (original)
+++ branches/gui_testing/gui/wizard.py Thu Jul  7 17:38:46 2011
@@ -487,7 +487,7 @@
         return combo
 
 
-    def file_selection(self, sizer, desc, title='File selection', 
default="all files (*.*)|*", tooltip=None):
+    def file_selection(self, sizer, desc, title='File selection', 
default="all files (*.*)|*", tooltip=None, divider=None, padding=0, 
spacer=None):
         """Build the file selection element.
 
         @param sizer:       The sizer to put the input field into.
@@ -500,20 +500,33 @@
         @type default:      str
         @keyword tooltip:   The tooltip which appears on hovering over all 
the GUI elements.
         @type tooltip:      str
+        @keyword divider:   The optional position of the divider.  If None, 
the class variable _div_left will be used.
+        @type divider:      None or int
+        @keyword padding:   Spacing to the left and right of the widgets.
+        @type padding:      int
+        @keyword spacer:    The amount of spacing to add below the field in 
pixels.  If None, a stretchable spacer will be used.
+        @type spacer:       None or int
         @return:            The file selection GUI element.
         @rtype:             wx.TextCtrl
         """
 
         # Init.
         sub_sizer = wx.BoxSizer(wx.HORIZONTAL)
+
+        # Left padding.
+        sub_sizer.AddSpacer(padding)
 
         # The description.
         text = wx.StaticText(self, -1, desc, style=wx.ALIGN_LEFT)
         sub_sizer.Add(text, 0, wx.LEFT|wx.ALIGN_CENTER_VERTICAL, 0)
 
+        # The divider.
+        if not divider:
+            divider = self._div_left
+
         # Spacing.
         x, y = text.GetSize()
-        sub_sizer.AddSpacer((self._div_left - x, 0))
+        sub_sizer.AddSpacer((divider - x, 0))
 
         # The input field.
         field = wx.TextCtrl(self, -1, '')
@@ -526,12 +539,20 @@
         # The file selection button.
         button = wx.BitmapButton(self, -1, wx.Bitmap(paths.icon_16x16.open, 
wx.BITMAP_TYPE_ANY))
         button.SetMinSize((27, 27))
-        sub_sizer.Add(button, 0, wx.ADJUST_MINSIZE, 0)
+        sub_sizer.Add(button, 0, wx.ADJUST_MINSIZE|wx.ALIGN_CENTER_VERTICAL, 
0)
         self.Bind(wx.EVT_BUTTON, obj.select, button)
 
+        # Right padding.
+        sub_sizer.AddSpacer(padding)
+
         # Add to the main sizer (followed by stretchable spacing).
-        sizer.Add(sub_sizer)
-        sizer.AddStretchSpacer()
+        sizer.Add(sub_sizer, 1, wx.EXPAND|wx.ALL, 0)
+
+        # Spacing below the widget.
+        if spacer == None:
+            sizer.AddStretchSpacer()
+        else:
+            sizer.AddSpacer(spacer)
 
         # Tooltip.
         if tooltip:




Related Messages


Powered by MHonArc, Updated Thu Jul 07 18:20:02 2011