home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / tutsamp / exeskel / exeskel.h < prev    next >
C/C++ Source or Header  |  1997-08-05  |  4KB  |  107 lines

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