Changeset 1d85b5e in sasview for src/sas/qtgui/GuiManager.py


Ignore:
Timestamp:
Oct 20, 2016 9:11:19 AM (8 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
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:
9968d6a
Parents:
ef36eb2
Message:

Linked two new calculators to the Gui Manager.

File:
1 edited

Legend:

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

    • Property mode changed from 100755 to 100644
    r7451b88 r1d85b5e  
    2424from IPythonWidget import IPythonWidget 
    2525from WelcomePanel import WelcomePanel 
     26from SldPanel import SldPanel 
     27from DensityPanel import DensityPanel 
    2628 
    2729# Perspectives 
     
    131133        self.ackWidget = Acknowledgements() 
    132134        self.aboutWidget = AboutBox() 
     135 
     136        # Add calculators - floating for usability 
     137        self.SLDCalculator = SldPanel(self) 
     138        self.DVCalculator = DensityPanel(self) 
    133139 
    134140    def statusBarSetup(self): 
     
    513519        """ 
    514520        """ 
    515         print("actionSLD_Calculator TRIGGERED") 
    516         pass 
     521        self.SLDCalculator.show() 
    517522 
    518523    def actionDensity_Volume_Calculator(self): 
    519524        """ 
    520525        """ 
    521         print("actionDensity_Volume_Calculator TRIGGERED") 
    522         pass 
     526        self.DVCalculator.show() 
    523527 
    524528    def actionSlit_Size_Calculator(self): 
Note: See TracChangeset for help on using the changeset viewer.