and I have a vision that there should be multiple layouts for the keypad. and if that is doable, qwerty keys will be there too as an option.
import keypad ... # uncomment which ever layout you would like to use window.add(keypad.standard) #window.add(keypad.qwerty) #window.add(keypad.bb) # mimicks blackberry pearl ...
import gtk import hildon ... def standard(): table = gtk.Table(9, 3, True) # code defining the layout would go here return table def qwerty(): pass def bbpearl(): pass