EXESKEL.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:3k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      EXESKEL.H
  3.   Summary:   Include file for the EXESKEL skeleton code sample application.
  4.              In addition to a main window class definition, this EXESKEL.H
  5.              file contains definitions of the application's menu, string,
  6.              and other resource IDs.
  7.              For a comprehensive tutorial code tour of EXESKEL's
  8.              contents and offerings see the tutorial EXESKEL.HTM file.
  9.              For more specific technical details on the internal workings
  10.              see the comments dispersed throughout the EXESKEL source code.
  11.   Classes:   CMainWindow
  12.   Functions: WinMain
  13.   Origin:    7-27-95: atrent - Created based on DFVIEW by stevebl.
  14. ----------------------------------------------------------------------------
  15.   This file is part of the Microsoft COM Tutorial Code Samples.
  16.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  17.   This source code is intended only as a supplement to Microsoft
  18.   Development Tools and/or on-line documentation.  See these other
  19.   materials for detailed information regarding Microsoft code samples.
  20.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  21.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  22.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  23.   PARTICULAR PURPOSE.
  24. ==========================================================================+*/
  25. #if !defined(EXESKEL_H)
  26. #define EXESKEL_H
  27. #if defined(__cplusplus)
  28. /*C+C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C
  29.   Class:    CMainWindow
  30.   Summary:  Class to encapsulate the application's main window, menu, and
  31.             message dispatching behavior.
  32.   Methods:  CMainWindow
  33.               Constructor.
  34.             InitInstance
  35.               Creates a new instance of the main window.
  36. C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C-C*/
  37. class CMainWindow: public CVirWindow
  38. {
  39. public:
  40.   CMainWindow();
  41.   ~CMainWindow();
  42.   BOOL InitInstance(HINSTANCE, int);
  43.   TCHAR m_szFileName[MAX_PATH];
  44.   CMsgBox* m_pMsgBox;
  45. protected:
  46.   LRESULT WindowProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
  47. private:
  48.   LRESULT DoMenu(WPARAM wParam, LPARAM lParam);
  49.   WORD m_wWidth;
  50.   WORD m_wHeight;
  51.   TCHAR m_szHelpFile[MAX_PATH];
  52.   TCHAR m_szFileTitle[MAX_PATH];
  53.   TEXTMETRIC m_tm;
  54.   OPENFILENAME m_ofnFile;
  55. };
  56. #endif // __cplusplus
  57. // Window Class String Macros.
  58. #define MAIN_WINDOW_TITLE_STR       "EXESKEL: Tutorial Code Sample"
  59. #define MAIN_WINDOW_CLASS_NAME_STR  "EXESKELWindow"
  60. #define MAIN_WINDOW_CLASS_MENU_STR  "EXESKELMenu"
  61. // OpenFile-related String Macros.
  62. #define OFN_DEFAULTFILES_STR "All Files (*.*)*.*"
  63. #define OFN_DEFAULTTITLE_STR "Open File"
  64. // File Menu Command Identifiers.
  65. #define IDM_FILE_EXIT               1000
  66. // Help Menu Command Identifiers.
  67. #define IDM_HELP_CONTENTS           1900
  68. #define IDM_HELP_TUTORIAL           1901
  69. #define IDM_HELP_READSOURCE         1902
  70. #define IDM_HELP_ABOUT              1903
  71. // Error-related String Identifiers.
  72. #define IDS_COMINITFAILED           2000
  73. #define IDS_APPINITFAILED           2001
  74. #define IDS_OUTOFMEMORY             2002
  75. #define IDS_UNICODEFAIL             2003
  76. #define IDS_ASSERT_FAIL             2200
  77. // Notice-related String Identifiers.
  78. #define IDS_NOTIMPLEMENTED          2301
  79. #endif