Trait windows::Win32::UI::TextServices::ITfFnLMProcessor_Impl

pub trait ITfFnLMProcessor_Impl: Sized + ITfFunction_Impl {
    // Required methods
    fn QueryRange(
        &self,
        prange: Option<&ITfRange>,
        ppnewrange: *mut Option<ITfRange>,
        pfaccepted: *mut BOOL,
    ) -> Result<()>;
    fn QueryLangID(&self, langid: u16) -> Result<BOOL>;
    fn GetReconversion(
        &self,
        prange: Option<&ITfRange>,
    ) -> Result<ITfCandidateList>;
    fn Reconvert(&self, prange: Option<&ITfRange>) -> Result<()>;
    fn QueryKey(
        &self,
        fup: BOOL,
        vkey: WPARAM,
        lparamkeydata: LPARAM,
    ) -> Result<BOOL>;
    fn InvokeKey(
        &self,
        fup: BOOL,
        vkey: WPARAM,
        lparamkeydata: LPARAM,
    ) -> Result<()>;
    fn InvokeFunc(
        &self,
        pic: Option<&ITfContext>,
        refguidfunc: *const GUID,
    ) -> Result<()>;
}

Required Methods§

fn QueryRange( &self, prange: Option<&ITfRange>, ppnewrange: *mut Option<ITfRange>, pfaccepted: *mut BOOL, ) -> Result<()>

fn QueryLangID(&self, langid: u16) -> Result<BOOL>

fn GetReconversion(&self, prange: Option<&ITfRange>) -> Result<ITfCandidateList>

fn Reconvert(&self, prange: Option<&ITfRange>) -> Result<()>

fn QueryKey( &self, fup: BOOL, vkey: WPARAM, lparamkeydata: LPARAM, ) -> Result<BOOL>

fn InvokeKey( &self, fup: BOOL, vkey: WPARAM, lparamkeydata: LPARAM, ) -> Result<()>

fn InvokeFunc( &self, pic: Option<&ITfContext>, refguidfunc: *const GUID, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§