Changeset 88e7d08 in sasview for guitools


Ignore:
Timestamp:
Apr 15, 2008 3:48:58 PM (16 years ago)
Author:
Gervaise Alina <gervyh@…>
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:
dfca3de
Parents:
831149e
Message:

property dialog modified

Location:
guitools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • guitools/PropertyDialog.py

    r831149e r88e7d08  
    77class Properties(wx.Dialog): 
    88    def __init__(self, parent, id, title): 
    9         wx.Dialog.__init__(self, parent, id, title, size=(300, 200)) 
     9        wx.Dialog.__init__(self, parent, id, title, size=(350, 200)) 
    1010        """ 
    1111            for the properties window 
     
    3232        sizer.Add( self.yvalue,(iy, ix)) 
    3333        ix +=2 
    34         view =wx.ComboBox(panel, -1, size=(60, -1)) 
    35         sizer.Add(view,(iy,ix)) 
     34        self.view =wx.ComboBox(panel, -1) 
     35        sizer.Add(self.view,(iy,ix)) 
    3636        ix =3 
    3737        iy +=3 
     
    6161        self.yvalue.Insert("ln(y*x^(4))",8) 
    6262         
     63        # type of view or model used  
     64        self.view.SetValue("Guinier lny vs x^(2)") 
     65        self.view.Insert("Guinier lny vs x^(2)",0) 
    6366        panel.SetSizer(sizer) 
    6467        self.SetSizer(vbox) 
  • guitools/requirements.txt

    r831149e r88e7d08  
    8282  2- [DONE]Specify in the fitDialog if natural log or log base 10 
    8383   
    84   3- When fitting sphere.txt , logx --logy ,fitting is not correct 
     84  3- [FIXED]When fitting sphere.txt , logx --logy ,fitting is not correct 
    8585   
    86   4- the line to fit always is displayed from x min to max all the time even if xmin is changed 
     86  4- [FIXED]the line to fit always is displayed from x min to max all the time even if xmin is changed 
    8787     or xmax is changed 
    8888      
    89   5- The fitting errors are too small (order of 10^(-7))for that case too,certainly wrong 
     89  5- [FIXED]The fitting errors are too small (order of 10^(-7))for that case too,certainly wrong 
    9090   
    9191  6- When to see errors bars appear when loading sphere.txt file.  
     
    9393  7- Add zoom in option when xmax and xmin(user) are entered. 
    9494   
    95   8-[DONE] Always want to know the initial value of xmin and xmax when opening the fitDialog.These values 
     95  8-[FIXED] Always want to know the initial value of xmin and xmax when opening the fitDialog.These values 
    9696     should always be independant of the transformation 
    9797      
    98   9- the user should be able to add point to fit without knowing the exact range or guessing 
     98  9-[FIXED] the user should be able to add point to fit without knowing the exact range or guessing 
    9999                a range to fit. 
    100100 
Note: See TracChangeset for help on using the changeset viewer.