mailr10448 - /branches/bieri_gui/gui_bieri/analyses/auto_model_free.py


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

Header


Content

Posted by edward on January 27, 2010 - 18:02:
Author: bugman
Date: Wed Jan 27 18:02:31 2010
New Revision: 10448

URL: http://svn.gna.org/viewcvs/relax?rev=10448&view=rev
Log:
Clean up of the structure GUI object names.

The following have been renamed:
    self.structure_file_copy_copy_1_copy -> self.text_structure
    self.structure_r21_copy_1_copy -> self.textctrl_structure
    self.chan_struc_r21_copy_1_copy -> button
    results_dir_copy_copy_copy_copy_copy_1_copy -> box


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

Modified: branches/bieri_gui/gui_bieri/analyses/auto_model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/analyses/auto_model_free.py?rev=10448&r1=10447&r2=10448&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/analyses/auto_model_free.py (original)
+++ branches/bieri_gui/gui_bieri/analyses/auto_model_free.py Wed Jan 27 
18:02:31 2010
@@ -242,29 +242,29 @@
         """
 
         # The elements.
-        self.structure_file_copy_copy_1_copy = 
wx.StaticText(self.gui.modelfree, -1, "Structure file (.pdb)", 
style=wx.ALIGN_RIGHT)
-        self.structure_r21_copy_1_copy = 
StructureTextCtrl(self.gui.modelfree, -1, self.gui.structure_file_pdb_msg)
-        self.structure_r21_copy_1_copy.SetEditable(False)
-        self.chan_struc_r21_copy_1_copy = wx.Button(self.gui.modelfree, -1, 
"Change")
+        self.text_structure = wx.StaticText(self.gui.modelfree, -1, 
"Structure file (.pdb)", style=wx.ALIGN_RIGHT)
+        self.textctrl_structure = StructureTextCtrl(self.gui.modelfree, -1, 
self.gui.structure_file_pdb_msg)
+        self.textctrl_structure.SetEditable(False)
+        button = wx.Button(self.gui.modelfree, -1, "Change")
 
         # Properties.
-        self.structure_file_copy_copy_1_copy.SetMinSize((240, 17))
-        self.structure_file_copy_copy_1_copy.SetFont(wx.Font(10, wx.DEFAULT, 
wx.NORMAL, wx.NORMAL, 0, "Sans"))
-        self.structure_r21_copy_1_copy.SetMinSize((350, 27))
-        self.chan_struc_r21_copy_1_copy.SetMinSize((103, 27))
+        self.text_structure.SetMinSize((240, 17))
+        self.text_structure.SetFont(wx.Font(10, wx.DEFAULT, wx.NORMAL, 
wx.NORMAL, 0, "Sans"))
+        self.textctrl_structure.SetMinSize((350, 27))
+        button.SetMinSize((103, 27))
 
         # Layout.
-        results_dir_copy_copy_copy_copy_copy_1_copy = 
wx.BoxSizer(wx.HORIZONTAL)
-
-        
results_dir_copy_copy_copy_copy_copy_1_copy.Add(self.structure_file_copy_copy_1_copy,
 0, wx.LEFT|wx.ALIGN_CENTER_VERTICAL|wx.ADJUST_MINSIZE, 0)
-        
results_dir_copy_copy_copy_copy_copy_1_copy.Add(self.structure_r21_copy_1_copy,
 0, wx.ALIGN_CENTER_VERTICAL|wx.ADJUST_MINSIZE, 0)
-        
results_dir_copy_copy_copy_copy_copy_1_copy.Add(self.chan_struc_r21_copy_1_copy,
 0, wx.ALIGN_CENTER_VERTICAL|wx.ADJUST_MINSIZE, 10)
+        box = wx.BoxSizer(wx.HORIZONTAL)
+
+        box.Add(self.text_structure, 0, 
wx.LEFT|wx.ALIGN_CENTER_VERTICAL|wx.ADJUST_MINSIZE, 0)
+        box.Add(self.textctrl_structure, 0, 
wx.ALIGN_CENTER_VERTICAL|wx.ADJUST_MINSIZE, 0)
+        box.Add(button, 0, wx.ALIGN_CENTER_VERTICAL|wx.ADJUST_MINSIZE, 10)
 
         # Bind the events.
-        self.gui.Bind(wx.EVT_BUTTON, 
self.structure_r21_copy_1_copy.open_file, self.chan_struc_r21_copy_1_copy)
+        self.gui.Bind(wx.EVT_BUTTON, self.textctrl_structure.open_file, 
button)
 
         # Add the element to the box.
-        box.Add(results_dir_copy_copy_copy_copy_copy_1_copy, 1, wx.EXPAND, 0)
+        box.Add(box, 1, wx.EXPAND, 0)
 
 
     def add_relax_data_input(self, box):
@@ -853,9 +853,9 @@
  
         # The structure file.
         if upload:
-            self.data.structure_file = 
str(self.structure_r21_copy_1_copy.GetValue())
+            self.data.structure_file = 
str(self.textctrl_structure.GetValue())
         else:
-            self.structure_r21_copy_1_copy.SetValue(structure_file)
+            self.textctrl_structure.SetValue(structure_file)
 
         # Unresolved residues.
         if upload:




Related Messages


Powered by MHonArc, Updated Wed Jan 27 18:20:02 2010