pub trait INameSpaceTreeControlCustomDraw_Impl: Sized {
    // Required methods
    fn PrePaint(&self, hdc: HDC, prc: *const RECT) -> Result<LRESULT>;
    fn PostPaint(&self, hdc: HDC, prc: *const RECT) -> Result<()>;
    fn ItemPrePaint(
        &self,
        hdc: HDC,
        prc: *const RECT,
        pnstccditem: *const NSTCCUSTOMDRAW,
        pclrtext: *mut COLORREF,
        pclrtextbk: *mut COLORREF,
        plres: *mut LRESULT
    ) -> Result<()>;
    fn ItemPostPaint(
        &self,
        hdc: HDC,
        prc: *const RECT,
        pnstccditem: *const NSTCCUSTOMDRAW
    ) -> Result<()>;
}

Required Methods§

fn PrePaint(&self, hdc: HDC, prc: *const RECT) -> Result<LRESULT>

fn PostPaint(&self, hdc: HDC, prc: *const RECT) -> Result<()>

fn ItemPrePaint( &self, hdc: HDC, prc: *const RECT, pnstccditem: *const NSTCCUSTOMDRAW, pclrtext: *mut COLORREF, pclrtextbk: *mut COLORREF, plres: *mut LRESULT ) -> Result<()>

fn ItemPostPaint( &self, hdc: HDC, prc: *const RECT, pnstccditem: *const NSTCCUSTOMDRAW ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§