[][src]Struct winapi::um::commoncontrols::IImageList

#[repr(C)]
pub struct IImageList { pub lpVtbl: *const IImageListVtbl, }

Fields

lpVtbl: *const IImageListVtbl

Methods

impl IImageList[src]

pub unsafe fn Add(
    &self,
    hbmImage: HBITMAP,
    hbmMask: HBITMAP,
    pi: *mut c_int
) -> HRESULT
[src]

pub unsafe fn ReplaceIcon(&self, hicon: HICON, pi: *mut c_int) -> HRESULT[src]

pub unsafe fn SetOverlayImage(&self, iImage: c_int, iOverlay: c_int) -> HRESULT[src]

pub unsafe fn Replace(&self, hbmImage: HBITMAP, hbmMask: HBITMAP) -> HRESULT[src]

pub unsafe fn AddMasked(
    &self,
    hbmImage: HBITMAP,
    crMask: COLORREF,
    pi: *mut c_int
) -> HRESULT
[src]

pub unsafe fn Draw(&self, pimldp: *mut IMAGELISTDRAWPARAMS) -> HRESULT[src]

pub unsafe fn Remove(&self, i: c_int) -> HRESULT[src]

pub unsafe fn GetIcon(
    &self,
    i: c_int,
    flags: UINT,
    picon: *mut HICON
) -> HRESULT
[src]

pub unsafe fn GetImageInfo(
    &self,
    i: c_int,
    pImageInfo: *mut IMAGEINFO
) -> HRESULT
[src]

pub unsafe fn Copy(
    &self,
    iDst: c_int,
    punkSrc: *mut IUnknown,
    iSrc: c_int,
    uFlags: UINT
) -> HRESULT
[src]

pub unsafe fn Merge(
    &self,
    i1: c_int,
    punk2: *mut IUnknown,
    i2: c_int,
    dx: c_int,
    dy: c_int,
    riid: REFIID,
    ppv: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn Clone(&self, riid: REFIID, ppv: *mut *mut c_void) -> HRESULT[src]

pub unsafe fn GetImageRect(&self, i: c_int, prc: *mut RECT) -> HRESULT[src]

pub unsafe fn GetIconSize(&self, cx: *mut c_int, cy: *mut c_int) -> HRESULT[src]

pub unsafe fn SetIconSize(&self, cx: c_int, cy: c_int) -> HRESULT[src]

pub unsafe fn GetImageCount(&self, pi: *mut c_int) -> HRESULT[src]

pub unsafe fn SetImageCount(&self, uNewCount: UINT) -> HRESULT[src]

pub unsafe fn SetBkColor(&self, clrBk: COLORREF, pclr: *mut COLORREF) -> HRESULT[src]

pub unsafe fn GetBkColor(&self, pclr: *mut COLORREF) -> HRESULT[src]

pub unsafe fn BeginDrag(
    &self,
    iTrack: c_int,
    dxHotspot: c_int,
    dyHotspot: c_int
) -> HRESULT
[src]

pub unsafe fn EndDrag(&self) -> HRESULT[src]

pub unsafe fn DragEnter(&self, hwndLock: HWND, x: c_int, y: c_int) -> HRESULT[src]

pub unsafe fn DragLeave(&self, hwndLock: HWND) -> HRESULT[src]

pub unsafe fn DragMove(&self, x: c_int, y: c_int) -> HRESULT[src]

pub unsafe fn SetDragCursorImage(
    &self,
    punk: *mut IUnknown,
    iDrag: c_int,
    dxHotspot: c_int,
    dyHotspot: c_int
) -> HRESULT
[src]

pub unsafe fn DragShowNolock(&self, fShow: BOOL) -> HRESULT[src]

pub unsafe fn GetDragImage(
    &self,
    ppt: *mut POINT,
    pptHotspot: *mut POINT,
    riid: REFIID,
    ppv: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn GetItemFlags(&self, dwFlags: *mut DWORD) -> HRESULT[src]

pub unsafe fn GetOverlayImage(
    &self,
    iOverlay: c_int,
    piIndex: *mut c_int
) -> HRESULT
[src]

Methods from Deref<Target = IUnknown>

pub unsafe fn QueryInterface(
    &self,
    riid: REFIID,
    ppvObject: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn AddRef(&self) -> ULONG[src]

pub unsafe fn Release(&self) -> ULONG[src]

Trait Implementations

impl Interface for IImageList[src]

impl Deref for IImageList[src]

type Target = IUnknown

The resulting type after dereferencing.

Auto Trait Implementations

impl !Send for IImageList

impl !Sync for IImageList

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]