Changeset 630155bd in sasview for src/sas/qtgui/GuiManager.py


Ignore:
Timestamp:
Oct 5, 2016 2:40:30 PM (8 years ago)
Author:
davidm
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:
2366fb2, e207c3f
Parents:
d0ccd80f
Message:

implementation of loadProject and saveProject

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/GuiManager.py

    rf51ed67 r630155bd  
    111111        """ 
    112112        # Add FileDialog widget as docked 
    113         self.filesWidget = DataExplorerWindow(self._parent, self) 
     113        self.filesWidget = DataExplorerWindow(self._parent, self, manager=self._data_manager) 
    114114 
    115115        self.dockedFilesWidget = QtGui.QDockWidget("Data Explorer", self._workspace) 
     
    391391    def actionOpen_Project(self): 
    392392        """ 
    393         """ 
    394         print("actionOpen_Project TRIGGERED") 
    395         pass 
     393        Menu Open Project 
     394        """ 
     395        self.filesWidget.loadProject() 
    396396 
    397397    def actionOpen_Analysis(self): 
     
    403403    def actionSave(self): 
    404404        """ 
    405         """ 
    406         print("actionSave TRIGGERED") 
    407         pass 
     405        Menu Save Project 
     406        """ 
     407        self.filesWidget.saveProject() 
    408408 
    409409    def actionSave_Analysis(self): 
Note: See TracChangeset for help on using the changeset viewer.