a9f852733bf00cbe6f8aff7808301becb5a21fc8
[hooke.git] / hooke / ui / gui / panel / welcome.py
1 # Copyright
2
3 """Welcome panel for Hooke.
4 """
5
6 import wx
7
8
9 class Welcome (wx.html.HtmlWindow):
10     def __init__(self, *args, **kwargs):
11         super(Welcome, self).__init__(self, *args, **kwargs)
12         lines = [
13             '<h1>Welcome to Hooke</h1>',
14             '<h3>Features</h3>',
15             '<ul>',
16             '<li>View, annotate, measure force files</li>',
17             '<li>Worm-like chain fit of force peaks</li>',
18             '<li>Automatic convolution-based filtering of empty files</li>',
19             '<li>Automatic fit and measurement of multiple force peaks</li>',
20             '<li>Handles force-clamp force experiments (experimental)</li>',
21             '<li>It is extensible through plugins and drivers</li>',
22             '</ul>',
23             '<p>See the <a href="%s">DocumentationIndex</a>'
24             % 'http://code.google.com/p/hooke/wiki/DocumentationIndex',
25             'for more information</p>',
26             ]
27         ctrl.SetPage('\n'.join(lines))