test/data/vclamp_jpk/README: Document sample versions
[hooke.git] / hooke / ui / gui / handler / boolean.py
index 56404d761aa8e1ba39d44dbfcb79c096bb271b81..c0ec2941f9596dd2683ff6d478061593730e5ac0 100644 (file)
@@ -1,12 +1,33 @@
-# Copyright
+# Copyright (C) 2010-2012 W. Trevor King <wking@tremily.us>
+#
+# This file is part of Hooke.
+#
+# Hooke is free software: you can redistribute it and/or modify it under the
+# terms of the GNU Lesser General Public License as published by the Free
+# Software Foundation, either version 3 of the License, or (at your option) any
+# later version.
+#
+# Hooke is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+# details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with Hooke.  If not, see <http://www.gnu.org/licenses/>.
 
 import wx
 
+"""Define :class:`BooleanHandler` to handle
+:class:`~hooke.interaction.BooleanRequest`\s.
+"""
+
 from . import Handler
 
 
 class BooleanHandler (Handler):
-    
+    def __init__(self):
+        super(BooleanHandler, self).__init__(name='boolean')
+
     def run(self, hooke_frame, msg):
         if msg.default == True:
             default = wx.YES_DEFAULT
@@ -20,4 +41,3 @@ class BooleanHandler (Handler):
         dialog.ShowModal()
         dialog.Destroy()
         return value
-