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

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