source: sasview/fittingview/src/sans/perspectives/fitting/hint_fitpage.py @ 49c69de

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 49c69de was 49c69de, checked in by Gervaise Alina <gervyh@…>, 13 years ago

move perspective from sansview to fittingview

  • Property mode set to 100644
File size: 2.0 KB
Line 
1import wx
2from sans.guiframe.panel_base import PanelBase
3
4class HintFitPage(wx.ScrolledWindow, PanelBase):
5    """
6        This class provide general structure of  fitpanel page
7    """
8     ## Internal name for the AUI manager
9    window_name = "Hint Page"
10    ## Title to appear on top of the window
11    window_caption = "Hint page "
12   
13    def __init__(self, parent):
14        wx.ScrolledWindow.__init__(self, parent,
15                 style= wx.FULL_REPAINT_ON_RESIZE)
16        PanelBase.__init__(self, parent)
17        msg = "right click on the data when it is highlighted "
18        msg += "the select option to fit for futher options"
19        self.do_layout()
20       
21    def do_layout(self):
22        """
23            Draw the page
24        """
25        name="Hint"
26        box_description= wx.StaticBox(self, -1,name)
27        boxsizer = wx.StaticBoxSizer(box_description, wx.VERTICAL)
28        msg  = "    How to link data to the control panel: \n \n"
29        msg += "    First load data file from 'File' menu. \n"
30        msg += "    Then Highlight and right click on the data plot. \n"
31        msg += "    Finally, select 'Select data for fitting' in the pop-up menu. \n"
32        self.hint_txt = wx.StaticText(self, -1, msg, style=wx.ALIGN_LEFT)
33        boxsizer.Add(self.hint_txt, wx.ALL|wx.EXPAND, 20)
34        self.vbox = wx.BoxSizer(wx.VERTICAL)
35        self.vbox.Add(boxsizer )
36        self.vbox.Layout()
37        self.vbox.Fit(self) 
38        self.SetSizer(self.vbox)
39        self.SetScrollbars(20,20,25,65)
40        self.Layout()
41       
42    def createMemento(self):
43        return 
44       
45class HelpWindow(wx.Frame):
46    def __init__(self, parent, id, title):
47        wx.Frame.__init__(self, parent, id, title, size=(570, 400))
48       
49        self.page = HintFitPage(self) 
50        self.Centre()
51        self.Show(True)
52 
53if __name__=="__main__":
54    app = wx.App()
55    HelpWindow(None, -1, 'HelpWindow')
56    app.MainLoop()
57               
Note: See TracBrowser for help on using the repository browser.