Changeset fdc3cb0 in sasview


Ignore:
Timestamp:
Oct 17, 2011 4:29:18 PM (13 years ago)
Author:
Jae Cho <jhjcho@…>
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:
8547eb9
Parents:
40c84e4
Message:

titles for help windows

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • calculatorview/src/sans/perspectives/calculator/calculator.py

    r9a56619 rfdc3cb0  
    2525        # Log startup 
    2626        logging.info("Calculator plug-in started")    
     27        self.sub_menu = "Tool"  
    2728   
    2829    def help(self, evt): 
  • fittingview/src/sans/perspectives/fitting/help_panel.py

    r7bce31d rfdc3cb0  
    1616    """ 
    1717    """ 
    18     def __init__(self, parent, id, title= 'HelpWindow', pageToOpen=None): 
     18    def __init__(self, parent, id, title='Fitting Help', pageToOpen=None): 
    1919        wx.Frame.__init__(self, parent, id, title, size=(850, 530)) 
    2020        """ 
    2121        contains help info 
    2222        """ 
     23        self.SetTitle('Fitting Help')  
    2324        from sans.perspectives.fitting import get_data_path as fit_path 
    2425        fitting_path = fit_path(media='media') 
  • invariantview/src/sans/perspectives/invariant/help_panel.py

    r7f14996 rfdc3cb0  
    4848        contains help info 
    4949        """ 
    50        
     50        self.SetTitle("Invariant Help")  
    5151        splitter = MultiSplitterWindow(self, style=wx.SP_LIVE_UPDATE) 
    5252        rpanel = wx.Panel(splitter, -1) 
  • sansguiframe/src/sans/guiframe/local_perspectives/data_loader/help_panel.py

    r8c347a6 rfdc3cb0  
    1212    """ 
    1313    """ 
    14     def __init__(self, parent, title='Plotting Help', pageToOpen=None): 
     14    def __init__(self, parent, title='DataLoader Help', pageToOpen=None): 
    1515        wx.Frame.__init__(self, parent, title, size=(700, 450)) 
    1616        """ 
    1717             contains help info 
    1818        """ 
     19        self.SetTitle('DataLoader Help')  
    1920        splitter = MultiSplitterWindow(self, style=wx.SP_LIVE_UPDATE) 
    2021        rpanel = wx.Panel(splitter, -1) 
  • sansguiframe/src/sans/guiframe/local_perspectives/plotting/help_panel.py

    r8c347a6 rfdc3cb0  
    1818             contains help info 
    1919        """ 
     20        self.SetTitle('Plotting Help')  
    2021        splitter = MultiSplitterWindow(self, style=wx.SP_LIVE_UPDATE) 
    2122        rpanel = wx.Panel(splitter, -1) 
Note: See TracChangeset for help on using the changeset viewer.