📄 resourcesymboltypes.h
字号:
/************************************************************************
*
* Resource ID Organiser Core Library
*
* (c) Copyright 2000-2004 by Anna-Jayne Metcalfe (resorg@annasplace.me.uk)
* All rights reserved.
*
************************************************************************
*
* Filename : ResourceSymbolTypes.h
*
* Description : CResourceSymbolTypes class
*
* Compiler : Microsoft Visual C++ 6.0, Service Pack 3 or later
* Microsoft Visual C++ .NET 2003
*
* Target
* Environment : Windows 98/NT/2000/XP
*
* NOTE:
*
* This software is provided "as is" free for personal use. All
* title and copyrights in and to the software, including but not
* limited to any images, text, etc. incorporated into it, are
* owned by Anna-Jayne Metcalfe, except where acknowledged otherwise.
*
* Your may freely to use this code in your own products, PROVIDED
* this notice is not removed or modified.
*
*
* Visit http://www.annasplace.me.uk/resorg for latest updates
*
************************************************************************
*
* MODIFICATION HISTORY:
*
* This is a controlled document. See project configuration
* control tool for latest version and full version history.
*
* $Archive: /Projects/AddIns/ResOrg/ResOrgCore/ResourceSymbolTypes.h $
* $Revision: 7 $
* $Date: 21/08/04 18:54 $
* $Author: Anna $
*
* $History: ResourceSymbolTypes.h $
*
* ***************** Version 7 *****************
* User: Anna Date: 21/08/04 Time: 18:54
* Updated in $/Projects/AddIns/ResOrg/ResOrgCore
* Added support for SYM_ACCELERATOR (IDK_xxx) and SYM_TOOLBAR (IDT_xxx)
* symbols
*
* ***************** Version 6 *****************
* User: Anna Date: 24/06/03 Time: 14:28
* Updated in $/Projects/AddIns/ResOrg/ResOrgCore
* Added #defines for min/max symbol values
*
* ***************** Version 5 *****************
* User: Anna Date: 15/04/03 Time: 20:33
* Updated in $/Projects/AddIns/ResOrg/ResOrgCore
* 1. Removed unnecessary file guards (#pragma once works well enough)
* 2. Updated file banners
*
* $Nokeywords: $
*
************************************************************************/
#pragma once
/////////////////////////////////////////////////////////////////////////////
// CResourceSymbolTypes class
enum
{
SYM_RESOURCE, // IDx_xxx
SYM_BITMAP, // IDB_xxx
SYM_CONTROL, // IDC_xxx
SYM_DIALOG, // IDD_xxx
SYM_MENU, // IDM_xxx
SYM_ICON, // IDI_xxx
SYM_TOOLBAR, // IDT_xxx
SYM_ACCELERATOR, // IDK_xxx
SYM_PROMPT, // IDP_xxx
SYM_STRING, // IDS_xxx,
SYM_COMMAND // ID_xxx
};
#define SYM_RESOURCE_VALUE_MIN 1
#define SYM_RESOURCE_VALUE_DEFAULT 100
#define SYM_RESOURCE_VALUE_MAX 28671
#define SYM_CONTROL_VALUE_MIN 8
#define SYM_CONTROL_VALUE_DEFAULT 1000
#define SYM_CONTROL_VALUE_MAX 28671
#define SYM_COMMAND_VALUE_MIN 32768
#define SYM_COMMAND_VALUE_DEFAULT 32771
#define SYM_COMMAND_VALUE_MAX 57343
#define CResourceSymbolTypes_BASE CObject
class RESORGCORE_EXT_CLASS CResourceSymbolTypes : public CObject
{
public:
CResourceSymbolTypes(void);
virtual ~CResourceSymbolTypes(void);
// Attributes
protected:
// Operations
public:
int GetType(const CString& sSymbol) const;
CString GetTypeName(int eSymbolType) const;
CString GetTypePrefix(int eSymbolType) const;
UINT GetIconID(int eSymbolType) const;
// Virtual Overrides
public:
// Implementation
protected:
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -