- Timestamp:
- Apr 15, 2008 3:48:58 PM (17 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:
- dfca3de
- Parents:
- 831149e
- Location:
- guitools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
guitools/PropertyDialog.py
r831149e r88e7d08 7 7 class Properties(wx.Dialog): 8 8 def __init__(self, parent, id, title): 9 wx.Dialog.__init__(self, parent, id, title, size=(3 00, 200))9 wx.Dialog.__init__(self, parent, id, title, size=(350, 200)) 10 10 """ 11 11 for the properties window … … 32 32 sizer.Add( self.yvalue,(iy, ix)) 33 33 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)) 36 36 ix =3 37 37 iy +=3 … … 61 61 self.yvalue.Insert("ln(y*x^(4))",8) 62 62 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) 63 66 panel.SetSizer(sizer) 64 67 self.SetSizer(vbox) -
guitools/requirements.txt
r831149e r88e7d08 82 82 2- [DONE]Specify in the fitDialog if natural log or log base 10 83 83 84 3- When fitting sphere.txt , logx --logy ,fitting is not correct84 3- [FIXED]When fitting sphere.txt , logx --logy ,fitting is not correct 85 85 86 4- the line to fit always is displayed from x min to max all the time even if xmin is changed86 4- [FIXED]the line to fit always is displayed from x min to max all the time even if xmin is changed 87 87 or xmax is changed 88 88 89 5- The fitting errors are too small (order of 10^(-7))for that case too,certainly wrong89 5- [FIXED]The fitting errors are too small (order of 10^(-7))for that case too,certainly wrong 90 90 91 91 6- When to see errors bars appear when loading sphere.txt file. … … 93 93 7- Add zoom in option when xmax and xmin(user) are entered. 94 94 95 8-[ DONE] Always want to know the initial value of xmin and xmax when opening the fitDialog.These values95 8-[FIXED] Always want to know the initial value of xmin and xmax when opening the fitDialog.These values 96 96 should always be independant of the transformation 97 97 98 9- the user should be able to add point to fit without knowing the exact range or guessing98 9-[FIXED] the user should be able to add point to fit without knowing the exact range or guessing 99 99 a range to fit. 100 100
Note: See TracChangeset
for help on using the changeset viewer.