Trait ppapi::ppb::TextInputControllerExperimental [-]  [+] [src]

pub trait TextInputController {
    fn cancel_composition_text(&self);
    fn set_text_input_type(&self, input_type: PP_TextInput_Type);
    fn update_caret_position(&self, caret: PP_Rect);
    fn update_surrounding_text<T: ToVar>(&self, text: T, caret: u32, anchor: u32);
}

Required Methods

fn cancel_composition_text(&self)

fn set_text_input_type(&self, input_type: PP_TextInput_Type)

fn update_caret_position(&self, caret: PP_Rect)

fn update_surrounding_text<T: ToVar>(&self, text: T, caret: u32, anchor: u32)

Implementors