pub trait IShellView_Impl: Sized + IOleWindow_Impl {
    // Required methods
    fn TranslateAccelerator(&self, pmsg: *const MSG) -> HRESULT;
    fn EnableModeless(&self, fenable: BOOL) -> Result<()>;
    fn UIActivate(&self, ustate: u32) -> Result<()>;
    fn Refresh(&self) -> Result<()>;
    fn CreateViewWindow(
        &self,
        psvprevious: Option<&IShellView>,
        pfs: *const FOLDERSETTINGS,
        psb: Option<&IShellBrowser>,
        prcview: *const RECT
    ) -> Result<HWND>;
    fn DestroyViewWindow(&self) -> Result<()>;
    fn GetCurrentInfo(&self) -> Result<FOLDERSETTINGS>;
    fn AddPropertySheetPages(
        &self,
        dwreserved: u32,
        pfn: LPFNSVADDPROPSHEETPAGE,
        lparam: LPARAM
    ) -> Result<()>;
    fn SaveViewState(&self) -> Result<()>;
    fn SelectItem(&self, pidlitem: *const ITEMIDLIST, uflags: u32) -> Result<()>;
    fn GetItemObject(
        &self,
        uitem: &_SVGIO,
        riid: *const GUID,
        ppv: *mut *mut c_void
    ) -> Result<()>;
}

Required Methods§

fn TranslateAccelerator(&self, pmsg: *const MSG) -> HRESULT

fn EnableModeless(&self, fenable: BOOL) -> Result<()>

fn UIActivate(&self, ustate: u32) -> Result<()>

fn Refresh(&self) -> Result<()>

fn CreateViewWindow( &self, psvprevious: Option<&IShellView>, pfs: *const FOLDERSETTINGS, psb: Option<&IShellBrowser>, prcview: *const RECT ) -> Result<HWND>

fn DestroyViewWindow(&self) -> Result<()>

fn GetCurrentInfo(&self) -> Result<FOLDERSETTINGS>

fn AddPropertySheetPages( &self, dwreserved: u32, pfn: LPFNSVADDPROPSHEETPAGE, lparam: LPARAM ) -> Result<()>

fn SaveViewState(&self) -> Result<()>

fn SelectItem(&self, pidlitem: *const ITEMIDLIST, uflags: u32) -> Result<()>

fn GetItemObject( &self, uitem: &_SVGIO, riid: *const GUID, ppv: *mut *mut c_void ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§