mailr12989 - /1.3/gui/components/spectrum.py


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

Header


Content

Posted by edward on June 14, 2011 - 15:43:
Author: bugman
Date: Tue Jun 14 15:43:19 2011
New Revision: 12989

URL: http://svn.gna.org/viewcvs/relax?rev=12989&view=rev
Log:
The resize event is now bound to the grid and the first column now expands 
with the window.


Modified:
    1.3/gui/components/spectrum.py

Modified: 1.3/gui/components/spectrum.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/gui/components/spectrum.py?rev=12989&r1=12988&r2=12989&view=diff
==============================================================================
--- 1.3/gui/components/spectrum.py (original)
+++ 1.3/gui/components/spectrum.py Tue Jun 14 15:43:19 2011
@@ -208,6 +208,11 @@
 class Peak_intensity:
     """The peak list selection class."""
 
+    # Class variables.
+    col_label_width = 40
+    col1_width = 140
+    col2_width = 160
+
     def __init__(self, gui=None, parent=None, subparent=None, data=None, 
label=None, width=688, height=300, box=None):
         """Build the peak list reading GUI element.
 
@@ -263,9 +268,6 @@
         self.add_grid(box_centre)
         box_centre.AddSpacer(self.spacing)
 
-        # Catch a resize.
-        stat_box.Bind(wx.EVT_SIZE, self.resize)
-
 
     def resize(self, event):
         """Catch the resize to allow the grid to be resized.
@@ -274,9 +276,17 @@
         @type event:    wx event
         """
 
-        # Print out.
-        if status.debug:
-            print "Event size: %s" % event.GetSize()
+        # The new grid size.
+        x, y = event.GetSize()
+
+        # The expandable column width.
+        width = x - self.col_label_width - self.col1_width - self.col2_width 
- 10
+
+        # Set the column sizes.
+        self.grid.SetRowLabelSize(self.col_label_width)
+        self.grid.SetColSize(0, width)
+        self.grid.SetColSize(1, self.col1_width)
+        self.grid.SetColSize(2, self.col2_width)
 
         # Continue with the normal resizing.
         event.Skip()
@@ -345,12 +355,6 @@
         self.grid.SetColLabelValue(1, "No. of cycles")
         self.grid.SetColLabelValue(2, "Relaxation delay [s]")
 
-        # Set the sizes.
-        self.grid.SetRowLabelSize(40)
-        self.grid.SetColSize(0, 320)
-        self.grid.SetColSize(1, 140)
-        self.grid.SetColSize(2, 160)
-
         # Column properties.
         for i in range(self.grid.GetNumberRows()):
             # Set the editor for the number of cycles column.
@@ -362,6 +366,7 @@
         # Bind some events.
         self.grid.GetGridWindow().Bind(wx.EVT_LEFT_DCLICK, 
self.event_left_dclick)
         self.grid.Bind(wx.EVT_KEY_DOWN, self.event_key_down)
+        self.grid.Bind(wx.EVT_SIZE, self.resize)
 
         # Add grid to sizer, with spacing.
         sizer.Add(self.grid, 1, wx.ALL|wx.EXPAND, 0)




Related Messages


Powered by MHonArc, Updated Tue Jun 14 16:00:01 2011