1 | """ |
---|
2 | Welcome page |
---|
3 | |
---|
4 | """ |
---|
5 | import wx |
---|
6 | import wx.aui |
---|
7 | import wx.lib.hyperlink |
---|
8 | import os.path |
---|
9 | import os, sys |
---|
10 | import local_config as config |
---|
11 | from wx.lib.scrolledpanel import ScrolledPanel |
---|
12 | from sans.guiframe.panel_base import PanelBase |
---|
13 | #Font size width |
---|
14 | if sys.platform.count("win32")>0: |
---|
15 | FONT_VARIANT = 0 |
---|
16 | else: |
---|
17 | FONT_VARIANT = 1 |
---|
18 | |
---|
19 | class WelcomePanel(wx.aui.AuiNotebook, PanelBase): |
---|
20 | """ |
---|
21 | Panel created like about box as a welcome page |
---|
22 | Shows product name, current version, authors, and link to the product page. |
---|
23 | """ |
---|
24 | ## Internal nickname for the window, used by the AUI manager |
---|
25 | window_name = "default" |
---|
26 | ## Name to appear on the window title bar |
---|
27 | window_caption = "Welcome panel" |
---|
28 | ## Flag to tell the AUI manager to put this panel in the center pane |
---|
29 | CENTER_PANE = True |
---|
30 | |
---|
31 | |
---|
32 | def __init__(self, parent, *args, **kwds): |
---|
33 | kwds["style"] = wx.aui.AUI_NB_DEFAULT_STYLE |
---|
34 | |
---|
35 | wx.aui.AuiNotebook.__init__(self, parent, *args, **kwds) |
---|
36 | PanelBase.__init__(self) |
---|
37 | #For sasview the parent is guiframe |
---|
38 | self.parent = parent.parent |
---|
39 | self.frame = None |
---|
40 | |
---|
41 | welcome_page = WelcomePage(self) |
---|
42 | self.AddPage(welcome_page, "Welcome") |
---|
43 | |
---|
44 | self.Bind(wx.aui.EVT_AUINOTEBOOK_PAGE_CLOSE, self.on_close_page) |
---|
45 | self.Center() |
---|
46 | |
---|
47 | def set_manager(self, manager): |
---|
48 | """ |
---|
49 | the manager of the panel in this case the application itself |
---|
50 | """ |
---|
51 | self.manager = manager |
---|
52 | |
---|
53 | def on_close_page(self, event): |
---|
54 | """ |
---|
55 | |
---|
56 | """ |
---|
57 | if self.parent is not None: |
---|
58 | self.parent.on_close_welcome_panel() |
---|
59 | event.Veto() |
---|
60 | |
---|
61 | def set_data(self, list=None): |
---|
62 | """ |
---|
63 | """ |
---|
64 | pass |
---|
65 | |
---|
66 | def set_frame(self, frame): |
---|
67 | """ |
---|
68 | """ |
---|
69 | self.frame = frame |
---|
70 | if frame != None: |
---|
71 | self.frame.Bind(wx.EVT_CLOSE, self.on_close_page) |
---|
72 | |
---|
73 | def get_frame(self): |
---|
74 | """ |
---|
75 | """ |
---|
76 | return self.frame |
---|
77 | |
---|
78 | |
---|
79 | class WelcomePage(ScrolledPanel): |
---|
80 | """ |
---|
81 | Panel created like about box as a welcome page |
---|
82 | Shows product name, current version, authors, and link to the product page. |
---|
83 | """ |
---|
84 | ## Internal nickname for the window, used by the AUI manager |
---|
85 | window_name = "default" |
---|
86 | ## Name to appear on the window title bar |
---|
87 | window_caption = "Welcome panel" |
---|
88 | ## Flag to tell the AUI manager to put this panel in the center pane |
---|
89 | CENTER_PANE = True |
---|
90 | |
---|
91 | |
---|
92 | def __init__(self, parent, *args, **kwds): |
---|
93 | import local_config |
---|
94 | kwds["style"] = wx.DEFAULT_DIALOG_STYLE |
---|
95 | |
---|
96 | ScrolledPanel.__init__(self, parent, **kwds) |
---|
97 | self.SetupScrolling() |
---|
98 | image = os.path.join(local_config._welcome_image) |
---|
99 | self.SetWindowVariant(variant = FONT_VARIANT) |
---|
100 | self.bitmap_logo = wx.StaticBitmap(self, -1, wx.Bitmap(image)) |
---|
101 | |
---|
102 | self.label_copyright = wx.StaticText(self, -1, config._copyright) |
---|
103 | self.static_line_1 = wx.StaticLine(self, -1) |
---|
104 | self.label_acknowledgement = wx.StaticText(self, -1, config._acknowledgement) |
---|
105 | |
---|
106 | self.hyperlink_license = wx.StaticText(self, -1, |
---|
107 | "Comments? Bugs? Requests?") |
---|
108 | send_ticket = "Send us a ticket at: " |
---|
109 | send_ticket += "help@sasview.org" |
---|
110 | self.hyperlink_paper = wx.lib.hyperlink.HyperLinkCtrl(self, -1, |
---|
111 | send_ticket, URL=config._license) |
---|
112 | |
---|
113 | self.label_title = wx.StaticText(self, -1, |
---|
114 | config.__appname__+ " "+str(config.__version__)) |
---|
115 | try: |
---|
116 | build_num = str(config.__build__) |
---|
117 | except: |
---|
118 | build_num = str(config.__version__) |
---|
119 | self.label_build = wx.StaticText(self, -1, "Build: " + build_num) |
---|
120 | |
---|
121 | sizer_main = wx.BoxSizer(wx.VERTICAL) |
---|
122 | sizer_header = wx.BoxSizer(wx.HORIZONTAL) |
---|
123 | sizer_build = wx.BoxSizer(wx.VERTICAL) |
---|
124 | |
---|
125 | sizer_header.Add(self.bitmap_logo, 0, wx.EXPAND|wx.LEFT, 5) |
---|
126 | |
---|
127 | sizer_build.Add(self.label_acknowledgement, 0, |
---|
128 | wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15) |
---|
129 | sizer_build.Add((5,5)) |
---|
130 | sizer_build.Add(self.label_title, 0, |
---|
131 | wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15) |
---|
132 | sizer_build.Add(self.label_build, 0, |
---|
133 | wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15) |
---|
134 | sizer_build.Add(self.label_copyright, 0, |
---|
135 | wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15) |
---|
136 | sizer_build.Add((5, 5)) |
---|
137 | sizer_build.Add(self.hyperlink_license, 0, |
---|
138 | wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15) |
---|
139 | sizer_build.Add(self.hyperlink_paper, 0, |
---|
140 | wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15) |
---|
141 | |
---|
142 | sizer_main.Add(sizer_header, 0, wx.TOP|wx.EXPAND, 3) |
---|
143 | sizer_main.Add(self.static_line_1, 0, wx.EXPAND, 0) |
---|
144 | sizer_main.Add(sizer_build,0 , wx.BOTTOM|wx.EXPAND, 3) |
---|
145 | |
---|
146 | self.SetAutoLayout(True) |
---|
147 | self.SetSizer(sizer_main) |
---|
148 | self.Fit() |
---|
149 | |
---|
150 | def set_data(self, list=None): |
---|
151 | """ |
---|
152 | """ |
---|
153 | pass |
---|
154 | |
---|
155 | class ViewApp(wx.App): |
---|
156 | """ |
---|
157 | Test application |
---|
158 | """ |
---|
159 | def OnInit(self): |
---|
160 | self.frame = WelcomeFrame(None, -1, "Test App") |
---|
161 | self.frame.Show(True) |
---|
162 | return True |
---|
163 | |
---|
164 | class WelcomeFrame(wx.Frame): |
---|
165 | """ |
---|
166 | Test frame |
---|
167 | """ |
---|
168 | def __init__(self, parent, id, title): |
---|
169 | wx.Frame.__init__(self, parent, id, title, size=(570, 400)) |
---|
170 | WelcomePanel(self) |
---|
171 | self.Centre() |
---|
172 | self.Show(True) |
---|
173 | |
---|
174 | if __name__ == "__main__": |
---|
175 | app = ViewApp(0) |
---|
176 | app.MainLoop() |
---|