Changeset 83710be in sasview
- Timestamp:
- Oct 24, 2017 3:57:44 PM (7 years ago)
- Branches:
- 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
- Children:
- c82fd8f
- Parents:
- 1df1025
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/GPUOptions.py
r1df1025 r83710be 4 4 import sasmodels 5 5 6 from PyQt4 import QtGui, QtCore 6 from PyQt4 import QtGui, QtCore, QtWebKit 7 7 from sas.qtgui.Perspectives.Fitting.UI.GPUOptionsUI import Ui_GPUOptions 8 8 … … 93 93 Run the model tests when the test button is clicked 94 94 """ 95 # TODO: Do something 95 96 pass 96 97 … … 99 100 Open the help menu when the help button is clicked 100 101 """ 101 pass 102 tree_location = "user/sasgui/perspectives/fitting/gpu_setup.html" 103 anchor = "#device-selection" 104 self.helpView = QtWebKit.QWebView() 105 help_location = tree_location + anchor 106 self.helpView.load(QtCore.QUrl(help_location)) 107 self.helpView.show() 102 108 103 109 def reject(self): … … 105 111 Close the window without modifying SAS_OPENCL 106 112 """ 113 # FIXME: Reset option to original value 107 114 self.close() 108 115 self.open()
Note: See TracChangeset
for help on using the changeset viewer.