Changeset 1a94c36 in sasview
- Timestamp:
- Apr 23, 2010 3:41:52 PM (15 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:
- 4d27f9a4
- Parents:
- e07f9f4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/perspectives/fitting/fitpage.py
re07f9f4 r1a94c36 464 464 ix += 1 465 465 values = wx.StaticText(self, -1, 'Sigma (STD)') 466 values.SetToolTipString("Polydispersity multiplied by the value of the original parameter.") 466 467 self.sizer4_4.Add(values,( iy, ix),(1,1), wx.EXPAND|wx.ADJUST_MINSIZE, 0) 467 468 ix +=2 … … 486 487 ix += 1 487 488 npts = wx.StaticText(self, -1, 'Npts') 489 npts.SetToolTipString("Number of points for weighting.") 488 490 self.sizer4_4.Add(npts,( iy, ix),(1,1), wx.EXPAND|wx.ADJUST_MINSIZE, 0) 489 491 ix += 1 490 492 nsigmas = wx.StaticText(self, -1, 'Nsigmas') 493 nsigmas.SetToolTipString("Number of sigmas between which the range of the distribution function will be used for weighting. The value '3' covers 99.5% for Gaussian distribution function.") 491 494 self.sizer4_4.Add(nsigmas,( iy, ix),(1,1), wx.EXPAND|wx.ADJUST_MINSIZE, 0) 492 495 … … 519 522 ctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH,20), 520 523 style=wx.TE_PROCESS_ENTER) 521 ctl1.SetToolTipString("Polydispersity multi flied by the value of '%s'."%item)524 ctl1.SetToolTipString("Polydispersity multiplied by the value of '%s'."%item) 522 525 ctl1.SetValue(str (format_number(value))) 523 526 self.sizer4_4.Add(ctl1, (iy,ix),(1,1),wx.EXPAND) … … 563 566 Tctl = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 564 567 style=wx.TE_PROCESS_ENTER) 565 Tctl.SetToolTipString("Number of points for weighting.")568 566 569 Tctl.SetValue(str (format_number(value))) 567 570 self.sizer4_4.Add(Tctl, (iy,ix),(1,1), … … 574 577 Tct2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 575 578 style=wx.TE_PROCESS_ENTER) 576 Tct2.SetToolTipString("Number of sigmas between which the range of the distribution function will be used for weighting. The value '3' covers 99.5% for Gaussian distribution function.")579 577 580 Tct2.SetValue(str (format_number(value))) 578 581 self.sizer4_4.Add(Tct2, (iy,ix),(1,1), … … 617 620 ctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH,20), 618 621 style=wx.TE_PROCESS_ENTER) 619 ctl1.SetToolTipString("Polydispersity multi flied by the value of '%s'."%item)622 ctl1.SetToolTipString("Polydispersity multiplied by the value of '%s'."%item) 620 623 ctl1.SetValue(str (format_number(value))) 621 624 if self.data.__class__.__name__ =="Data2D": … … 671 674 Tctl = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 672 675 style=wx.TE_PROCESS_ENTER) 673 Tctl.SetToolTipString("Number of points for weighting.")676 674 677 Tctl.SetValue(str (format_number(value))) 675 678 if self.data.__class__.__name__ =="Data2D": … … 688 691 Tct2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 689 692 style=wx.TE_PROCESS_ENTER) 690 Tct2.SetToolTipString("Number of sigmas between which the range of the distribution function will be used for weighting. The value '3' covers 99.5% for Gaussian distribution function.")693 691 694 Tct2.SetValue(str (format_number(value))) 692 695 if self.data.__class__.__name__ =="Data2D": … … 2064 2067 ctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH,20), 2065 2068 style=wx.TE_PROCESS_ENTER) 2066 2069 ctl1.SetToolTipString("Hit 'Enter' after typing.") 2067 2070 ctl1.SetValue(format_number(value)) 2068 2071 sizer.Add(ctl1, (iy,ix),(1,1), wx.EXPAND) … … 2156 2159 ctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH,20), 2157 2160 style=wx.TE_PROCESS_ENTER) 2161 ctl1.SetToolTipString("Hit 'Enter' after typing.") 2158 2162 ctl1.SetValue(format_number(value)) 2159 2163 if self.data.__class__.__name__ =="Data2D": -
theoryview/perspectives/theory/model_panel.py
re07f9f4 r1a94c36 160 160 ix += 1 161 161 values = wx.StaticText(self, -1, 'Sigma (STD)') 162 values.SetToolTipString("Polydispersity multiplied by the value of the original parameter.") 162 163 self.sizer4_4.Add(values,( iy, ix),(1,1), wx.EXPAND|wx.ADJUST_MINSIZE, 0) 163 164 164 165 ix += 1 165 166 npts = wx.StaticText(self, -1, 'Npts') 167 npts.SetToolTipString("Number of points for weighting.") 166 168 self.sizer4_4.Add(npts,( iy, ix),(1,1), wx.EXPAND|wx.ADJUST_MINSIZE, 0) 167 169 ix += 1 168 170 nsigmas = wx.StaticText(self, -1, 'Nsigmas') 171 nsigmas.SetToolTipString("Number of sigmas between which the range of the distribution function will be used for weighting. The value '3' covers 99.5% for Gaussian distribution function.") 169 172 self.sizer4_4.Add(nsigmas,( iy, ix),(1,1), wx.EXPAND|wx.ADJUST_MINSIZE, 0) 170 173 … … 186 189 ctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH,20), 187 190 style=wx.TE_PROCESS_ENTER) 188 ctl1.SetToolTipString("Polydispersity multi flied by the value of'%s'."%item)191 ctl1.SetToolTipString("Polydispersity multiplied by the value of the '%s'."%item) 189 192 ctl1.SetValue(str (format_number(value))) 190 193 self.sizer4_4.Add(ctl1, (iy,ix),(1,1), wx.EXPAND) … … 196 199 Tctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 197 200 style=wx.TE_PROCESS_ENTER) 198 Tctl1.SetToolTipString("Number of points for weighting.")201 199 202 Tctl1.SetValue(str (format_number(value))) 200 203 self.sizer4_4.Add(Tctl1, (iy,ix),(1,1), … … 207 210 Tctl2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 208 211 style=wx.TE_PROCESS_ENTER) 209 Tctl2.SetToolTipString("Number of sigmas between which the range of the distribution function will be used for weighting. The value '3' covers 99.5% for Gaussian distribution function.")212 210 213 Tctl2.SetValue(str (format_number(value))) 211 214 self.sizer4_4.Add(Tctl2, (iy,ix),(1,1), … … 237 240 ctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH,20), 238 241 style=wx.TE_PROCESS_ENTER) 239 ctl1.SetToolTipString("Polydispersity multi flied by the value of '%s'."%item)242 ctl1.SetToolTipString("Polydispersity multiplied by the value of '%s'."%item) 240 243 ctl1.SetValue(str (format_number(value))) 241 244 if not self.enable2D: … … 255 258 Tctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 256 259 style=wx.TE_PROCESS_ENTER) 257 Tctl1.SetToolTipString("Number of points for weighting.") 260 258 261 Tctl1.SetValue(str (format_number(value))) 259 262 if not self.enable2D: … … 274 277 Tctl2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 275 278 style=wx.TE_PROCESS_ENTER) 276 Tctl2.SetToolTipString("Number of sigmas between which the range of the distribution function will be used for weighting. The value '3' covers 99.5% for Gaussian distribution function.")279 277 280 Tctl2.SetValue(str (format_number(value))) 278 281 if not self.enable2D:
Note: See TracChangeset
for help on using the changeset viewer.