Changeset 11794f2 in sasview for src/sas/sasgui/perspectives/file_converter/converter_panel.py
- Timestamp:
- Jul 20, 2016 6:03:04 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:
- 13b9a63
- Parents:
- bf23693
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/file_converter/converter_panel.py
r55bc56bc r11794f2 15 15 from sas.sasgui.perspectives.file_converter.meta_panels import SourcePanel 16 16 from sas.sasgui.guiframe.events import StatusEvent 17 from sas.sasgui.guiframe.documentation_window import DocumentationWindow 17 18 from sas.sasgui.guiframe.dataFitting import Data1D 18 19 from sas.sasgui.guiframe.utils import check_float … … 152 153 StatusEvent(status="Conversion completed.")) 153 154 155 def on_help(self, event): 156 tree_location = ("user/sasgui/perspectives/file_converter/" 157 "file_converter_help.html") 158 doc_viewer = DocumentationWindow(self, -1, tree_location, 159 "", "File Converter Help") 160 154 161 def validate_inputs(self): 155 162 msg = "You must select a" … … 289 296 input_grid.Add(convert_btn, (y,0), (1,1), wx.ALL, 5) 290 297 convert_btn.Bind(wx.EVT_BUTTON, self.on_convert) 298 299 help_btn = wx.Button(self, -1, "HELP") 300 input_grid.Add(help_btn, (y,1), (1,1), wx.ALL, 5) 301 help_btn.Bind(wx.EVT_BUTTON, self.on_help) 291 302 292 303 section_sizer.Add(input_grid)
Note: See TracChangeset
for help on using the changeset viewer.