Changeset b9405cd in sasview for theoryview/perspectives/theory


Ignore:
Timestamp:
Apr 23, 2010 2:52:41 PM (14 years ago)
Author:
Jae Cho <jhjcho@…>
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:
e07f9f4
Parents:
0b57a57
Message:

Added tip to polydisp param

File:
1 edited

Legend:

Unmodified
Added
Removed
  • theoryview/perspectives/theory/model_panel.py

    r52efcc5 rb9405cd  
    186186                        ctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH,20), 
    187187                                            style=wx.TE_PROCESS_ENTER) 
     188                        ctl1.SetToolTipString("Polydispersity multiflied by the value of '%s'."%item) 
    188189                        ctl1.SetValue(str (format_number(value))) 
    189190                        self.sizer4_4.Add(ctl1, (iy,ix),(1,1), wx.EXPAND) 
     
    195196                            Tctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 
    196197                                                style=wx.TE_PROCESS_ENTER) 
     198                            Tctl1.SetToolTipString("Npts for averaging over the distribution function.") 
    197199                            Tctl1.SetValue(str (format_number(value))) 
    198200                            self.sizer4_4.Add(Tctl1, (iy,ix),(1,1), 
     
    205207                            Tctl2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 
    206208                                                style=wx.TE_PROCESS_ENTER) 
     209                            Tctl2.SetToolTipString("Only the range between +-(Nsigmas times Sigma) of the distribution function will be weighted for the calculation.") 
    207210                            Tctl2.SetValue(str (format_number(value))) 
    208211                            self.sizer4_4.Add(Tctl2, (iy,ix),(1,1), 
     
    234237                        ctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH,20), 
    235238                                            style=wx.TE_PROCESS_ENTER) 
     239                        ctl1.SetToolTipString("Polydispersity multiflied by the value of '%s'."%item) 
    236240                        ctl1.SetValue(str (format_number(value))) 
    237241                        if not self.enable2D: 
     
    251255                            Tctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 
    252256                                                style=wx.TE_PROCESS_ENTER) 
     257                            Tctl1.SetToolTipString("Npts for averaging over the distribution function.") 
    253258                            Tctl1.SetValue(str (format_number(value))) 
    254259                            if not self.enable2D: 
     
    269274                            Tctl2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 
    270275                                                style=wx.TE_PROCESS_ENTER) 
     276                            Tctl2.SetToolTipString("Only the range between +-(Nsigmas times Sigma) of the distribution function will be weighted for the calculation.") 
    271277                            Tctl2.SetValue(str (format_number(value))) 
    272278                            if not self.enable2D: 
Note: See TracChangeset for help on using the changeset viewer.