| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- // stdafx.h : 标准系统包含文件的包含文件,
- // 或是经常使用但不常更改的
- // 项目特定的包含文件
- #pragma once
- #ifndef VC_EXTRALEAN
- #define VC_EXTRALEAN // 从 Windows 标头中排除不常使用的资料
- #endif
- // 如果您必须使用下列所指定的平台之前的平台,则修改下面的定义。
- // 有关不同平台的相应值的最新信息,请参考 MSDN。
- #ifndef WINVER // 允许使用 Windows 95 和 Windows NT 4 或更高版本的特定功能。
- #define WINVER 0x0501 //为 Windows98 和 Windows 2000 及更新版本改变为适当的值。
- #endif
- #ifndef _WIN32_WINNT // 允许使用 Windows NT 4 或更高版本的特定功能。
- #define _WIN32_WINNT 0x0501 //为 Windows98 和 Windows 2000 及更新版本改变为适当的值。
- #endif
- #ifndef _WIN32_WINDOWS // 允许使用 Windows 98 或更高版本的特定功能。
- #define _WIN32_WINDOWS 0x0501 //为 Windows Me 及更新版本改变为适当的值。
- #endif
- #ifndef _WIN32_IE // 允许使用 IE 4.0 或更高版本的特定功能。
- #define _WIN32_IE 0x0501 //为 IE 5.0 及更新版本改变为适当的值。
- #endif
- #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 构造函数将是显式的
- // 关闭 MFC 对某些常见但经常被安全忽略的警告消息的隐藏
- #define _AFX_ALL_WARNINGS
- #include <afxole.h>
- #include <afxwin.h> // MFC 核心和标准组件
- #include <afxext.h> // MFC 扩展
- #include <afxdisp.h> // MFC 自动化类
- //#include <resource.h>
- #include <afxdtctl.h> // Internet Explorer 4 公共控件的 MFC 支持
- #ifndef _AFX_NO_AFXCMN_SUPPORT
- #include <afxcmn.h> // Windows 公共控件的 MFC 支持
- #endif // _AFX_NO_AFXCMN_SUPPORT
- #include <afxpriv.h>
- #include <afxtempl.h>
- #include <afxcview.h>
- //#include <afximpl.h>
- #include "resource.h"
- #include "SPMacros.h"
- #include "SPPropertyGridIncludes.h"
- #include"../SkinST/SkinST.h"
- #define OBJECT_TYPE_SKINS 0
- #define OBJECT_TYPE_IMAGES 1
- #define OBJECT_TYPE_IMAGE 100
- #define OBJECT_TPPE_SKINOBJECTS 2
- #define OBJECT_TYPE_SKINOBJECT_WINDOW 3
- #define OBJECT_TYPE_SKINOBJECT_WINBUTTON 4
- #define OBJECT_TYPE_SKINOBJECT_BUTTON 5
- #define OBJECT_TYPE_SKINOBJECT_STATIC 6
- #define OBJECT_TYPE_SKINOBJECT_RADIO 7
- #define OBJECT_TYPE_SKINOBJECT_CHECK 8
- #define OBJECT_TYPE_SKINOBJECT_SCROLLBAR 9
- #define OBJECT_TYPE_SKINOBJECT_GROUP 10
- #define OBJECT_TYPE_SKINOBJECT_EDIT 11
- #define OBJECT_TYPE_SKINOBJECT_COMBOX 12
- #define OBJECT_TYPE_SKINOBJECT_LISTBOX 13
- #define OBJECT_TYPE_SKINOBJECT_POPUPMENU 14
- #define OBJECT_TYPE_SKINOBJECT_SPIN 15
- #define OBJECT_TYPE_SKINOBJECT_SLIDER 16
- #define OBJECT_TYPE_SKINOBJECT_PROGRESS 17
- #define OBJECT_TYPE_SKINOBJECT_HEADER 18
- #define OBJECT_TYPE_SKINOBJECT_TAB 19
- #define OBJECT_TYPE_SKINOBJECT_STATUSBAR 20
- #define OBJECT_TYPE_SKINOBJECT_TOOLBAR 21
- #define OBJECT_TYPE_SKINOBJECT_MAX 30
|