b9b180b6c25d4ba59849d1f167092cb7b4ce534d
[hooke.git] / hooke / ui / gui / handler / boolean.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 import wx
20
21 """Define :class:`BooleanHandler` to handle
22 :class:`~hooke.interaction.BooleanRequest`\s.
23 """
24
25 from . import Handler
26
27
28 class BooleanHandler (Handler):
29     def __init__(self):
30         super(BooleanHandler, self).__init__(name='boolean')
31
32     def run(self, hooke_frame, msg):
33         if msg.default == True:
34             default = wx.YES_DEFAULT
35         else:
36             default = wx.NO_DEFAULT
37         dialog = wx.MessageDialog(
38             parent=self,
39             message=msg.msg,
40             caption='Boolean Handler',
41             style=swx.YES_NO|default)
42         dialog.ShowModal()
43         dialog.Destroy()
44         return value