changeset 18 | e6c3a5ee91aa |
parent 10 | ec1d47e6fe09 |
child 30 | 05500124d7fb |
17:5be7cc43402e | 18:e6c3a5ee91aa |
---|---|
1 # -*- coding: utf-8 -*- |
1 # -*- coding: utf-8 -*- |
2 |
2 |
3 import locale |
3 import locale |
4 |
4 |
5 from .widget import Widget |
5 from tuikit.widget import Widget |
6 |
6 |
7 |
7 |
8 class EditField(Widget): |
8 class EditField(Widget): |
9 def __init__(self, width=10, value=''): |
9 def __init__(self, width=10, value=''): |
10 Widget.__init__(self, width, 1) |
10 Widget.__init__(self, width, 1) |