Changeset 51fb7ab in sasview for invariantview/perspectives/invariant
- Timestamp:
- Jul 27, 2010 4:23:27 PM (14 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- d318616
- Parents:
- 8898e963
- Location:
- invariantview/perspectives/invariant
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
invariantview/perspectives/invariant/invariant.py
r9c1f463 r51fb7ab 280 280 self.__data.group_id = datainfo.filename 281 281 self.__data.id = datainfo.filename 282 282 283 283 temp_state = copy.deepcopy(state) 284 284 -
invariantview/perspectives/invariant/invariant_panel.py
r330c63b r51fb7ab 120 120 data, path = self.data_cbbox.GetClientData(n) 121 121 self._manager.compute_helper(data=data) 122 title = "Untitled" 123 if hasattr(data,"title"): 124 title = str(data.title.lstrip().rstrip()) 125 if title == "": 126 title = str(data.name) 127 else: 128 title = str(data.name) 129 wx.PostEvent(self.parent, NewPlotEvent(plot=data, title=title)) 122 130 123 131 124 def set_data(self, list=[], state=None): … … 144 137 self.data_cbbox.Enable() 145 138 self.on_select_data(event=None) 146 147 def set_current_data(self, data): 139 title = "Untitled" 140 if hasattr(data,"title"): 141 title = str(data.title.lstrip().rstrip()) 142 if title == "": 143 title = str(data.name) 144 else: 145 title = str(data.name) 146 147 wx.PostEvent(self.parent, NewPlotEvent(plot=data, title=title)) 148 149 def set_current_data(self, data, path=None): 148 150 """ 149 151 Set the data … … 167 169 data_qmin = min (self._data.x) 168 170 data_qmax = max (self._data.x) 169 print "set_current_data",self.data_cbbox.GetCount() 171 170 172 if data.name not in self.data_cbbox.GetItems(): 171 173 self.data_cbbox.Insert(pos=0, clientData=(data, None), … … 220 222 self.new_state = True 221 223 self.state = state 222 224 223 225 num = self.state.saved_state['state_num'] 224 226 -
invariantview/perspectives/invariant/invariant_state.py
rb281210 r51fb7ab 91 91 self.compute_num = 0 92 92 self.state_num = 0 93 self.timestamp = "('00:00:00', '00/00/0000')"93 self.timestamp = ('00:00:00', '00/00/0000') 94 94 self.container = None 95 95 #plot image
Note: See TracChangeset
for help on using the changeset viewer.