Changeset 56e99f9 in sasview for src/sas/guiframe/data_processor.py
- Timestamp:
- Jun 13, 2015 10:39:16 PM (9 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:
- 4faed25
- Parents:
- e82a901
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/guiframe/data_processor.py
r76aed53 r56e99f9 18 18 from sas.plottools import plottables 19 19 from sas.guiframe.dataFitting import Data1D 20 20 21 21 22 FUNC_DICT = {"sqrt": "math.sqrt", … … 1130 1131 wx.PostEvent(self.parent.parent, StatusEvent(status=msg, info="error")) 1131 1132 1133 def on_help(self, event): 1134 """ 1135 Bring up the Batch Grid Panel Usage Documentation whenever 1136 the HELP button is clicked. 1137 1138 Calls DocumentationWindow with the path of the location within the 1139 documentation tree (after /doc/ ....". Note that when using old 1140 versions of Wx (before 2.9) and thus not the release version of 1141 installers, the help comes up at the top level of the file as 1142 webbrowser does not pass anything past the # to the browser when it is 1143 running "file:///...." 1144 1145 :param evt: Triggers on clicking the help button 1146 """ 1147 #import documentation window here to avoid circular imports 1148 #if put at top of file with rest of imports. 1149 from documentation_window import DocumentationWindow 1150 1151 _TreeLocation = "user/perspectives/fitting/fitting_help.html" 1152 _PageAnchor = "#batch-fit-mode" 1153 _doc_viewer = DocumentationWindow(self, -1, _TreeLocation, _PageAnchor, 1154 "Batch Mode Help") 1155 1132 1156 def get_sentence(self, dict, sentence, column_names): 1133 1157 """ … … 1186 1210 1187 1211 self.plot_button.SetToolTipString(plot_tip) 1212 1213 self.help_button = wx.Button(self, -1, "HELP") 1214 self.help_button.SetToolTipString("Get Help for Batch Mode") 1215 self.help_button.Bind(wx.EVT_BUTTON, self.on_help) 1216 1188 1217 boxsizer1.AddMany([(note_text, 0, wx.LEFT, 10), 1189 1218 (self.view_button, 0, wx.LEFT | wx.RIGHT, 10)]) … … 1191 1220 wx.LEFT | wx.RIGHT | wx.BOTTOM, 10), 1192 1221 (self.plot_button, 0, 1193 wx.LEFT | wx.TOP | wx.BOTTOM | wx.EXPAND, 12)]) 1222 wx.LEFT | wx.TOP | wx.BOTTOM, 12), 1223 (self.help_button,0, 1224 wx.LEFT | wx.TOP | wx.BOTTOM, 12)]) 1194 1225 1195 1226 wx.EVT_BUTTON(self, self.plot_button.GetId(), self.on_plot)
Note: See TracChangeset
for help on using the changeset viewer.