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 / comuser / comuser.h < prev    next >
C/C++ Source or Header  |  1997-08-05  |  6KB  |  178 lines

  1. /*+==========================================================================
  2.   File:      COMUSER.H
  3.  
  4.   Summary:   Include file for the COMUSER code sample application.
  5.              In addition to class definitions, this COMUSER.H file contains
  6.              definitions of the application's menu, string, and other
  7.              resource IDs.
  8.  
  9.              Based largely on the DLLUSER.EXE source code, this include
  10.              file adds resource IDs for a set of new menus for exercising
  11.              the several COM Objects manipulated in this code sample.
  12.              This is the first code sample in the series to exploit the
  13.              Message Log facilities offered by APPUTIL.
  14.  
  15.              For a comprehensive tutorial code tour of COMUSER's
  16.              contents and offerings see the tutorial COMUSER.HTM file.
  17.              For more specific technical details on the internal workings
  18.              see the comments dispersed throughout the COMUSER source code.
  19.  
  20.   Classes:   CMainWindow
  21.  
  22.   Functions: WinMain
  23.  
  24.   Origin:    8-20-95: atrent - Editor-inheritance from the DLLUSER source.
  25.  
  26. ----------------------------------------------------------------------------
  27.   This file is part of the Microsoft COM Tutorial Code Samples.
  28.  
  29.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  30.  
  31.   This source code is intended only as a supplement to Microsoft
  32.   Development Tools and/or on-line documentation.  See these other
  33.   materials for detailed information regarding Microsoft code samples.
  34.  
  35.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  36.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  37.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  38.   PARTICULAR PURPOSE.
  39. ==========================================================================+*/
  40.  
  41. #if !defined(COMUSER_H)
  42. #define COMUSER_H
  43.  
  44. #ifdef __cplusplus
  45.  
  46. extern CMsgLog* g_pMsgLog;
  47.  
  48. /*C+C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C
  49.   Class:    CMainWindow
  50.  
  51.   Summary:  Class to encapsulate the application's main window, menu, and
  52.             message dispatching behavior.
  53.  
  54.   Methods:  CMainWindow
  55.               Constructor.
  56.             InitInstance
  57.               Creates a new instance of the main window.
  58. C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C-C*/
  59. class CMainWindow: public CVirWindow
  60. {
  61. public:
  62.   CMainWindow();
  63.   ~CMainWindow();
  64.   BOOL InitInstance(HINSTANCE, int);
  65.  
  66.   TCHAR m_szFileName[MAX_PATH];
  67.   CMsgBox*  m_pMsgBox;
  68.   CMsgLog*  m_pMsgLog;
  69.  
  70.   // A method for getting an interface on a COM object.
  71.   BOOL GetInterface(IUnknown* pObj, REFIID riid, PPVOID ppv);
  72.   // Some member variables to store pointers to Car-like COM Objects.
  73.   // We save pointers to each COM objects controlling IUnknown.
  74.   IUnknown* m_pCar;
  75.   IUnknown* m_pUtilityCar;
  76.   IUnknown* m_pCruiseCar;
  77.   IUnknown* m_pUtilityCruiseCar;
  78.  
  79. protected:
  80.   LRESULT WindowProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
  81.  
  82. private:
  83.   LRESULT DoMenu(WPARAM wParam, LPARAM lParam);
  84.  
  85.   WORD m_wWidth;
  86.   WORD m_wHeight;
  87.   TCHAR m_szHelpFile[MAX_PATH];
  88.   TCHAR m_szFileTitle[MAX_PATH];
  89.   TEXTMETRIC m_tm;
  90.   OPENFILENAME m_ofnFile;
  91. };
  92.  
  93. #endif // __cplusplus
  94.  
  95. // Window Class String Macros.
  96. #define MAIN_WINDOW_TITLE_STR       "COMUSER: Tutorial Code Sample"
  97. #define MAIN_WINDOW_CLASS_NAME_STR  "COMUSERWindow"
  98. #define MAIN_WINDOW_CLASS_MENU_STR  "COMUSERMenu"
  99.  
  100. // File Name String Macros.
  101. #define DLL_TUTFILE_STR             "comobj.htm"
  102.  
  103. // OpenFile-related String Macros.
  104. #define OFN_DEFAULTFILES_STR "All Files (*.*)\0*.*\0"
  105. #define OFN_DEFAULTTITLE_STR "Open File"
  106.  
  107. // File Menu Command Identifiers.
  108. #define IDM_FILE_EXIT               1000
  109.  
  110. // Car Menu Command Identifiers.
  111. #define IDM_CAR_CREATE              1100
  112. #define IDM_CAR_RELEASE             1101
  113. #define IDM_CAR_SHIFT               1102
  114. #define IDM_CAR_CLUTCH              1103
  115. #define IDM_CAR_SPEED               1104
  116. #define IDM_CAR_STEER               1105
  117.  
  118. // UtilityCar Menu Command Identifiers.
  119. #define IDM_UCAR_CREATE             1200
  120. #define IDM_UCAR_RELEASE            1201
  121. #define IDM_UCAR_SHIFT              1202
  122. #define IDM_UCAR_CLUTCH             1203
  123. #define IDM_UCAR_SPEED              1204
  124. #define IDM_UCAR_STEER              1205
  125. #define IDM_UCAR_OFFROAD            1206
  126. #define IDM_UCAR_WINCH              1207
  127.  
  128. // CruiseCar Menu Command Identifiers.
  129. #define IDM_CCAR_CREATE             1300
  130. #define IDM_CCAR_RELEASE            1301
  131. #define IDM_CCAR_SHIFT              1302
  132. #define IDM_CCAR_CLUTCH             1303
  133. #define IDM_CCAR_SPEED              1304
  134. #define IDM_CCAR_STEER              1305
  135. #define IDM_CCAR_ENGAGE             1306
  136. #define IDM_CCAR_ADJUST             1307
  137.  
  138. // UtilityCruiseCar Menu Command Identifiers.
  139. #define IDM_UCRU_CREATE             1400
  140. #define IDM_UCRU_RELEASE            1401
  141. #define IDM_UCRU_SHIFT              1402
  142. #define IDM_UCRU_CLUTCH             1403
  143. #define IDM_UCRU_SPEED              1404
  144. #define IDM_UCRU_STEER              1405
  145. #define IDM_UCRU_ENGAGE             1406
  146. #define IDM_UCRU_ADJUST             1407
  147. #define IDM_UCRU_OFFROAD            1408
  148. #define IDM_UCRU_WINCH              1409
  149.  
  150. // Log Menu Command Identifiers.
  151. #define IDM_LOG_LOGCLEAR            1890
  152. #define IDM_LOG_LOGGING             1891
  153. #define IDM_LOG_COPYCLIP            1892
  154.  
  155. // Help Menu Command Identifiers.
  156. #define IDM_HELP_CONTENTS           1900
  157. #define IDM_HELP_TUTORIAL           1901
  158. #define IDM_HELP_TUTDLL             1902
  159. #define IDM_HELP_READSOURCE         1903
  160. #define IDM_HELP_ABOUT              1904
  161. #define IDM_HELP_ABOUTDLL           1905
  162.  
  163. // Error-related String Identifiers.
  164. #define IDS_COMINITFAILED           2000
  165. #define IDS_APPINITFAILED           2001
  166. #define IDS_OUTOFMEMORY             2002
  167. #define IDS_UNICODEFAIL             2003
  168.  
  169. #define IDS_ASSERT_FAIL             2200
  170.  
  171. // Notice-related String Identifiers.
  172. #define IDS_NOTIMPLEMENTED          2301
  173.  
  174. // Log Message String Identifiers.
  175. #define IDS_START_MESSAGE_LOG       2400
  176.  
  177. #endif
  178.