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

Windows编程

开发平台:

Visual C++

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