Ran update_copyright.py.
[hooke.git] / hooke / ui / gui / panel / note.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 """Note panel for Hooke.
20 """
21
22 import wx
23
24 from ....util.callback import callback, in_callback
25 from . import Panel
26
27
28 class NotePanel (Panel, wx.Panel):
29     def __init__(self, callbacks=None, **kwargs):
30         super(NotePanel, self).__init__(
31             name='note', callbacks=callbacks, **kwargs)
32
33         self._c = {
34             'editor': wx.TextCtrl(
35                 parent=self,
36                 style=wx.TE_MULTILINE),
37             'update': wx.Button(
38                 parent=self,
39                 label='Update note'),
40             }
41         sizer = wx.BoxSizer(wx.VERTICAL)
42         sizer.Add(self._c['editor'], 1, wx.EXPAND)
43         sizer.Add(self._c['update'], 0, wx.EXPAND)
44         self.SetSizer(sizer)
45         self.SetAutoLayout(True)
46
47         self.Bind(wx.EVT_BUTTON, self._on_update)
48
49     def set_text(self, text):
50         self._c['editor'].SetValue(text)
51
52     def _on_update(self, event):
53         text = self._c['editor'].GetValue()
54         in_callback(self, text)