source: sasview/src/sas/qtgui/MainWindow/GuiManager.py @ 133812c7

ESS_GUIESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalc
Last change on this file since 133812c7 was 133812c7, checked in by Piotr Rozyczko <piotr.rozyczko@…>, 5 years ago

Merged ESS_GUI

  • Property mode set to 100644
File size: 42.8 KB
RevLine 
[f721030]1import sys
[0cd8612]2import os
[9e426c1]3import subprocess
4import logging
5import json
6import webbrowser
[e258c53]7import traceback
[f721030]8
[4992ff2]9from PyQt5.QtWidgets import *
10from PyQt5.QtGui import *
[d6b8a1d]11from PyQt5.QtCore import Qt, QLocale, QUrl
[1042dba]12
[722b7d6]13import matplotlib as mpl
14mpl.use("Qt5Agg")
15
[1042dba]16from twisted.internet import reactor
[dc5ef15]17# General SAS imports
[fc5d2d7f]18from sas import get_local_config, get_custom_config
[dc5ef15]19from sas.qtgui.Utilities.ConnectionProxy import ConnectionProxy
[e4335ae]20from sas.qtgui.Utilities.SasviewLogger import setup_qt_logging
[fef38e8]21
[83eb5208]22import sas.qtgui.Utilities.LocalConfig as LocalConfig
23import sas.qtgui.Utilities.GuiUtils as GuiUtils
24
[fef38e8]25import sas.qtgui.Utilities.ObjectLibrary as ObjectLibrary
[3b3b40b]26from sas.qtgui.Utilities.TabbedModelEditor import TabbedModelEditor
27from sas.qtgui.Utilities.PluginManager import PluginManager
[d4dac80]28from sas.qtgui.Utilities.GridPanel import BatchOutputPanel
[8748751]29from sas.qtgui.Utilities.ResultPanel import ResultPanel
[d4dac80]30
[57be490]31from sas.qtgui.Utilities.ReportDialog import ReportDialog
[83eb5208]32from sas.qtgui.MainWindow.UI.AcknowledgementsUI import Ui_Acknowledgements
33from sas.qtgui.MainWindow.AboutBox import AboutBox
34from sas.qtgui.MainWindow.WelcomePanel import WelcomePanel
[3d18691]35from sas.qtgui.MainWindow.CategoryManager import CategoryManager
[fef38e8]36
[dc5ef15]37from sas.qtgui.MainWindow.DataManager import DataManager
[83eb5208]38
39from sas.qtgui.Calculators.SldPanel import SldPanel
40from sas.qtgui.Calculators.DensityPanel import DensityPanel
41from sas.qtgui.Calculators.KiessigPanel import KiessigPanel
42from sas.qtgui.Calculators.SlitSizeCalculator import SlitSizeCalculator
[28a09b0]43from sas.qtgui.Calculators.GenericScatteringCalculator import GenericScatteringCalculator
[01cda57]44from sas.qtgui.Calculators.ResolutionCalculatorPanel import ResolutionCalculatorPanel
[d5c5d3d]45from sas.qtgui.Calculators.DataOperationUtilityPanel import DataOperationUtilityPanel
[f721030]46
47# Perspectives
[83eb5208]48import sas.qtgui.Perspectives as Perspectives
[6c8fb2c]49from sas.qtgui.Perspectives.Fitting.FittingPerspective import FittingWindow
[d4881f6a]50from sas.qtgui.MainWindow.DataExplorer import DataExplorerWindow, DEFAULT_PERSPECTIVE
[f51ed67]51
[01ef3f7]52from sas.qtgui.Utilities.AddMultEditor import AddMultEditor
[133812c7]53from sas.qtgui.Utilities.ImageViewer import ImageViewer
[01ef3f7]54
[f0a8f74]55logger = logging.getLogger(__name__)
56
[4992ff2]57class Acknowledgements(QDialog, Ui_Acknowledgements):
[f51ed67]58    def __init__(self, parent=None):
[4992ff2]59        QDialog.__init__(self, parent)
[f51ed67]60        self.setupUi(self)
[f721030]61
62class GuiManager(object):
63    """
64    Main SasView window functionality
65    """
[6fd4e36]66    def __init__(self, parent=None):
[f721030]67        """
[257bd57]68        Initialize the manager as a child of MainWindow.
[f721030]69        """
[6fd4e36]70        self._workspace = parent
[f721030]71        self._parent = parent
72
[d6b8a1d]73        # Decide on a locale
74        QLocale.setDefault(QLocale('en_US'))
75
[e258c53]76        # Redefine exception hook to not explicitly crash the app.
77        sys.excepthook = self.info
78
[f721030]79        # Add signal callbacks
80        self.addCallbacks()
81
[c889a3e]82        # Assure model categories are available
83        self.addCategories()
84
[f721030]85        # Create the data manager
[1042dba]86        # TODO: pull out all required methods from DataManager and reimplement
87        self._data_manager = DataManager()
[f721030]88
89        # Create action triggers
90        self.addTriggers()
91
[d4881f6a]92        # Currently displayed perspective
[5236449]93        self._current_perspective = None
94
[d4881f6a]95        # Populate the main window with stuff
[0cd8612]96        self.addWidgets()
[f721030]97
[0cd8612]98        # Fork off logging messages to the Log Window
[e4335ae]99        handler = setup_qt_logging()
100        handler.messageWritten.connect(self.appendLog)
[8cb6cd6]101
[0cd8612]102        # Log the start of the session
103        logging.info(" --- SasView session started ---")
104        # Log the python version
105        logging.info("Python: %s" % sys.version)
[9e426c1]106
[e540cd2]107        # Set up the status bar
108        self.statusBarSetup()
[f721030]109
[9e426c1]110        # Current tutorial location
[b0c5e8c]111        self._tutorialLocation = os.path.abspath(os.path.join(GuiUtils.HELP_DIRECTORY_LOCATION,
[9e426c1]112                                              "_downloads",
[31c5b58]113                                              "Tutorial.pdf"))
[8353d90]114
[e258c53]115    def info(self, type, value, tb):
116        logger.error("SasView threw exception: " + str(value))
117        traceback.print_exception(type, value, tb)
118
[0cd8612]119    def addWidgets(self):
120        """
121        Populate the main window with widgets
122
123        TODO: overwrite close() on Log and DR widgets so they can be hidden/shown
124        on request
125        """
126        # Add FileDialog widget as docked
[630155bd]127        self.filesWidget = DataExplorerWindow(self._parent, self, manager=self._data_manager)
[2a432e7]128        ObjectLibrary.addObject('DataExplorer', self.filesWidget)
[0cd8612]129
[4992ff2]130        self.dockedFilesWidget = QDockWidget("Data Explorer", self._workspace)
[7969b9c]131        self.dockedFilesWidget.setFloating(False)
[0cd8612]132        self.dockedFilesWidget.setWidget(self.filesWidget)
[83d6249]133
[768387e0]134        # Modify menu items on widget visibility change
135        self.dockedFilesWidget.visibilityChanged.connect(self.updateContextMenus)
[4992ff2]136
[7969b9c]137        self._workspace.addDockWidget(Qt.LeftDockWidgetArea, self.dockedFilesWidget)
[f84d793]138        self._workspace.resizeDocks([self.dockedFilesWidget], [305], Qt.Horizontal)
[0cd8612]139
140        # Add the console window as another docked widget
[4992ff2]141        self.logDockWidget = QDockWidget("Log Explorer", self._workspace)
[0cd8612]142        self.logDockWidget.setObjectName("LogDockWidget")
[efaf022]143        self.logDockWidget.visibilityChanged.connect(self.updateLogContextMenus)
144
[4992ff2]145
146        self.listWidget = QTextBrowser()
[0cd8612]147        self.logDockWidget.setWidget(self.listWidget)
[7969b9c]148        self._workspace.addDockWidget(Qt.BottomDockWidgetArea, self.logDockWidget)
[0cd8612]149
150        # Add other, minor widgets
151        self.ackWidget = Acknowledgements()
152        self.aboutWidget = AboutBox()
[3d18691]153        self.categoryManagerWidget = CategoryManager(self._parent, manager=self)
[8748751]154
[d4dac80]155        self.grid_window = None
[fa762f4]156        self.grid_window = BatchOutputPanel(parent=self)
[4cbd87f]157        if sys.platform == "darwin":
158            self.grid_window.menubar.setNativeMenuBar(False)
[fa762f4]159        self.grid_subwindow = self._workspace.workspace.addSubWindow(self.grid_window)
160        self.grid_subwindow.setVisible(False)
161        self.grid_window.windowClosedSignal.connect(lambda: self.grid_subwindow.setVisible(False))
162
[8748751]163        self.results_panel = ResultPanel(parent=self._parent, manager=self)
164        self.results_frame = self._workspace.workspace.addSubWindow(self.results_panel)
165        self.results_frame.setVisible(False)
166        self.results_panel.windowClosedSignal.connect(lambda: self.results_frame.setVisible(False))
167
[a0ed202]168        self._workspace.toolBar.setVisible(LocalConfig.TOOLBAR_SHOW)
169        self._workspace.actionHide_Toolbar.setText("Show Toolbar")
[0cd8612]170
[1d85b5e]171        # Add calculators - floating for usability
172        self.SLDCalculator = SldPanel(self)
173        self.DVCalculator = DensityPanel(self)
[a8ec5b1]174        self.KIESSIGCalculator = KiessigPanel(self)
[abc5e70]175        self.SlitSizeCalculator = SlitSizeCalculator(self)
[28a09b0]176        self.GENSASCalculator = GenericScatteringCalculator(self)
[01cda57]177        self.ResolutionCalculator = ResolutionCalculatorPanel(self)
[d5c5d3d]178        self.DataOperation = DataOperationUtilityPanel(self)
[83d6249]179
[c889a3e]180    def addCategories(self):
181        """
182        Make sure categories.json exists and if not compile it and install in ~/.sasview
183        """
184        try:
185            from sas.sascalc.fit.models import ModelManager
186            from sas.qtgui.Utilities.CategoryInstaller import CategoryInstaller
187            model_list = ModelManager().cat_model_list()
188            CategoryInstaller.check_install(model_list=model_list)
189        except Exception:
[f0a8f74]190            import traceback
[c889a3e]191            logger.error("%s: could not load SasView models")
192            logger.error(traceback.format_exc())
193
[efaf022]194    def updateLogContextMenus(self, visible=False):
195        """
196        Modify the View/Data Explorer menu item text on widget visibility
197        """
198        if visible:
199            self._workspace.actionHide_LogExplorer.setText("Hide Log Explorer")
200        else:
201            self._workspace.actionHide_LogExplorer.setText("Show Log Explorer")
202
[768387e0]203    def updateContextMenus(self, visible=False):
204        """
205        Modify the View/Data Explorer menu item text on widget visibility
206        """
207        if visible:
208            self._workspace.actionHide_DataExplorer.setText("Hide Data Explorer")
209        else:
210            self._workspace.actionHide_DataExplorer.setText("Show Data Explorer")
211
[e540cd2]212    def statusBarSetup(self):
213        """
214        Define the status bar.
215        | <message label> .... | Progress Bar |
216
217        Progress bar invisible until explicitly shown
218        """
[4992ff2]219        self.progress = QProgressBar()
[e540cd2]220        self._workspace.statusbar.setSizeGripEnabled(False)
221
[4992ff2]222        self.statusLabel = QLabel()
[e540cd2]223        self.statusLabel.setText("Welcome to SasView")
[8cb6cd6]224        self._workspace.statusbar.addPermanentWidget(self.statusLabel, 1)
[e540cd2]225        self._workspace.statusbar.addPermanentWidget(self.progress, stretch=0)
[8cb6cd6]226        self.progress.setRange(0, 100)
[e540cd2]227        self.progress.setValue(0)
228        self.progress.setTextVisible(True)
229        self.progress.setVisible(False)
230
[9d266d2]231    def fileWasRead(self, data):
[f721030]232        """
[f82ab8c]233        Callback for fileDataReceivedSignal
[f721030]234        """
235        pass
[481ff26]236
[e90988c]237    def showHelp(self, url):
238        """
239        Open a local url in the default browser
240        """
[ee22241]241        GuiUtils.showHelp(url)
[e90988c]242
[8cb6cd6]243    def workspace(self):
244        """
245        Accessor for the main window workspace
246        """
247        return self._workspace.workspace
248
[83d6249]249    def perspectiveChanged(self, perspective_name):
250        """
251        Respond to change of the perspective signal
252        """
253        # Close the previous perspective
[9e54199]254        self.clearPerspectiveMenubarOptions(self._current_perspective)
[83d6249]255        if self._current_perspective:
[b1e36a3]256            self._current_perspective.setClosable()
[83d6249]257            self._current_perspective.close()
[7c487846]258            self._workspace.workspace.removeSubWindow(self._current_perspective)
[83d6249]259        # Default perspective
[811bec1]260        self._current_perspective = Perspectives.PERSPECTIVES[str(perspective_name)](parent=self)
[9c391946]261
[8ac3551]262        self.setupPerspectiveMenubarOptions(self._current_perspective)
263
[d1955d67]264        subwindow = self._workspace.workspace.addSubWindow(self._current_perspective)
[4992ff2]265
[9c391946]266        # Resize to the workspace height
[fbfc488]267        workspace_height = self._workspace.workspace.sizeHint().height()
268        perspective_size = self._current_perspective.sizeHint()
269        perspective_width = perspective_size.width()
270        self._current_perspective.resize(perspective_width, workspace_height-10)
[7969b9c]271
[83d6249]272        self._current_perspective.show()
273
[f721030]274    def updatePerspective(self, data):
275        """
[71361f0]276        Update perspective with data sent.
[f721030]277        """
278        assert isinstance(data, list)
279        if self._current_perspective is not None:
[b3e8629]280            self._current_perspective.setData(list(data.values()))
[f721030]281        else:
282            msg = "No perspective is currently active."
283            logging.info(msg)
[481ff26]284
[f721030]285    def communicator(self):
[257bd57]286        """ Accessor for the communicator """
[f721030]287        return self.communicate
288
289    def perspective(self):
[257bd57]290        """ Accessor for the perspective """
[f721030]291        return self._current_perspective
292
[e540cd2]293    def updateProgressBar(self, value):
294        """
295        Update progress bar with the required value (0-100)
296        """
[8cb6cd6]297        assert -1 <= value <= 100
[e540cd2]298        if value == -1:
299            self.progress.setVisible(False)
300            return
301        if not self.progress.isVisible():
302            self.progress.setTextVisible(True)
303            self.progress.setVisible(True)
304
305        self.progress.setValue(value)
306
[f721030]307    def updateStatusBar(self, text):
308        """
[71361f0]309        Set the status bar text
[f721030]310        """
[e540cd2]311        self.statusLabel.setText(text)
[f721030]312
[e4335ae]313    def appendLog(self, msg):
314        """Appends a message to the list widget in the Log Explorer. Use this
315        instead of listWidget.insertPlainText() to facilitate auto-scrolling"""
316        self.listWidget.append(msg.strip())
317
[1042dba]318    def createGuiData(self, item, p_file=None):
319        """
320        Access the Data1D -> plottable Data1D conversion
321        """
322        return self._data_manager.create_gui_data(item, p_file)
[f721030]323
324    def setData(self, data):
325        """
326        Sends data to current perspective
327        """
328        if self._current_perspective is not None:
[b3e8629]329            self._current_perspective.setData(list(data.values()))
[f721030]330        else:
331            msg = "Guiframe does not have a current perspective"
332            logging.info(msg)
333
[d4dac80]334    def findItemFromFilename(self, filename):
335        """
336        Queries the data explorer for the index corresponding to the filename within
337        """
338        return self.filesWidget.itemFromFilename(filename)
339
[9e426c1]340    def quitApplication(self):
341        """
342        Close the reactor and exit nicely.
343        """
344        # Display confirmation messagebox
345        quit_msg = "Are you sure you want to exit the application?"
[4992ff2]346        reply = QMessageBox.question(
[481ff26]347            self._parent,
[7451b88]348            'Information',
[481ff26]349            quit_msg,
[4992ff2]350            QMessageBox.Yes,
351            QMessageBox.No)
[9e426c1]352
353        # Exit if yes
[4992ff2]354        if reply == QMessageBox.Yes:
[133812c7]355            # save the paths etc.
356            self.saveCustomConfig()
[7451b88]357            reactor.callFromThread(reactor.stop)
358            return True
359
360        return False
[9e426c1]361
362    def checkUpdate(self):
363        """
364        Check with the deployment server whether a new version
365        of the application is available.
366        A thread is started for the connecting with the server. The thread calls
367        a call-back method when the current version number has been obtained.
368        """
369        version_info = {"version": "0.0.0"}
[dc5ef15]370        c = ConnectionProxy(LocalConfig.__update_URL__, LocalConfig.UPDATE_TIMEOUT)
[9e426c1]371        response = c.connect()
[71361f0]372        if response is None:
373            return
374        try:
375            content = response.read().strip()
376            logging.info("Connected to www.sasview.org. Latest version: %s"
377                            % (content))
378            version_info = json.loads(content)
379            self.processVersion(version_info)
[b3e8629]380        except ValueError as ex:
[71361f0]381            logging.info("Failed to connect to www.sasview.org:", ex)
[481ff26]382
[f82ab8c]383    def processVersion(self, version_info):
[9e426c1]384        """
385        Call-back method for the process of checking for updates.
386        This methods is called by a VersionThread object once the current
387        version number has been obtained. If the check is being done in the
388        background, the user will not be notified unless there's an update.
389
390        :param version: version string
391        """
392        try:
393            version = version_info["version"]
394            if version == "0.0.0":
395                msg = "Could not connect to the application server."
396                msg += " Please try again later."
397                self.communicate.statusBarUpdateSignal.emit(msg)
398
[cee5c78]399            elif version.__gt__(LocalConfig.__version__):
[9e426c1]400                msg = "Version %s is available! " % str(version)
[f82ab8c]401                if "download_url" in version_info:
402                    webbrowser.open(version_info["download_url"])
[9e426c1]403                else:
[f82ab8c]404                    webbrowser.open(LocalConfig.__download_page__)
[9e426c1]405                self.communicate.statusBarUpdateSignal.emit(msg)
406            else:
407                msg = "You have the latest version"
408                msg += " of %s" % str(LocalConfig.__appname__)
409                self.communicate.statusBarUpdateSignal.emit(msg)
410        except:
411            msg = "guiframe: could not get latest application"
[b3e8629]412            msg += " version number\n  %s" % sys.exc_info()[1]
[9e426c1]413            logging.error(msg)
[f82ab8c]414            msg = "Could not connect to the application server."
415            msg += " Please try again later."
416            self.communicate.statusBarUpdateSignal.emit(msg)
[9e426c1]417
[fc5d2d7f]418    def actionWelcome(self):
[8353d90]419        """ Show the Welcome panel """
[fc5d2d7f]420        self.welcomePanel = WelcomePanel()
[8353d90]421        self._workspace.workspace.addSubWindow(self.welcomePanel)
422        self.welcomePanel.show()
423
[fc5d2d7f]424    def showWelcomeMessage(self):
425        """ Show the Welcome panel, when required """
426        # Assure the welcome screen is requested
427        show_welcome_widget = True
428        custom_config = get_custom_config()
429        if hasattr(custom_config, "WELCOME_PANEL_SHOW"):
430            if isinstance(custom_config.WELCOME_PANEL_SHOW, bool):
431                show_welcome_widget = custom_config.WELCOME_PANEL_SHOW
432            else:
433                logging.warning("WELCOME_PANEL_SHOW has invalid value in custom_config.py")
434        if show_welcome_widget:
435            self.actionWelcome()
436
[f721030]437    def addCallbacks(self):
438        """
[9e426c1]439        Method defining all signal connections for the gui manager
[f721030]440        """
[0cd8612]441        self.communicate = GuiUtils.Communicate()
[9d266d2]442        self.communicate.fileDataReceivedSignal.connect(self.fileWasRead)
[f721030]443        self.communicate.statusBarUpdateSignal.connect(self.updateStatusBar)
444        self.communicate.updatePerspectiveWithDataSignal.connect(self.updatePerspective)
[e540cd2]445        self.communicate.progressBarUpdateSignal.connect(self.updateProgressBar)
[83d6249]446        self.communicate.perspectiveChangedSignal.connect(self.perspectiveChanged)
[cbcdd2c]447        self.communicate.updateTheoryFromPerspectiveSignal.connect(self.updateTheoryFromPerspective)
[fd7ef36]448        self.communicate.deleteIntermediateTheoryPlotsSignal.connect(self.deleteIntermediateTheoryPlotsByModelID)
[d48cc19]449        self.communicate.plotRequestedSignal.connect(self.showPlot)
[3b3b40b]450        self.communicate.plotFromFilenameSignal.connect(self.showPlotFromFilename)
[d5c5d3d]451        self.communicate.updateModelFromDataOperationPanelSignal.connect(self.updateModelFromDataOperationPanel)
[f721030]452
453    def addTriggers(self):
454        """
455        Trigger definitions for all menu/toolbar actions.
456        """
[dad086f]457        # disable not yet fully implemented actions
[efaf022]458        self._workspace.actionUndo.setVisible(False)
459        self._workspace.actionRedo.setVisible(False)
460        self._workspace.actionReset.setVisible(False)
461        self._workspace.actionStartup_Settings.setVisible(False)
[133812c7]462        #self._workspace.actionImage_Viewer.setVisible(False)
[efaf022]463        self._workspace.actionCombine_Batch_Fit.setVisible(False)
[12acdcc]464        # orientation viewer set to invisible SASVIEW-1132
465        self._workspace.actionOrientation_Viewer.setVisible(False)
[dad086f]466
[f721030]467        # File
468        self._workspace.actionLoadData.triggered.connect(self.actionLoadData)
469        self._workspace.actionLoad_Data_Folder.triggered.connect(self.actionLoad_Data_Folder)
470        self._workspace.actionOpen_Project.triggered.connect(self.actionOpen_Project)
471        self._workspace.actionOpen_Analysis.triggered.connect(self.actionOpen_Analysis)
[b1b71ad]472        self._workspace.actionSave.triggered.connect(self.actionSave_Project)
[f721030]473        self._workspace.actionSave_Analysis.triggered.connect(self.actionSave_Analysis)
474        self._workspace.actionQuit.triggered.connect(self.actionQuit)
475        # Edit
476        self._workspace.actionUndo.triggered.connect(self.actionUndo)
477        self._workspace.actionRedo.triggered.connect(self.actionRedo)
478        self._workspace.actionCopy.triggered.connect(self.actionCopy)
479        self._workspace.actionPaste.triggered.connect(self.actionPaste)
480        self._workspace.actionReport.triggered.connect(self.actionReport)
481        self._workspace.actionReset.triggered.connect(self.actionReset)
482        self._workspace.actionExcel.triggered.connect(self.actionExcel)
483        self._workspace.actionLatex.triggered.connect(self.actionLatex)
484        # View
485        self._workspace.actionShow_Grid_Window.triggered.connect(self.actionShow_Grid_Window)
486        self._workspace.actionHide_Toolbar.triggered.connect(self.actionHide_Toolbar)
487        self._workspace.actionStartup_Settings.triggered.connect(self.actionStartup_Settings)
[3d18691]488        self._workspace.actionCategory_Manager.triggered.connect(self.actionCategory_Manager)
[768387e0]489        self._workspace.actionHide_DataExplorer.triggered.connect(self.actionHide_DataExplorer)
[efaf022]490        self._workspace.actionHide_LogExplorer.triggered.connect(self.actionHide_LogExplorer)
[f721030]491        # Tools
492        self._workspace.actionData_Operation.triggered.connect(self.actionData_Operation)
493        self._workspace.actionSLD_Calculator.triggered.connect(self.actionSLD_Calculator)
494        self._workspace.actionDensity_Volume_Calculator.triggered.connect(self.actionDensity_Volume_Calculator)
[363fbfa]495        self._workspace.actionKeissig_Calculator.triggered.connect(self.actionKiessig_Calculator)
496        #self._workspace.actionKIESSING_Calculator.triggered.connect(self.actionKIESSING_Calculator)
[f721030]497        self._workspace.actionSlit_Size_Calculator.triggered.connect(self.actionSlit_Size_Calculator)
498        self._workspace.actionSAS_Resolution_Estimator.triggered.connect(self.actionSAS_Resolution_Estimator)
499        self._workspace.actionGeneric_Scattering_Calculator.triggered.connect(self.actionGeneric_Scattering_Calculator)
500        self._workspace.actionPython_Shell_Editor.triggered.connect(self.actionPython_Shell_Editor)
501        self._workspace.actionImage_Viewer.triggered.connect(self.actionImage_Viewer)
[aa1db44]502        self._workspace.actionOrientation_Viewer.triggered.connect(self.actionOrientation_Viewer)
[6b50296]503        self._workspace.actionFreeze_Theory.triggered.connect(self.actionFreeze_Theory)
[f721030]504        # Fitting
505        self._workspace.actionNew_Fit_Page.triggered.connect(self.actionNew_Fit_Page)
506        self._workspace.actionConstrained_Fit.triggered.connect(self.actionConstrained_Fit)
507        self._workspace.actionCombine_Batch_Fit.triggered.connect(self.actionCombine_Batch_Fit)
508        self._workspace.actionFit_Options.triggered.connect(self.actionFit_Options)
[06ce180]509        self._workspace.actionGPU_Options.triggered.connect(self.actionGPU_Options)
[f721030]510        self._workspace.actionFit_Results.triggered.connect(self.actionFit_Results)
[3b3b40b]511        self._workspace.actionAdd_Custom_Model.triggered.connect(self.actionAdd_Custom_Model)
[f721030]512        self._workspace.actionEdit_Custom_Model.triggered.connect(self.actionEdit_Custom_Model)
[3b3b40b]513        self._workspace.actionManage_Custom_Models.triggered.connect(self.actionManage_Custom_Models)
[01ef3f7]514        self._workspace.actionAddMult_Models.triggered.connect(self.actionAddMult_Models)
[339e22b]515        self._workspace.actionEditMask.triggered.connect(self.actionEditMask)
516
[f721030]517        # Window
518        self._workspace.actionCascade.triggered.connect(self.actionCascade)
[e540cd2]519        self._workspace.actionTile.triggered.connect(self.actionTile)
[f721030]520        self._workspace.actionArrange_Icons.triggered.connect(self.actionArrange_Icons)
521        self._workspace.actionNext.triggered.connect(self.actionNext)
522        self._workspace.actionPrevious.triggered.connect(self.actionPrevious)
[6bc0840]523        self._workspace.actionClosePlots.triggered.connect(self.actionClosePlots)
[f721030]524        # Analysis
525        self._workspace.actionFitting.triggered.connect(self.actionFitting)
526        self._workspace.actionInversion.triggered.connect(self.actionInversion)
527        self._workspace.actionInvariant.triggered.connect(self.actionInvariant)
[8ac3551]528        self._workspace.actionCorfunc.triggered.connect(self.actionCorfunc)
[f721030]529        # Help
530        self._workspace.actionDocumentation.triggered.connect(self.actionDocumentation)
531        self._workspace.actionTutorial.triggered.connect(self.actionTutorial)
532        self._workspace.actionAcknowledge.triggered.connect(self.actionAcknowledge)
533        self._workspace.actionAbout.triggered.connect(self.actionAbout)
[fc5d2d7f]534        self._workspace.actionWelcomeWidget.triggered.connect(self.actionWelcome)
[f721030]535        self._workspace.actionCheck_for_update.triggered.connect(self.actionCheck_for_update)
536
[d4dac80]537        self.communicate.sendDataToGridSignal.connect(self.showBatchOutput)
[8748751]538        self.communicate.resultPlotUpdateSignal.connect(self.showFitResults)
[d4dac80]539
[f721030]540    #============ FILE =================
541    def actionLoadData(self):
542        """
[9e426c1]543        Menu File/Load Data File(s)
[f721030]544        """
[5032ea68]545        self.filesWidget.loadFile()
[f721030]546
547    def actionLoad_Data_Folder(self):
548        """
[9e426c1]549        Menu File/Load Data Folder
[f721030]550        """
[5032ea68]551        self.filesWidget.loadFolder()
[f721030]552
553    def actionOpen_Project(self):
554        """
[630155bd]555        Menu Open Project
[f721030]556        """
[630155bd]557        self.filesWidget.loadProject()
[f721030]558
559    def actionOpen_Analysis(self):
560        """
561        """
[2eeda93]562        self.filesWidget.loadAnalysis()
[f721030]563        pass
564
[b1b71ad]565    def actionSave_Project(self):
[f721030]566        """
[630155bd]567        Menu Save Project
[f721030]568        """
[a3c59503]569        filename = self.filesWidget.saveProject()
570
571        # datasets
572        all_data = self.filesWidget.getAllData()
573
574        # fit tabs
[ebcdb02]575        params={}
576        perspective = self.perspective()
577        if hasattr(perspective, 'isSerializable') and perspective.isSerializable():
578            params = perspective.serializeAllFitpage()
[a3c59503]579
580        # project dictionary structure:
581        # analysis[data.id] = [{"fit_data":[data, checkbox, child data],
582        #                       "fit_params":[fitpage_state]}
583        # "fit_params" not present if dataset not sent to fitting
584        analysis = {}
585
586        for id, data in all_data.items():
[17e2d502]587            if id=='is_batch':
588                analysis['is_batch'] = data
589                continue
[a3c59503]590            data_content = {"fit_data":data}
591            if id in params.keys():
592                # this dataset is represented also by the fit tab. Add to it.
593                data_content["fit_params"] = params[id]
594            analysis[id] = data_content
595
596        with open(filename, 'w') as outfile:
597            GuiUtils.saveData(outfile, analysis)
[f721030]598
599    def actionSave_Analysis(self):
600        """
[57be490]601        Menu File/Save Analysis
[f721030]602        """
[2eeda93]603        per = self.perspective()
604        if not isinstance(per, FittingWindow):
605            return
606        # get fit page serialization
[a3c59503]607        params = per.serializeCurrentFitpage()
[be74751]608        # Find dataset ids for the current tab
609        # (can be multiple, if batch)
[2eeda93]610        data_id = per.currentTabDataId()
611        tab_id = per.currentTab.tab_id
612        analysis = {}
[be74751]613        for id in data_id:
614            an = {}
615            data_for_id = self.filesWidget.getDataForID(id)
616            an['fit_data'] = data_for_id
617            an['fit_params'] = [params]
618            analysis[id] = an
[2eeda93]619
620        self.filesWidget.saveAnalysis(analysis, tab_id)
621
[f721030]622    def actionQuit(self):
623        """
[1042dba]624        Close the reactor, exit the application.
[f721030]625        """
[9e426c1]626        self.quitApplication()
[f721030]627
628    #============ EDIT =================
629    def actionUndo(self):
630        """
631        """
632        print("actionUndo TRIGGERED")
633        pass
634
635    def actionRedo(self):
636        """
637        """
638        print("actionRedo TRIGGERED")
639        pass
640
641    def actionCopy(self):
642        """
[8e2cd79]643        Send a signal to the fitting perspective so parameters
644        can be saved to the clipboard
[f721030]645        """
[8e2cd79]646        self.communicate.copyFitParamsSignal.emit("")
[0eff615]647        self._workspace.actionPaste.setEnabled(True)
[f721030]648        pass
649
650    def actionPaste(self):
651        """
[8e2cd79]652        Send a signal to the fitting perspective so parameters
653        from the clipboard can be used to modify the fit state
[f721030]654        """
[8e2cd79]655        self.communicate.pasteFitParamsSignal.emit()
[f721030]656
657    def actionReport(self):
658        """
[57be490]659        Show the Fit Report dialog.
[f721030]660        """
[57be490]661        report_list = None
662        if getattr(self._current_perspective, "currentTab"):
663            try:
664                report_list = self._current_perspective.currentTab.getReport()
665            except Exception as ex:
666                logging.error("Report generation failed with: " + str(ex))
667
668        if report_list is not None:
669            self.report_dialog = ReportDialog(parent=self, report_list=report_list)
670            self.report_dialog.show()
[f721030]671
672    def actionReset(self):
673        """
674        """
[0cd8612]675        logging.warning(" *** actionOpen_Analysis logging *******")
676        print("actionReset print TRIGGERED")
677        sys.stderr.write("STDERR - TRIGGERED")
[f721030]678        pass
679
680    def actionExcel(self):
681        """
[8e2cd79]682        Send a signal to the fitting perspective so parameters
683        can be saved to the clipboard
[f721030]684        """
[20f4857]685        self.communicate.copyExcelFitParamsSignal.emit("Excel")
[f721030]686
687    def actionLatex(self):
688        """
[8e2cd79]689        Send a signal to the fitting perspective so parameters
690        can be saved to the clipboard
[f721030]691        """
[20f4857]692        self.communicate.copyLatexFitParamsSignal.emit("Latex")
[f721030]693
694    #============ VIEW =================
695    def actionShow_Grid_Window(self):
696        """
697        """
[d4dac80]698        self.showBatchOutput(None)
699
700    def showBatchOutput(self, output_data):
701        """
702        Display/redisplay the batch fit viewer
703        """
[fa762f4]704        self.grid_subwindow.setVisible(True)
[d4dac80]705        if output_data:
706            self.grid_window.addFitResults(output_data)
[f721030]707
708    def actionHide_Toolbar(self):
709        """
[e540cd2]710        Toggle toolbar vsibility
[f721030]711        """
[e540cd2]712        if self._workspace.toolBar.isVisible():
713            self._workspace.actionHide_Toolbar.setText("Show Toolbar")
714            self._workspace.toolBar.setVisible(False)
715        else:
716            self._workspace.actionHide_Toolbar.setText("Hide Toolbar")
717            self._workspace.toolBar.setVisible(True)
[f721030]718        pass
719
[768387e0]720    def actionHide_DataExplorer(self):
721        """
722        Toggle Data Explorer vsibility
723        """
724        if self.dockedFilesWidget.isVisible():
725            self.dockedFilesWidget.setVisible(False)
726        else:
727            self.dockedFilesWidget.setVisible(True)
728        pass
729
[efaf022]730    def actionHide_LogExplorer(self):
731        """
732        Toggle Data Explorer vsibility
733        """
734        if self.logDockWidget.isVisible():
735            self.logDockWidget.setVisible(False)
736        else:
737            self.logDockWidget.setVisible(True)
738        pass
739
[f721030]740    def actionStartup_Settings(self):
741        """
742        """
743        print("actionStartup_Settings TRIGGERED")
744        pass
745
[3d18691]746    def actionCategory_Manager(self):
[f721030]747        """
748        """
[3d18691]749        self.categoryManagerWidget.show()
[f721030]750
751    #============ TOOLS =================
752    def actionData_Operation(self):
753        """
754        """
[f0bb711]755        self.communicate.sendDataToPanelSignal.emit(self._data_manager.get_all_data())
[d5c5d3d]756
757        self.DataOperation.show()
[f721030]758
759    def actionSLD_Calculator(self):
760        """
761        """
[1d85b5e]762        self.SLDCalculator.show()
[f721030]763
764    def actionDensity_Volume_Calculator(self):
765        """
766        """
[1d85b5e]767        self.DVCalculator.show()
[f721030]768
[363fbfa]769    def actionKiessig_Calculator(self):
770        """
771        """
772        self.KIESSIGCalculator.show()
773
[f721030]774    def actionSlit_Size_Calculator(self):
775        """
776        """
[a8ec5b1]777        self.SlitSizeCalculator.show()
[f721030]778
779    def actionSAS_Resolution_Estimator(self):
780        """
781        """
[fa05c6c1]782        try:
783            self.ResolutionCalculator.show()
784        except Exception as ex:
785            logging.error(str(ex))
786            return
[f721030]787
788    def actionGeneric_Scattering_Calculator(self):
789        """
790        """
[fa05c6c1]791        try:
792            self.GENSASCalculator.show()
793        except Exception as ex:
794            logging.error(str(ex))
795            return
[f721030]796
797    def actionPython_Shell_Editor(self):
798        """
[1af348e]799        Display the Jupyter console as a docked widget.
[f721030]800        """
[fef38e8]801        # Import moved here for startup performance reasons
802        from sas.qtgui.Utilities.IPythonWidget import IPythonWidget
[1af348e]803        terminal = IPythonWidget()
804
805        # Add the console window as another docked widget
[4992ff2]806        self.ipDockWidget = QDockWidget("IPython", self._workspace)
[1af348e]807        self.ipDockWidget.setObjectName("IPythonDockWidget")
808        self.ipDockWidget.setWidget(terminal)
[fbfc488]809        self._workspace.addDockWidget(Qt.RightDockWidgetArea, self.ipDockWidget)
[f721030]810
[6b50296]811    def actionFreeze_Theory(self):
812        """
813        Convert a child index with data into a separate top level dataset
814        """
815        self.filesWidget.freezeCheckedData()
816
[aa1db44]817    def actionOrientation_Viewer(self):
818        """
819        Make sasmodels orientation & jitter viewer available
820        """
821        from sasmodels.jitter import run as orientation_run
822        try:
823            orientation_run()
824        except Exception as ex:
825            logging.error(str(ex))
826
[f721030]827    def actionImage_Viewer(self):
828        """
829        """
[133812c7]830        try:
831            self.image_viewer = ImageViewer(self)
832            if sys.platform == "darwin":
833                self.image_viewer.menubar.setNativeMenuBar(False)
834            self.image_viewer.show()
835        except Exception as ex:
836            logging.error(str(ex))
837            return
[f721030]838
839    #============ FITTING =================
840    def actionNew_Fit_Page(self):
841        """
[60af928]842        Add a new, empty Fit page in the fitting perspective.
[f721030]843        """
[60af928]844        # Make sure the perspective is correct
845        per = self.perspective()
846        if not isinstance(per, FittingWindow):
847            return
848        per.addFit(None)
[f721030]849
850    def actionConstrained_Fit(self):
851        """
[676f137]852        Add a new Constrained and Simult. Fit page in the fitting perspective.
[f721030]853        """
[676f137]854        per = self.perspective()
855        if not isinstance(per, FittingWindow):
856            return
857        per.addConstraintTab()
[f721030]858
859    def actionCombine_Batch_Fit(self):
860        """
861        """
862        print("actionCombine_Batch_Fit TRIGGERED")
863        pass
864
865    def actionFit_Options(self):
866        """
867        """
[2d0e0c1]868        if getattr(self._current_perspective, "fit_options_widget"):
869            self._current_perspective.fit_options_widget.show()
[f721030]870        pass
871
[06ce180]872    def actionGPU_Options(self):
873        """
[9863343]874        Load the OpenCL selection dialog if the fitting perspective is active
[06ce180]875        """
[9863343]876        if hasattr(self._current_perspective, "gpu_options_widget"):
[06ce180]877            self._current_perspective.gpu_options_widget.show()
878        pass
879
[f721030]880    def actionFit_Results(self):
881        """
882        """
[8748751]883        self.showFitResults(None)
884
885    def showFitResults(self, output_data):
886        """
887        Show bumps convergence plots
888        """
889        self.results_frame.setVisible(True)
890        if output_data:
[0c83303]891            self.results_panel.onPlotResults(output_data, optimizer=self.perspective().optimizer)
[f721030]892
[3b3b40b]893    def actionAdd_Custom_Model(self):
894        """
895        """
896        self.model_editor = TabbedModelEditor(self)
897        self.model_editor.show()
898
[f721030]899    def actionEdit_Custom_Model(self):
900        """
901        """
[3b3b40b]902        self.model_editor = TabbedModelEditor(self, edit_only=True)
903        self.model_editor.show()
904
905    def actionManage_Custom_Models(self):
906        """
907        """
908        self.model_manager = PluginManager(self)
909        self.model_manager.show()
[f721030]910
[01ef3f7]911    def actionAddMult_Models(self):
912        """
913        """
[3b8cc00]914        # Add Simple Add/Multiply Editor
[01ef3f7]915        self.add_mult_editor = AddMultEditor(self)
916        self.add_mult_editor.show()
917
[339e22b]918    def actionEditMask(self):
919
920        self.communicate.extMaskEditorSignal.emit()
921
[f721030]922    #============ ANALYSIS =================
923    def actionFitting(self):
924        """
[9e54199]925        Change to the Fitting perspective
[f721030]926        """
[9e54199]927        self.perspectiveChanged("Fitting")
[8ac3551]928        # Notify other widgets
929        self.filesWidget.onAnalysisUpdate("Fitting")
[f721030]930
931    def actionInversion(self):
932        """
[9e54199]933        Change to the Inversion perspective
[f721030]934        """
[d4881f6a]935        self.perspectiveChanged("Inversion")
[8ac3551]936        self.filesWidget.onAnalysisUpdate("Inversion")
[f721030]937
938    def actionInvariant(self):
939        """
[9e54199]940        Change to the Invariant perspective
[f721030]941        """
[9e54199]942        self.perspectiveChanged("Invariant")
[8ac3551]943        self.filesWidget.onAnalysisUpdate("Invariant")
944
945    def actionCorfunc(self):
946        """
947        Change to the Corfunc perspective
948        """
949        self.perspectiveChanged("Corfunc")
950        self.filesWidget.onAnalysisUpdate("Corfunc")
[f721030]951
952    #============ WINDOW =================
953    def actionCascade(self):
954        """
[e540cd2]955        Arranges all the child windows in a cascade pattern.
[f721030]956        """
[2b39fea]957        self._workspace.workspace.cascadeSubWindows()
[f721030]958
[e540cd2]959    def actionTile(self):
[f721030]960        """
[e540cd2]961        Tile workspace windows
[f721030]962        """
[2b39fea]963        self._workspace.workspace.tileSubWindows()
[f721030]964
965    def actionArrange_Icons(self):
966        """
[e540cd2]967        Arranges all iconified windows at the bottom of the workspace
[f721030]968        """
[e540cd2]969        self._workspace.workspace.arrangeIcons()
[f721030]970
971    def actionNext(self):
972        """
[e540cd2]973        Gives the input focus to the next window in the list of child windows.
[f721030]974        """
[2b39fea]975        self._workspace.workspace.activateNextSubWindow()
[f721030]976
977    def actionPrevious(self):
978        """
[e540cd2]979        Gives the input focus to the previous window in the list of child windows.
[f721030]980        """
[2b39fea]981        self._workspace.workspace.activatePreviousSubWindow()
[f721030]982
[6bc0840]983    def actionClosePlots(self):
984        """
985        Closes all Plotters and Plotter2Ds.
986        """
987        self.filesWidget.closeAllPlots()
988        pass
989
[f721030]990    #============ HELP =================
991    def actionDocumentation(self):
992        """
[9e426c1]993        Display the documentation
994
995        TODO: use QNetworkAccessManager to assure _helpLocation is valid
[f721030]996        """
[fe76fba]997        helpfile = "/index.html"
[aed0532]998        self.showHelp(helpfile)
[f721030]999
1000    def actionTutorial(self):
1001        """
[9e426c1]1002        Open the tutorial PDF file with default PDF renderer
[f721030]1003        """
[9e426c1]1004        # Not terribly safe here. Shell injection warning.
1005        # isfile() helps but this probably needs a better solution.
1006        if os.path.isfile(self._tutorialLocation):
1007            result = subprocess.Popen([self._tutorialLocation], shell=True)
[f721030]1008
1009    def actionAcknowledge(self):
1010        """
[9e426c1]1011        Open the Acknowledgements widget
[f721030]1012        """
[9e426c1]1013        self.ackWidget.show()
[f721030]1014
1015    def actionAbout(self):
1016        """
[9e426c1]1017        Open the About box
[f721030]1018        """
[f82ab8c]1019        # Update the about box with current version and stuff
1020
1021        # TODO: proper sizing
1022        self.aboutWidget.show()
[f721030]1023
1024    def actionCheck_for_update(self):
1025        """
[9e426c1]1026        Menu Help/Check for Update
[f721030]1027        """
[9e426c1]1028        self.checkUpdate()
1029
[cbcdd2c]1030    def updateTheoryFromPerspective(self, index):
1031        """
1032        Catch the theory update signal from a perspective
1033        Send the request to the DataExplorer for updating the theory model.
1034        """
1035        self.filesWidget.updateTheoryFromPerspective(index)
1036
[fd7ef36]1037    def deleteIntermediateTheoryPlotsByModelID(self, model_id):
1038        """
1039        Catch the signal to delete items in the Theory item model which correspond to a model ID.
1040        Send the request to the DataExplorer for updating the theory model.
1041        """
1042        self.filesWidget.deleteIntermediateTheoryPlotsByModelID(model_id)
1043
[d5c5d3d]1044    def updateModelFromDataOperationPanel(self, new_item, new_datalist_item):
1045        """
1046        :param new_item: item to be added to list of loaded files
1047        :param new_datalist_item:
1048        """
[4992ff2]1049        if not isinstance(new_item, QStandardItem) or \
[d5c5d3d]1050                not isinstance(new_datalist_item, dict):
1051            msg = "Wrong data type returned from calculations."
[b3e8629]1052            raise AttributeError(msg)
[d5c5d3d]1053
1054        self.filesWidget.model.appendRow(new_item)
1055        self._data_manager.add_data(new_datalist_item)
1056
[3b3b40b]1057    def showPlotFromFilename(self, filename):
1058        """
1059        Pass the show plot request to the data explorer
1060        """
1061        if hasattr(self, "filesWidget"):
1062            self.filesWidget.displayFile(filename=filename, is_data=True)
1063
[5b144c6]1064    def showPlot(self, plot, id):
[d48cc19]1065        """
1066        Pass the show plot request to the data explorer
1067        """
1068        if hasattr(self, "filesWidget"):
[5b144c6]1069            self.filesWidget.displayData(plot, id)
[9e54199]1070
1071    def uncheckAllMenuItems(self, menuObject):
1072        """
1073        Uncheck all options in a given menu
1074        """
1075        menuObjects = menuObject.actions()
1076
1077        for menuItem in menuObjects:
1078            menuItem.setChecked(False)
1079
1080    def checkAnalysisOption(self, analysisMenuOption):
1081        """
1082        Unchecks all the items in the analysis menu and checks the item passed
1083        """
1084        self.uncheckAllMenuItems(self._workspace.menuAnalysis)
1085        analysisMenuOption.setChecked(True)
1086
1087    def clearPerspectiveMenubarOptions(self, perspective):
1088        """
1089        When closing a perspective, clears the menu bar
1090        """
1091        for menuItem in self._workspace.menuAnalysis.actions():
1092            menuItem.setChecked(False)
1093
1094        if isinstance(self._current_perspective, Perspectives.PERSPECTIVES["Fitting"]):
1095            self._workspace.menubar.removeAction(self._workspace.menuFitting.menuAction())
1096
1097    def setupPerspectiveMenubarOptions(self, perspective):
1098        """
1099        When setting a perspective, sets up the menu bar
1100        """
[dee9e5f]1101        self._workspace.actionReport.setEnabled(False)
[2eeda93]1102        self._workspace.actionOpen_Analysis.setEnabled(False)
1103        self._workspace.actionSave_Analysis.setEnabled(False)
1104        if hasattr(perspective, 'isSerializable') and perspective.isSerializable():
1105            self._workspace.actionOpen_Analysis.setEnabled(True)
1106            self._workspace.actionSave_Analysis.setEnabled(True)
1107
[9e54199]1108        if isinstance(perspective, Perspectives.PERSPECTIVES["Fitting"]):
1109            self.checkAnalysisOption(self._workspace.actionFitting)
1110            # Put the fitting menu back in
1111            # This is a bit involved but it is needed to preserve the menu ordering
1112            self._workspace.menubar.removeAction(self._workspace.menuWindow.menuAction())
1113            self._workspace.menubar.removeAction(self._workspace.menuHelp.menuAction())
1114            self._workspace.menubar.addAction(self._workspace.menuFitting.menuAction())
1115            self._workspace.menubar.addAction(self._workspace.menuWindow.menuAction())
1116            self._workspace.menubar.addAction(self._workspace.menuHelp.menuAction())
[dee9e5f]1117            self._workspace.actionReport.setEnabled(True)
[0eff615]1118
[9e54199]1119        elif isinstance(perspective, Perspectives.PERSPECTIVES["Invariant"]):
1120            self.checkAnalysisOption(self._workspace.actionInvariant)
[8ac3551]1121        elif isinstance(perspective, Perspectives.PERSPECTIVES["Inversion"]):
1122            self.checkAnalysisOption(self._workspace.actionInversion)
1123        elif isinstance(perspective, Perspectives.PERSPECTIVES["Corfunc"]):
[133812c7]1124            self.checkAnalysisOption(self._workspace.actionCorfunc)
1125
1126    def saveCustomConfig(self):
1127        """
1128        Save the config file based on current session values
1129        """
1130        # Load the current file
1131        config_content = GuiUtils.custom_config
1132
1133        changed = self.customSavePaths(config_content)
1134        changed = changed or self.customSaveOpenCL(config_content)
1135
1136        if changed:
1137            self.writeCustomConfig(config_content)
1138
1139    def customSavePaths(self, config_content):
1140        """
1141        Update the config module with current session paths
1142        Returns True if update was done, False, otherwise
1143        """
1144        changed = False
1145        # Find load path
1146        open_path = GuiUtils.DEFAULT_OPEN_FOLDER
1147        defined_path = self.filesWidget.default_load_location
1148        if open_path != defined_path:
1149            # Replace the load path
1150            config_content.DEFAULT_OPEN_FOLDER = defined_path
1151            changed = True
1152        return changed
1153
1154    def customSaveOpenCL(self, config_content):
1155        """
1156        Update the config module with current session OpenCL choice
1157        Returns True if update was done, False, otherwise
1158        """
1159        changed = False
1160        # Find load path
1161        file_value = GuiUtils.SAS_OPENCL
1162        session_value = os.environ.get("SAS_OPENCL", "")
1163        if file_value != session_value:
1164            # Replace the load path
1165            config_content.SAS_OPENCL = session_value
1166            changed = True
1167        return changed
1168
1169    def writeCustomConfig(self, config):
1170        """
1171        Write custom configuration
1172        """
1173        from sas import make_custom_config_path
1174        path = make_custom_config_path()
1175        # Just clobber the file - we already have its content read in
1176        with open(path, 'w') as out_f:
1177            out_f.write("#Application appearance custom configuration\n")
1178            for key, item in config.__dict__.items():
1179                if key[:2] != "__":
1180                    if isinstance(item, str):
1181                        item = '"' + item + '"'
1182                    out_f.write("%s = %s\n" % (key, str(item)))
1183        pass # debugger anchor
Note: See TracBrowser for help on using the repository browser.