67 lines
1.7 KiB
C++
67 lines
1.7 KiB
C++
//==============================================================;
|
|
|
|
//
|
|
|
|
// This source code is only intended as a supplement to
|
|
|
|
// existing Microsoft documentation.
|
|
|
|
//
|
|
|
|
// Use of this code is NOT supported.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
|
|
|
|
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
|
|
|
|
// PURPOSE.
|
|
|
|
//
|
|
|
|
// Copyright (c) 1999-2001 Microsoft Corporation, All Rights Reserved
|
|
//
|
|
// Microsoft Premier Support for Developers
|
|
//
|
|
//==============================================================;
|
|
|
|
#include "DeleBase.h"
|
|
|
|
const GUID CDelegationBase::thisGuid = { 0x2974380c, 0x4c4b, 0x11d2, { 0x89, 0xd8, 0x0, 0x0, 0x21, 0x47, 0x31, 0x28 } };
|
|
|
|
HBITMAP CDelegationBase::m_pBMapSm = NULL;
|
|
HBITMAP CDelegationBase::m_pBMapLg = NULL;
|
|
|
|
|
|
//==============================================================
|
|
//
|
|
// CDelegationBase implementation
|
|
//
|
|
//
|
|
CDelegationBase::CDelegationBase()
|
|
: bExpanded(FALSE)
|
|
{
|
|
if (NULL == m_pBMapSm || NULL == m_pBMapLg)
|
|
LoadBitmaps();
|
|
}
|
|
|
|
CDelegationBase::~CDelegationBase()
|
|
{
|
|
}
|
|
|
|
// CDelegationBase::AddImages sets up the collection of images to be displayed
|
|
// by the IComponent in the result pane as a result of its MMCN_SHOW handler
|
|
HRESULT CDelegationBase::OnAddImages(IImageList *pImageList, HSCOPEITEM hsi)
|
|
{
|
|
return pImageList->ImageListSetStrip((LONG_PTR *)m_pBMapSm, // pointer to a handle
|
|
(LONG_PTR *)m_pBMapLg, // pointer to a handle
|
|
0, // index of the first image in the strip
|
|
RGB(0, 128, 128) // color of the icon mask
|
|
);
|
|
}
|