Exemplo n.º 1
0
 def _on_insert_text_positve_integer(self, entry, text, length, 
         input_function):
     V = EntryInputFieldValidator();
     V.validate_entry_input_positive_integer(entry, text, length,
             input_function)
Exemplo n.º 2
0
 def on_insert_text_time(self, entry, text, length, input_function):
     V = EntryInputFieldValidator();
     V.validate_entry_input_time(entry, text, length,
             input_function)
Exemplo n.º 3
0
 def on_insert_text_positive_real(self, entry, text, length, 
         input_function):
     V = EntryInputFieldValidator();
     V.validate_entry_input_positive_real_number(entry, text, length,
             input_function)
Exemplo n.º 4
0
 def on_insert_text_date(self, entry, text, length, position):
     V = EntryInputFieldValidator();
     V.validate_entry_input_date(entry, text, length,
             self.on_insert_text_date)