source: sasview/src/sas/sasgui/perspectives/fitting/hint_fitpage.py @ 5005ae0

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalcmagnetic_scattrelease-4.2.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 5005ae0 was 959eb01, checked in by ajj, 7 years ago

normalising line endings

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