db422f23f7632b252e66082f56515e66c5a2227e
[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
6 # under the terms of the GNU Lesser General Public License as
7 # published by the Free Software Foundation, either version 3 of the
8 # License, or (at your option) any later version.
9 #
10 # Hooke is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
13 # Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with Hooke.  If not, see
17 # <http://www.gnu.org/licenses/>.
18
19 """Notebook panel for Hooke.
20 """
21
22 import wx.aui as aui
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')