stdafx.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // stdafx.h : include file for standard system include files,
  2. //  or project specific include files that are used frequently, but
  3. //      are changed infrequently
  4. //
  5. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  6. // (c)1998-2008 Codejock Software, All Rights Reserved.
  7. //
  8. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  9. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  10. // CONSENT OF CODEJOCK SOFTWARE.
  11. //
  12. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  13. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  14. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  15. // SINGLE COMPUTER.
  16. //
  17. // CONTACT INFORMATION:
  18. // support@codejock.com
  19. // http://www.codejock.com
  20. //
  21. /////////////////////////////////////////////////////////////////////////////
  22. #ifndef _UNICODE
  23. #define VC_EXTRALEAN        // use stripped down Win32 headers
  24. #endif
  25. #if _MSC_VER > 1200
  26. // Modify the following defines if you have to target a platform prior to the ones specified below.
  27. // Refer to MSDN for the latest info on corresponding values for different platforms.
  28. #ifndef WINVER              // Allow use of features specific to Windows 95 and Windows NT 4 or later.
  29. #define WINVER 0x0400       // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
  30. #endif
  31. #ifndef _WIN32_WINNT        // Allow use of features specific to Windows NT 4 or later.
  32. #define _WIN32_WINNT 0x0400     // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
  33. #endif
  34. #ifndef _WIN32_WINDOWS      // Allow use of features specific to Windows 98 or later.
  35. #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
  36. #endif
  37. #ifndef _WIN32_IE           // Allow use of features specific to IE 4.0 or later.
  38. #define _WIN32_IE 0x0500    // Change this to the appropriate value to target IE 5.0 or later.
  39. #endif
  40. #endif
  41. //#define CONVERTERS
  42. #include <afxwin.h>         // MFC core and standard components
  43. #include <afxext.h>         // MFC extensions
  44. #include <afxole.h>         // MFC OLE classes
  45. #include <afxodlgs.h>       // MFC OLE dialog classes
  46. #include <afxcmn.h>
  47. #include <afxrich.h>
  48. #include <afxpriv.h>
  49. #define HORZ_TEXTOFFSET 15
  50. #define VERT_TEXTOFFSET 5
  51. #if (_MSC_VER < 1300)
  52. #define ULONGLONG DWORD
  53. #else
  54. #define PARAFORMAT PARAFORMAT2
  55. #define _paraformat PARAFORMAT2
  56. #endif
  57. class CDisplayIC : public CDC
  58. {
  59. public:
  60. CDisplayIC() { CreateIC(_T("DISPLAY"), NULL, NULL, NULL); }
  61. };
  62. struct CCharFormat : public CHARFORMAT
  63. {
  64. CCharFormat() {cbSize = sizeof(CHARFORMAT);}
  65. BOOL operator==(CCharFormat& cf);
  66. };
  67. struct CParaFormat : public _paraformat
  68. {
  69. CParaFormat() {cbSize = sizeof(_paraformat);}
  70. BOOL operator==(PARAFORMAT& pf);
  71. };
  72. #include "doctype.h"
  73. #include "chicdial.h"
  74. //#define _XTP_STATICLINK
  75. #include <XTToolkitPro.h>   // Codejock Software Components
  76. #include <AboutDlg.h>       // Sample About Dialog
  77.