WinClasses.h
上传用户:weijiexitu
上传日期:2007-01-18
资源大小:54k
文件大小:1k
源码类别:

菜单

开发平台:

WINDOWS

  1. // WinClasses.h: interface for the CWinClasses class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_WINCLASSES_H__4A958ACC_A399_4B69_A988_FA70F16C3EAC__INCLUDED_)
  5. #define AFX_WINCLASSES_H__4A958ACC_A399_4B69_A988_FA70F16C3EAC__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include <afxtempl.h>
  10. // global helper function for everyone to use
  11. void TRACEWND(LPCTSTR szFunctionName, HWND hWnd);
  12. class CWinClasses  
  13. {
  14. public:
  15. static CString GetClass(HWND hWnd);
  16. static CString GetClassEx(HWND hWnd); // will also determine the base type of mfc (Afx) classes
  17. static BOOL IsControlClass(HWND hWnd);
  18. static BOOL IsControlClass(LPCTSTR szClass);
  19. static BOOL IsClass(HWND hWnd, LPCTSTR szClass);
  20. protected:
  21. static CMap<LPCTSTR, LPCTSTR, int, int&> s_mapCtrlClasses;
  22. };
  23. #endif // !defined(AFX_WINCLASSES_H__4A958ACC_A399_4B69_A988_FA70F16C3EAC__INCLUDED_)