Package gui :: Package components :: Module software
[hide private]
[frames] | no frames]

Source Code for Module gui.components.software

  1  ############################################################################### 
  2  #                                                                             # 
  3  # Copyright (C) 2009-2011 Michael Bieri                                       # 
  4  # Copyright (C) 2010-2013 Edward d'Auvergne                                   # 
  5  #                                                                             # 
  6  # This file is part of the program relax (http://www.nmr-relax.com).          # 
  7  #                                                                             # 
  8  # This program is free software: you can redistribute it and/or modify        # 
  9  # it under the terms of the GNU General Public License as published by        # 
 10  # the Free Software Foundation, either version 3 of the License, or           # 
 11  # (at your option) any later version.                                         # 
 12  #                                                                             # 
 13  # This program is distributed in the hope that it will be useful,             # 
 14  # but WITHOUT ANY WARRANTY; without even the implied warranty of              # 
 15  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               # 
 16  # GNU General Public License for more details.                                # 
 17  #                                                                             # 
 18  # You should have received a copy of the GNU General Public License           # 
 19  # along with this program.  If not, see <http://www.gnu.org/licenses/>.       # 
 20  #                                                                             # 
 21  ############################################################################### 
 22   
 23  # Module docstring. 
 24  """Module containing the software GUI element for listing the software used in the analysis.""" 
 25   
 26  # relax module imports. 
 27  from graphics import fetch_icon 
 28  from gui.components.base_list import Base_list 
 29  from gui.string_conv import str_to_gui 
 30  from gui.uf_objects import Uf_storage; uf_store = Uf_storage() 
 31   
 32   
33 -class Software(Base_list):
34 """The GUI element for listing the software used in the analysis.""" 35
36 - def action_bmrb_software(self, event):
37 """Launch the bmrb.software user function. 38 39 @param event: The wx event. 40 @type event: wx event 41 """ 42 43 # Launch the dialog. 44 uf_store['bmrb.software'](wx_parent=self.parent)
45 46
47 - def action_bmrb_software_select(self, event):
48 """Launch the bmrb.software_select user function. 49 50 @param event: The wx event. 51 @type event: wx event 52 """ 53 54 # Launch the dialog. 55 uf_store['bmrb.software_select'](wx_parent=self.parent)
56 57
58 - def setup(self):
59 """Override the base variables.""" 60 61 # GUI variables. 62 self.title = "Software" 63 self.observer_base_name = "software" 64 self.button_placement = 'bottom' 65 66 # The column titles. 67 self.columns = [ 68 "Program name" 69 ] 70 71 # Button set up. 72 self.button_info = [ 73 { 74 'object': 'button_add', 75 'label': ' Add', 76 'icon': fetch_icon('oxygen.actions.list-add-relax-blue', "22x22"), 77 'method': self.action_bmrb_software, 78 'tooltip': "Specify the software used in the analysis." 79 }, { 80 'object': 'button_select', 81 'label': ' Select', 82 'icon': fetch_icon('oxygen.actions.edit-select', "22x22"), 83 'method': self.action_bmrb_software_select, 84 'tooltip': "Select the software used in the analysis." 85 } 86 ]
87 88
89 - def update_data(self):
90 """Method called from self.build_element_safe() to update the list data.""" 91 92 # Expand the number of rows to match the number of entries, and add the data. 93 n = 0 94 if hasattr(cdp, 'exp_info') and hasattr(cdp.exp_info, 'software'): 95 n = len(cdp.exp_info.software) 96 for i in range(n): 97 # Set the software name. 98 self.element.InsertStringItem(i, str_to_gui(cdp.exp_info.software[i].name))
99