Changeset f5c52b0 in sasview for src/sas/sasgui/perspectives/file_converter/converter_panel.py
- Timestamp:
- Aug 9, 2016 9:55:57 AM (8 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, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- d889d80
- Parents:
- 785fa53
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/file_converter/converter_panel.py
r785fa53 rf5c52b0 486 486 self.on_collapsible_pane(None) 487 487 self.metadata_section.Disable() 488 self.output.SetWildcard(" Red2D (*.dat)|*.dat")488 self.output.SetWildcard("IGOR/DAT 2D file in Q_map (*.dat)|*.DAT") 489 489 else: 490 490 self.q_input.Enable() … … 510 510 vbox = wx.BoxSizer(wx.VERTICAL) 511 511 512 instructions = ("Select either single column ASCII files or BSL/OTOKO" 513 " files containing the Q-Axis and Intensity-axis data, chose where" 514 " to save the converted file, then click Convert to convert them " 515 "to CanSAS XML format. If required, metadata can also be input " 516 "below.") 512 instructions = ("Select either single column ASCII files or 1D OTOKO " 513 "files containing the Q-Axis and Intensity-Axis data, or a 2D BSL file" 514 ", then chose where to save the converted file, and click Convert.\n" 515 "ASCII and OTOKO files will be converted to CanSAS XML, and OTKO files" 516 " to IGOR/DAT 2D Q_map files.\nCanSAS metadata can also be optionally " 517 "input below.") 518 517 519 instruction_label = wx.StaticText(self, -1, instructions, 518 520 size=(_STATICBOX_WIDTH+40, -1)) … … 652 654 653 655 def __init__(self, parent=None, title='File Converter', base=None, 654 manager=None, size=(PANEL_SIZE * 1.05, PANEL_SIZE / 1. 25),656 manager=None, size=(PANEL_SIZE * 1.05, PANEL_SIZE / 1.1), 655 657 *args, **kwargs): 656 658 kwargs['title'] = title
Note: See TracChangeset
for help on using the changeset viewer.