gramps/src/glade/catalog/grampswidgets.py

15 lines
350 B
Python
Raw Normal View History

import gobject
import gtk
class ValidatableMaskedEntry(gtk.Entry):
__gtype_name__ = 'ValidatableMaskedEntry'
def __init__(self):
gtk.Entry.__init__(self)
class StyledTextEditor(gtk.TextView):
__gtype_name__ = 'StyledTextEditor'
def __init__(self):
gtk.Entry.__init__(self)