Changeset 13b9a63 in sasview for src/sas/sasgui/perspectives/file_converter/converter_panel.py
- Timestamp:
- Jul 20, 2016 9:52:08 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:
- 55775e8
- Parents:
- 11794f2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/file_converter/converter_panel.py
r11794f2 r13b9a63 233 233 vbox = wx.BoxSizer(wx.VERTICAL) 234 234 235 instructions = ("Select either 1 column ASCII files or BSL files " 236 "containing the Q Axis and Intensity data, chose where to save " 237 "the converted file, then click Convert to convert them to CanSAS " 238 "XML format. If required, metadata can also be input below.") 235 instructions = ("Select either single column ASCII files or BSL/OTOKO" 236 " files containing the Q-Axis and Intensity-axis data, chose where" 237 " to save the converted file, then click Convert to convert them " 238 "to CanSAS XML format. If required, metadata can also be input " 239 "below.") 239 240 instruction_label = wx.StaticText(self, -1, instructions, 240 241 size=(_STATICBOX_WIDTH+40, -1)) … … 250 251 y = 0 251 252 252 q_label = wx.StaticText(self, -1, "Q Axis: ")253 q_label = wx.StaticText(self, -1, "Q-Axis Data: ") 253 254 input_grid.Add(q_label, (y,0), (1,1), wx.ALIGN_CENTER_VERTICAL, 5) 254 255 255 256 self.q_input = wx.FilePickerCtrl(self, -1, 256 257 size=(_STATICBOX_WIDTH-80, -1), 257 message="Chose the Q 258 message="Chose the Q-Axis data file.") 258 259 input_grid.Add(self.q_input, (y,1), (1,1), wx.ALL, 5) 259 260 y += 1 260 261 261 iq_label = wx.StaticText(self, -1, "Intensity Data: ")262 iq_label = wx.StaticText(self, -1, "Intensity-Axis Data: ") 262 263 input_grid.Add(iq_label, (y,0), (1,1), wx.ALIGN_CENTER_VERTICAL, 5) 263 264 264 265 self.iq_input = wx.FilePickerCtrl(self, -1, 265 266 size=(_STATICBOX_WIDTH-80, -1), 266 message="Chose the Intensity data file.")267 message="Chose the Intensity-Axis data file.") 267 268 input_grid.Add(self.iq_input, (y,1), (1,1), wx.ALL, 5) 268 269 y += 1 … … 276 277 ascii_btn.Bind(wx.EVT_RADIOBUTTON, self.datatype_changed) 277 278 radio_sizer.Add(ascii_btn) 278 bsl_btn = wx.RadioButton(self, -1, "BSL ", name="bsl")279 bsl_btn = wx.RadioButton(self, -1, "BSL/OTOKO", name="bsl") 279 280 bsl_btn.Bind(wx.EVT_RADIOBUTTON, self.datatype_changed) 280 281 radio_sizer.Add(bsl_btn)
Note: See TracChangeset
for help on using the changeset viewer.