test/data/vclamp_jpk/README: Document sample versions
[hooke.git] / hooke / ui / gui / handler / float.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 """Define :class:`FloatHandler` to handle
19 :class:`~hooke.interaction.FloatRequest`\s.
20 """
21
22 from . import Handler
23
24
25 class FloatHandler (object):
26     def __init__(self):
27         super(FloatHandler, self).__init__(name='float')
28
29     def _float_request_prompt(self, msg):
30         return self._string_request_prompt(msg)
31
32     def _float_request_parser(self, msg, resposne):
33         return float(response)