Ran update-copyright.py
[hooke.git] / hooke / ui / gui / panel / notebook.py
1 # Copyright (C) 2010-2012 W. Trevor King <wking@tremily.us>
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         # C++ implementation
22 import wx.lib.agw.aui as aui  # Python implementation
23
24 from . import Panel
25 from .welcome import WelcomeWindow
26
27
28 class NotebookPanel (Panel, aui.AuiNotebook):
29     def __init__(self, callbacks=None, **kwargs):
30         super(Notebook, self).__init__(
31             name='notebook', callbacks=callbacks, **kwargs)
32         self.SetArtProvider(aui.AuiDefaultTabArt())
33         #uncomment if we find a nice icon
34         #page_bmp = wx.ArtProvider.GetBitmap(wx.ART_NORMAL_FILE, wx.ART_OTHER, wx.Size(16, 16))
35         self.AddPage(
36             WelcomeWindow(
37                 parent=self,
38                 size=wx.Size(400, 300)),
39             'Welcome')