mailr10539 - /branches/bieri_gui/gui_bieri/analyses/auto_rx_base.py


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

Header


Content

Posted by edward on January 28, 2010 - 18:17:
Author: bugman
Date: Thu Jan 28 18:17:30 2010
New Revision: 10539

URL: http://svn.gna.org/viewcvs/relax?rev=10539&view=rev
Log:
Shifted the parent GUI element creation into the Auto_rx base class.


Modified:
    branches/bieri_gui/gui_bieri/analyses/auto_rx_base.py

Modified: branches/bieri_gui/gui_bieri/analyses/auto_rx_base.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/analyses/auto_rx_base.py?rev=10539&r1=10538&r2=10539&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/analyses/auto_rx_base.py (original)
+++ branches/bieri_gui/gui_bieri/analyses/auto_rx_base.py Thu Jan 28 18:17:30 
2010
@@ -62,13 +62,19 @@
         # Generate a storage container in the relax data store, and alias it 
for easy access.
         self.data = ds.relax_gui.analyses.add(self.analysis_type)
 
+        # The parent GUI element for this class.
+        self.parent = wx.Panel(notebook, -1)
+
         # Build and pack the main sizer box, then add it to the automatic 
model-free analysis frame.
-        #main_box = self.build_main_box()
-        #self.gui.modelfree.SetSizer(main_box)
-
-        ## Set the frame font size.
-        #self.gui.modelfree.SetFont(wx.Font(8, wx.DEFAULT, wx.NORMAL, 
wx.NORMAL, 0, ""))
-
+        main_box = self.build_main_box()
+        self.parent.SetSizer(main_box)
+
+        # Set the frame font size.
+        self.parent.SetFont(wx.Font(8, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, 
""))
+
+
+    def build_main_box(self):
+        return
         # R1 no. 1
         self.bitmap_1_copy_copy = wx.StaticBitmap(self.r1_1, -1, 
wx.Bitmap(IMAGE_PATH+'r1.png', wx.BITMAP_TYPE_ANY))
         self.label_4_copy_copy = wx.StaticText(self.r1_1, -1, "Set-up for R1 
relaxation analysis:")




Related Messages


Powered by MHonArc, Updated Thu Jan 28 18:40:02 2010