Changeset acb1ad1 in sasview
- Timestamp:
- Jul 18, 2008 3:36:55 PM (16 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:
- a3084ada
- Parents:
- 202f93a
- Location:
- guiframe
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
guiframe/data_loader.py
r03a20aa racb1ad1 7 7 location = os.getcwd() 8 8 9 dlg = wx.FileDialog(parent, "Choose a file", location, "","* ", wx.OPEN)9 dlg = wx.FileDialog(parent, "Choose a file", location, "","*.*", wx.OPEN) 10 10 if dlg.ShowModal() == wx.ID_OK: 11 11 path = dlg.GetPath() … … 71 71 else: 72 72 new_plot = Data1D(output.x, output.y, dy=output.dy) 73 74 filename = os.path.basename(path) 75 73 76 new_plot.name = name 74 77 new_plot.interactive = True … … 77 80 new_plot.xaxis("\\rm{Q}", 'A^{-1}') 78 81 new_plot.yaxis("\\rm{Intensity} ","cm^{-1}") 82 new_plot.group_id = filename 79 83 80 wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title= "Loaded data"))84 wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title=filename)) -
guiframe/gui_manager.py
r75b40ce racb1ad1 685 685 @param panels: list of panels 686 686 """ 687 print "gui_mng.set_perspective"688 687 for item in self.panels: 689 688 # Check whether this is a sticky panel -
guiframe/license.txt
r41d466f racb1ad1 7 7 the following paper in your publication: 8 8 9 P. Butler, M. Doucet, G. Alina, J. Zhou, "SANS analysis software",10 to be published.9 P. Butler, M. Doucet, G. Alina, R. Cortes Hernandez, J. Zhou, P. Kienzle, 10 "SANS analysis software", to be published. 11 11 12 12 See the DANSE project web site for license information:
Note: See TracChangeset
for help on using the changeset viewer.