ocarina/ocarina/entry.py

15 lines
286 B
Python

# Bryan Schumaker (10/4/2010)
import ocarina
gtk = ocarina.gtk
class FilterEntry(gtk.Entry):
def __init__(self):
gtk.Entry.__init__(self)
self.connect("changed", self.changed)
self.show()
def changed(self, entry):
# We want to start filtering here
print entry.get_text()