windows-nt/Source/XPSP1/NT/admin/services/sched/folderui/jobicons.hxx

54 lines
1 KiB
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
//____________________________________________________________________________
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1995 - 1996.
//
// File: JobIcons.hxx
//
// Contents:
//
// Classes:
//
// Functions:
//
// History: 4/5/1996 RaviR Created
//
//____________________________________________________________________________
class CJobIcon
{
public:
CJobIcon(void);
~CJobIcon(void) {
if (m_himlSmall) ImageList_Destroy(m_himlSmall);
if (m_himlLarge) ImageList_Destroy(m_himlLarge);
}
HICON OverlayStateIcon(HICON hicon, BOOL fEnabled, BOOL fLarge = TRUE);
void GetIcons(LPCTSTR pszApp, BOOL fEnabled,
HICON *phiconLarge, HICON *phiconSmall);
void GetTemplateIcons(HICON *phiconLarge, HICON *phiconSmall);
private:
void
_OverlayIcons(
HICON * phiconLarge,
HICON * phiconSmall,
BOOL fEnabled);
HIMAGELIST m_himlSmall;
HIMAGELIST m_himlLarge;
};
HICON
GetDefaultAppIcon(
BOOL fLarge);