pub trait ITfLangBarItemBalloon_Impl: Sized + ITfLangBarItem_Impl {
    // Required methods
    fn OnClick(
        &self,
        click: TfLBIClick,
        pt: &POINT,
        prcarea: *const RECT,
    ) -> Result<()>;
    fn GetPreferredSize(&self, pszdefault: *const SIZE) -> Result<SIZE>;
    fn GetBalloonInfo(&self) -> Result<TF_LBBALLOONINFO>;
}

Required Methods§

fn OnClick( &self, click: TfLBIClick, pt: &POINT, prcarea: *const RECT, ) -> Result<()>

fn GetPreferredSize(&self, pszdefault: *const SIZE) -> Result<SIZE>

fn GetBalloonInfo(&self) -> Result<TF_LBBALLOONINFO>

Object Safety§

This trait is not object safe.

Implementors§