ngimagelist.h

来自「ResOrg 图形化管理Vc项目的资源ID的工具的源代码。 ResOrg - 」· C头文件 代码 · 共 60 行

H
60
字号
#if !defined(__NGImageList_H__)
#define __NGImageList_H__


#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

// NGImageList.h : header file
//

#define SMALL_ICON_CX 16
#define SMALL_ICON_CY 16

typedef CMap<UINT, UINT, int, int&>CMapIdToIndex;

/////////////////////////////////////////////////////////////////////////////
// CNGImageList class

#define	CNGImageList_BASE					CImageList

class NGLIB_EXT_CLASS CNGImageList : public	CImageList
{
			DECLARE_DYNAMIC(CNGImageList)
public:
			CNGImageList(void);

	virtual ~CNGImageList(void);


// Attributes
protected:
			CMapIdToIndex			m_mapImages;


// Operations
public:
			int						AddIcon(UINT uID, UINT uFlags = LR_DEFAULTCOLOR);


// Overrides

public:


protected:
	
	
	// Implementation
protected:

};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // !defined(__NGImageList_H__)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?