f10ffe2951290b9c55c8479354f37be365e63146
[hooke.git] / hooke / ui / gui / handler / string.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 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:`StringHandler` to handle
19 :class:`~hooke.interaction.StringRequest`\s.
20 """
21
22 import wx
23
24 from . import Handler
25
26
27 class StringHandler (Handler):
28     def __init__(self):
29         super(StringHandler, self).__init__(name='string')
30
31     def run(self, hooke_frame, msg):
32         pass
33
34     def _string_request_prompt(self, msg):
35         if msg.default == None:
36             d = ' '
37         else:
38             d = ' [%s] ' % msg.default
39         return msg.msg + d
40
41     def _string_request_parser(self, msg, response):
42         return response.strip()