use crate::input::TextField;
#[allow(unused_variables)]
pub trait TextFieldDelegate {
const NAME: &'static str;
fn subclass_name(&self) -> &'static str {
Self::NAME
}
fn did_load(&mut self, view: TextField) {}
fn text_did_end_editing(&self, value: &str) {}
fn text_should_begin_editing(&self, value: &str) -> bool {
true
}
fn text_did_begin_editing(&self, value: &str) {}
fn text_did_change(&self, value: &str) {}
fn text_should_end_editing(&self, value: &str) -> bool {
true
}
}