Run update-copyright.py.
[hooke.git] / hooke / ui / gui / panel / notebook.py
1 # Copyright (C) 2010-2012 W. Trevor King <wking@drexel.edu>
2 #
3 # This file is part of Hooke.
4 #
5 # Hooke is free software: you can redistribute it and/or modify it under the
6 # terms of the GNU Lesser General Public License as published by the Free
7 # Software Foundation, either version 3 of the License, or (at your option) any
8 # later version.
9 #
10 # Hooke is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
13 # details.
14 #
15 # You should have received a copy of the GNU Lesser General Public License
16 # along with Hooke.  If not, see <http://www.gnu.org/licenses/>.
17
18 """Notebook panel for Hooke.
19 """
20
21 import wx.aui as aui
22
23 from . import Panel
24 from .welcome import WelcomeWindow
25
26
27 class NotebookPanel (Panel, aui.AuiNotebook):
28     def __init__(self, callbacks=None, **kwargs):
29         super(Notebook, self).__init__(
30             name='notebook', callbacks=callbacks, **kwargs)
31         self.SetArtProvider(aui.AuiDefaultTabArt())
32         #uncomment if we find a nice icon
33         #page_bmp = wx.ArtProvider.GetBitmap(wx.ART_NORMAL_FILE, wx.ART_OTHER, wx.Size(16, 16))
34         self.AddPage(
35             WelcomeWindow(
36                 parent=self,
37                 size=wx.Size(400, 300)),
38             'Welcome')