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

Source Code for Module gui.components.software

  1  ############################################################################### 
  2  #                                                                             # 
  3  # Copyright (C) 2009-2010 Michael Bieri                                       # 
  4  # Copyright (C) 2009-2012 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  import dep_check 
 28  from graphics import fetch_icon 
 29  from gui.components.base_list import Base_list 
 30  from gui.string_conv import str_to_gui 
 31  from gui.uf_objects import Uf_storage; uf_store = Uf_storage() 
 32   
 33   
34 -class Software(Base_list):
35 """The GUI element for listing the software used in the analysis.""" 36
37 - def action_bmrb_software(self, event):
38 """Launch the bmrb.software user function. 39 40 @param event: The wx event. 41 @type event: wx event 42 """ 43 44 # Launch the dialog. 45 uf_store['bmrb.software'](wx_parent=self.parent)
46 47
48 - def action_bmrb_software_select(self, event):
49 """Launch the bmrb.software_select user function. 50 51 @param event: The wx event. 52 @type event: wx event 53 """ 54 55 # Launch the dialog. 56 uf_store['bmrb.software_select'](wx_parent=self.parent)
57 58
59 - def setup(self):
60 """Override the base variables.""" 61 62 # GUI variables. 63 self.title = "Software" 64 self.observer_base_name = "software" 65 self.button_placement = 'bottom' 66 67 # The column titles. 68 self.columns = [ 69 "Program name" 70 ] 71 72 # Button set up. 73 self.button_info = [ 74 { 75 'object': 'button_add', 76 'label': ' Add', 77 'icon': fetch_icon('oxygen.actions.list-add-relax-blue', "22x22"), 78 'method': self.action_bmrb_software, 79 'tooltip': "Specify the software used in the analysis." 80 }, { 81 'object': 'button_select', 82 'label': ' Select', 83 'icon': fetch_icon('oxygen.actions.edit-select', "22x22"), 84 'method': self.action_bmrb_software_select, 85 'tooltip': "Select the software used in the analysis." 86 } 87 ]
88 89
90 - def update_data(self):
91 """Method called from self.build_element_safe() to update the list data.""" 92 93 # Expand the number of rows to match the number of entries, and add the data. 94 n = 0 95 if hasattr(cdp, 'exp_info') and hasattr(cdp.exp_info, 'software'): 96 n = len(cdp.exp_info.software) 97 for i in range(n): 98 # Set the software name. 99 if dep_check.wx_classic: 100 self.element.InsertStringItem(i, str_to_gui(cdp.exp_info.software[i].name)) 101 else: 102 self.element.InsertItem(i, str_to_gui(cdp.exp_info.software[i].name))
103