Log errors when instantiation fails in hooke.util.pluggable.construct_*().
[hooke.git] / hooke / ui / gui / handler / string.py
1 # Copyright (C) 2010 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 """Define :class:`StringHandler` to handle
20 :class:`~hooke.interaction.StringRequest`\s.
21 """
22
23 import wx
24
25 from . import Handler
26
27
28
29
30 class StringHandler (Handler):
31     def __init__(self):
32         super(StringHandler, self).__init__(name='string')
33
34     def run(self, hooke_frame, msg):
35         pass
36
37     def _string_request_prompt(self, msg):
38         if msg.default == None:
39             d = ' '
40         else:
41             d = ' [%s] ' % msg.default
42         return msg.msg + d
43
44     def _string_request_parser(self, msg, response):
45         return response.strip()
46