Changeset 5789654 in sasview for guitools/PropertyDialog.py


Ignore:
Timestamp:
Apr 7, 2008 4:31:09 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:
8742751
Parents:
fcaada5
Message:

modied fitdialog property dialog added fittings , modified plottables

File:
1 edited

Legend:

Unmodified
Added
Removed
  • guitools/PropertyDialog.py

    re2914b1 r5789654  
    2626        iy += 1 
    2727        ix = 1 
    28         self.xvalue = wx.ComboBox(panel, -1, size=(60, -1)) 
     28        self.xvalue = wx.ComboBox(panel, -1) 
    2929        sizer.Add(self.xvalue,(iy,ix)) 
    3030        ix +=2 
    31         self.yvalue = wx.ComboBox(panel, -1, size=(60, -1)) 
     31        self.yvalue = wx.ComboBox(panel, -1) 
    3232        sizer.Add( self.yvalue,(iy, ix)) 
    3333        ix +=2 
     
    5353        self.yvalue.Insert("Log(y)",1) 
    5454        self.yvalue.Insert("y^(2)",2) 
     55        self.yvalue.Insert("1/y",3) 
     56        self.yvalue.Insert("1/sqrt(y)",4) 
     57        self.yvalue.Insert("Log(y*x)",5) 
     58        self.yvalue.Insert("Log(y*x^(2))",6) 
    5559         
    5660        panel.SetSizer(sizer) 
Note: See TracChangeset for help on using the changeset viewer.