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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      COMUSER.CPP
  3.   Summary:   Based largely on the DLLUSER.EXE application code, this
  4.              module is meant to implicitly link to the COMOBJ.DLL
  5.              and illustrate the use (by this COMUSER client app) of the
  6.              exported COM Object creation calls from that DLL:
  7.              CreateCar, CreateUtilityCar, CreateCruiseCar.
  8.              To this end, COMUSER also provides a set of menus for these
  9.              Car related objects with selections for the respective
  10.              methods of the Interfaces exposed by those COM Objects.
  11.              For a comprehensive tutorial code tour of COMUSER's contents
  12.              and offerings see the tutorial COMUSER.HTM file. For more
  13.              specific technical details on the internal workings see the
  14.              comments dispersed throughout the COMUSER source code. For
  15.              more details on the COMOBJ.DLL that COMUSER works with see
  16.              the COMOBJ.HTM tutorial file in the main tutorial directory.
  17.   Classes:   CMainWindow
  18.   Functions: InitApplication, WinMain
  19.   Origin:    8-20-95: atrent - Editor-inheritance from the DLLUSER source.
  20. ----------------------------------------------------------------------------
  21.   This file is part of the Microsoft COM Tutorial Code Samples.
  22.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  23.   This source code is intended only as a supplement to Microsoft
  24.   Development Tools and/or on-line documentation.  See these other
  25.   materials for detailed information regarding Microsoft code samples.
  26.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  27.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  28.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  29.   PARTICULAR PURPOSE.
  30. ==========================================================================+*/
  31. /*--------------------------------------------------------------------------
  32.   We include WINDOWS.H for all Win32 applications.
  33.   We include OLE2.H because we will make calls to the COM/OLE libraries.
  34.   We include INITGUID.H only once (here) in the entire app because we
  35.     will be defining GUIDs and want them as constants in the data segment.
  36.   We include COMMDLG.H because we will be using the Open File and
  37.     potentially other Common dialogs.
  38.   We include APPUTIL.H because we will be building this application using
  39.     the convenient Virtual Window and Dialog classes and other
  40.     utility functions in the APPUTIL Library (ie, APPUTIL.LIB).
  41.   We include ICARS.H and CARGUIDS.H for the common car-related Interface
  42.     class, GUID, and CLSID specifications.
  43.   We include COMOBJ.H for the interface declarations and the import
  44.     prototypes for the service functions provided by COMOBJ.DLL.
  45.   We include COMUSER.H because it has class and resource definitions
  46.     specific to this COMUSER application.
  47. ---------------------------------------------------------------------------*/
  48. #include <windows.h>
  49. #include <ole2.h>
  50. #include <initguid.h>
  51. #include <commdlg.h>
  52. #include <apputil.h>
  53. #include <icars.h>
  54. #include <carguids.h>
  55. #include <comobj.h>
  56. #include "comuser.h"
  57. #include "utcrucar.h"
  58. // Here is a pointer for use by the global Trace Message logging macros.
  59. CMsgLog* g_pMsgLog = NULL;
  60. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  61.   Method:   CMainWindow::CMainWindow
  62.   Summary:  CMainWindow Constructor.
  63.   Args:     .
  64.   Modifies: .
  65.   Returns:  .
  66. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  67. CMainWindow::CMainWindow()
  68. {
  69.   // Ensure these member variable strings are null strings.
  70.   m_szFileName[0] = 0;
  71.   m_szFileTitle[0] = 0;
  72.   // Fill in the Open File Name Common Dialog's OPENFILENAME structure.
  73.   m_ofnFile.lStructSize = sizeof(OPENFILENAME);
  74.   m_ofnFile.hwndOwner = m_hWnd;
  75.   m_ofnFile.hInstance = m_hInst;
  76.   m_ofnFile.lpstrFilter = TEXT(OFN_DEFAULTFILES_STR);
  77.   m_ofnFile.lpstrCustomFilter = NULL;
  78.   m_ofnFile.nMaxCustFilter = 0;
  79.   m_ofnFile.nFilterIndex = 1;
  80.   m_ofnFile.lpstrFile = m_szFileName;
  81.   m_ofnFile.nMaxFile = MAX_PATH;
  82.   m_ofnFile.lpstrInitialDir = TEXT(".");
  83.   m_ofnFile.lpstrFileTitle = m_szFileTitle;
  84.   m_ofnFile.nMaxFileTitle = MAX_PATH;
  85.   m_ofnFile.lpstrTitle = TEXT(OFN_DEFAULTTITLE_STR);
  86.   m_ofnFile.lpstrDefExt = NULL;
  87.   m_ofnFile.Flags = OFN_HIDEREADONLY;
  88.   // Null the COM Object IUnknown pointers.
  89.   m_pCar = NULL;
  90.   m_pUtilityCar = NULL;
  91.   m_pCruiseCar = NULL;
  92.   m_pUtilityCruiseCar = NULL;
  93.   // Null the Message object pointers.
  94.   m_pMsgBox = NULL;
  95.   m_pMsgLog = NULL;
  96. }
  97. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  98.   Method:   CMainWindow::~CMainWindow
  99.   Summary:  CMainWindow Destructor.  Destruction of the main window
  100.             indicates that the application should quit and thus the
  101.             PostQuitMessage API is called.
  102.   Args:     .
  103.   Modifies: .
  104.   Returns:  .
  105. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  106. CMainWindow::~CMainWindow()
  107. {
  108.   // CMainWindow is derived from CVirWindow which traps the WM_DESTROY
  109.   // message and causes a delete of CMainWindow which in turn causes this
  110.   // destructor to run. The WM_DESTROY results when the window is destoyed
  111.   // after a close of the window. Prior to exiting the main message loop:
  112.   // We release any and all of the pointers to instantiated COM objects.
  113.   RELEASE_INTERFACE(m_pCar);
  114.   RELEASE_INTERFACE(m_pUtilityCar);
  115.   RELEASE_INTERFACE(m_pCruiseCar);
  116.   RELEASE_INTERFACE(m_pUtilityCruiseCar);
  117.   // We delete the CMsgBox and CMsgLog objects that were made in
  118.   // Initinstance.
  119.   DELETE_POINTER(m_pMsgBox);
  120.   DELETE_POINTER(m_pMsgLog);
  121.   // We then post a WM_QUIT message to cause an exit of the main thread's
  122.   // message loop and an exit of this instance of the application.
  123.   PostQuitMessage(0);
  124. }
  125. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  126.   Method:   CMainWindow::InitInstance
  127.   Summary:  Instantiates an instance of the main application window.
  128.             This method must be called only once, immediately after
  129.             window class construction.  We take care to delete 'this'
  130.             CMainWindow if we must return the error condition FALSE.
  131.   Args:     HINSTANCE hInstance,
  132.               Handle of the application instance.
  133.             int nCmdShow)
  134.               Command to pass to ShowWindow.
  135.   Modifies: m_szHelpFile, m_pMsgBox, m_pMsgLog.
  136.   Returns:  BOOL.
  137.               TRUE if succeeded.
  138.               FALSE if failed.
  139. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  140. BOOL CMainWindow::InitInstance(
  141.        HINSTANCE hInstance,
  142.        int nCmdShow)
  143. {
  144.   BOOL bResult = FALSE;
  145.   HWND hWnd;
  146.   // Create the Message Box and Message Log objects.
  147.   m_pMsgBox = new CMsgBox;
  148.   m_pMsgLog = new CMsgLog;
  149.   if (NULL != m_pMsgBox && NULL != m_pMsgLog)
  150.   {
  151.     // Note, the Create method sets the m_hWnd member so we don't
  152.     //   need to set it explicitly here first.
  153.     // Here is the create of this window.  Size the window reasonably.
  154.     //   Create sets both m_hInst and m_hWnd.
  155.     hWnd = Create(
  156.              TEXT(MAIN_WINDOW_CLASS_NAME_STR),
  157.              TEXT(MAIN_WINDOW_TITLE_STR),
  158.              WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX
  159.                | WS_MAXIMIZEBOX | WS_THICKFRAME,
  160.              CW_USEDEFAULT,
  161.              CW_USEDEFAULT,
  162.              ::GetSystemMetrics(SM_CXSCREEN)*3/5,
  163.              ::GetSystemMetrics(SM_CYSCREEN)*3/5,
  164.              NULL,
  165.              NULL,
  166.              hInstance);
  167.     if (hWnd)
  168.     {
  169.       // Ensure the new window is shown on screen and its content is painted.
  170.       ::ShowWindow(m_hWnd, nCmdShow);
  171.       ::UpdateWindow(m_hWnd);
  172.       // Build a path to where the help file should be (it should be in
  173.       // the same directory as the .EXE but with the .HTM extension.
  174.       MakeFamilyPath(hInstance, m_szHelpFile, TEXT(HELP_FILE_EXT));
  175.       // Init the Message Box object.
  176.       if (m_pMsgBox->Init(m_hInst, m_hWnd))
  177.       {
  178.         // Create the Trace Message Log ListBox as a child window that
  179.         //   fits the client area of the Main Window (the TRUE 3rd argument
  180.         //   specifies such an inside child).
  181.         // If you want the Trace Message Log in a separate (but owned)
  182.         //   window, then pass a FALSE instead for the 3rd argument.
  183.         if (m_pMsgLog->Create(m_hInst, m_hWnd, TRUE))
  184.         {
  185.           // Assign the global MsgLog pointer.
  186.           g_pMsgLog = m_pMsgLog;
  187.           // Use macro to log an initial start messsage.
  188.           LOGID(IDS_START_MESSAGE_LOG);
  189.           // Since we're exploiting the COMOBJ DLL and we want it to use
  190.           // this same Message Log facility, we pass it a pointer to our
  191.           // particular instance's CMsgLog object.
  192.           ComObjInitMsgLog(g_pMsgLog);
  193.           // Signal that we succeeded in initializing the app.
  194.           bResult = TRUE;
  195.         }
  196.       }
  197.     }
  198.   }
  199.   if (!bResult)
  200.   {
  201.     DELETE_POINTER(m_pMsgBox);
  202.     DELETE_POINTER(m_pMsgLog);
  203.   }
  204.   return (bResult);
  205. }
  206. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  207.   Method:   CMainWindow::GetInterface
  208.   Summary:  Convenience method that wraps the QueryInterface call
  209.             and accepts a main COM object IUnknown pointer as an argument.
  210.   Args:     IUnknown* pObj,
  211.               Pointer to the COM Object we are getting an interface on.
  212.             REFIID riid,
  213.               The GUID for the interface that we are seeking.
  214.             PPVOID ppv);
  215.               Address of the caller's pointer variable that will
  216.               receive the requested interface pointer.
  217.   Modifies: .
  218.   Returns:  BOOL.
  219.               TRUE if succeeded.
  220.               FALSE if failed.
  221. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  222. BOOL CMainWindow::GetInterface(
  223.        IUnknown* pObj,
  224.        REFIID riid,
  225.        PPVOID ppv)
  226. {
  227.   BOOL bResult = FALSE;
  228.   HRESULT hr;
  229.   *ppv=NULL;
  230.   if (NULL != pObj)
  231.   {
  232.     LOG("E: --Obtaining Interface Pointer.");
  233.     hr=pObj->QueryInterface(riid, ppv);
  234.     if (FAILED(hr))
  235.     {
  236.       LOGERROR("C: ???? QueryInterface", hr);
  237.     }
  238.     else
  239.     {
  240.       LOGF1("E: Interface obtained. *ppv=0x%X", *ppv);
  241.       bResult = TRUE;
  242.     }
  243.   }
  244.   else
  245.   {
  246.     LOG("E: ???? Create an object first.");
  247.   }
  248.   return (bResult);
  249. }
  250. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  251.   Method:   CMainWindow::DoMenu
  252.   Summary:  Dispatch and handle the main menu commands.
  253.   Args:     WPARAM wParam,
  254.               First message parameter (word sized).
  255.             LPARAM lParam)
  256.               Second message parameter (long sized).
  257.   Modifies: m_ofnFile, ...
  258.   Returns:  LRESULT
  259.               Standard Windows WindowProc return value.
  260. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  261. LRESULT CMainWindow::DoMenu(
  262.           WPARAM wParam,
  263.           LPARAM lParam)
  264. {
  265.   LRESULT lResult = FALSE;
  266.   HRESULT hr;
  267.   HMENU hMenu  = ::GetMenu(m_hWnd);
  268.   // Here are some interface pointers used to call methods on
  269.   // our COUtilityCar, COCruiseCar, and COUtilityCruiseCar COM objects.
  270.   ICar* pICar;
  271.   IUtility* pIUtility;
  272.   ICruise* pICruise;
  273.   switch (LOWORD(wParam))
  274.   {
  275.     //----------------------------------------------------------------------
  276.     // Handle File Menu Commands.
  277.     //----------------------------------------------------------------------
  278.     case IDM_FILE_EXIT:
  279.       // The user commands us to exit this application so we tell the
  280.       // Main window to close itself.
  281.       ::PostMessage(m_hWnd, WM_CLOSE, 0, 0);
  282.       break;
  283.     //----------------------------------------------------------------------
  284.     // Handle Car Menu Commands.
  285.     //----------------------------------------------------------------------
  286.     case IDM_CAR_CREATE:
  287.       LOG("E: === Car Menu: Create.");
  288.       if (NULL == m_pCar)
  289.       {
  290.         hr = CreateCar(NULL, IID_IUnknown, (PPVOID)&m_pCar);
  291.         if (SUCCEEDED(hr))
  292.         {
  293.           ::CheckMenuItem(
  294.               hMenu,
  295.               IDM_CAR_CREATE,
  296.               MF_BYCOMMAND | MF_CHECKED);
  297.         }
  298.         else
  299.           LOG("C: ???? Car creation failed.");
  300.       }
  301.       else
  302.         LOG("E: ???? Car already exists.");
  303.       break;
  304.     case IDM_CAR_RELEASE:
  305.       LOG("E: === Car Menu: Release.");
  306.       if (NULL != m_pCar)
  307.       {
  308.         RELEASE_INTERFACE(m_pCar);
  309.         ::CheckMenuItem(
  310.             hMenu,
  311.             IDM_CAR_CREATE,
  312.             MF_BYCOMMAND | MF_UNCHECKED);
  313.       }
  314.       else
  315.         LOG("E: ???? No Car to Release.");
  316.       break;
  317.     case IDM_CAR_SHIFT:
  318.       LOG("E: === Car Menu: ICar::Shift");
  319.       if (GetInterface(m_pCar, IID_ICar, (PPVOID)&pICar))
  320.       {
  321.         LOG("E: --Calling pICar->Shift");
  322.         pICar->Shift(1);
  323.         LOG("E: --Releasing pICar");
  324.         pICar->Release();
  325.       }
  326.       break;
  327.     case IDM_CAR_CLUTCH:
  328.       LOG("E: === Car Menu: ICar::Clutch");
  329.       if (GetInterface(m_pCar, IID_ICar, (PPVOID)&pICar))
  330.       {
  331.         LOG("E: --Calling pICar->Clutch");
  332.         pICar->Clutch(100);
  333.         LOG("E: --Releasing pICar");
  334.         pICar->Release();
  335.       }
  336.       break;
  337.     case IDM_CAR_SPEED:
  338.       LOG("E: === Car Menu: ICar::Speed");
  339.       if (GetInterface(m_pCar, IID_ICar, (PPVOID)&pICar))
  340.       {
  341.         LOG("E: --Calling pICar->Speed");
  342.         pICar->Speed(20);
  343.         LOG("E: --Releasing pICar");
  344.         pICar->Release();
  345.       }
  346.       break;
  347.     case IDM_CAR_STEER:
  348.       LOG("E: === Car Menu: ICar::Steer");
  349.       if (GetInterface(m_pCar, IID_ICar, (PPVOID)&pICar))
  350.       {
  351.         LOG("E: --Calling pICar->Steer");
  352.         pICar->Steer(0);
  353.         LOG("E: --Releasing pICar");
  354.         pICar->Release();
  355.       }
  356.       break;
  357.     //----------------------------------------------------------------------
  358.     // Handle UtilityCar Menu Commands.
  359.     //----------------------------------------------------------------------
  360.     case IDM_UCAR_CREATE:
  361.       LOG("E: === UtilityCar Menu: Create.");
  362.       if (NULL == m_pUtilityCar)
  363.       {
  364.         hr = CreateUtilityCar(NULL, IID_IUnknown, (PPVOID)&m_pUtilityCar);
  365.         if (SUCCEEDED(hr))
  366.         {
  367.           ::CheckMenuItem(
  368.               hMenu,
  369.               IDM_UCAR_CREATE,
  370.               MF_BYCOMMAND | MF_CHECKED);
  371.         }
  372.         else
  373.           LOG("C: ???? UtilityCar creation failed.");
  374.       }
  375.       else
  376.         LOG("E: ???? UtilityCar already exists.");
  377.       break;
  378.     case IDM_UCAR_RELEASE:
  379.       LOG("E: === UtilityCar Menu: Release.");
  380.       if (NULL != m_pUtilityCar)
  381.       {
  382.         RELEASE_INTERFACE(m_pUtilityCar);
  383.         ::CheckMenuItem(
  384.             hMenu,
  385.             IDM_UCAR_CREATE,
  386.             MF_BYCOMMAND | MF_UNCHECKED);
  387.       }
  388.       else
  389.         LOG("E: ???? No UtilityCar to Release.");
  390.       break;
  391.     case IDM_UCAR_SHIFT:
  392.       LOG("E: === UtilityCar Menu: ICar::Shift");
  393.       if (GetInterface(m_pUtilityCar, IID_ICar, (PPVOID)&pICar))
  394.       {
  395.         LOG("E: --Calling pICar->Shift");
  396.         pICar->Shift(2);
  397.         LOG("E: --Releasing pICar");
  398.         pICar->Release();
  399.       }
  400.       break;
  401.     case IDM_UCAR_CLUTCH:
  402.       LOG("E: === UtilityCar Menu: ICar::Clutch");
  403.       if (GetInterface(m_pUtilityCar, IID_ICar, (PPVOID)&pICar))
  404.       {
  405.         LOG("E: --Calling pICar->Clutch");
  406.         pICar->Clutch(100);
  407.         LOG("E: --Releasing pICar");
  408.         pICar->Release();
  409.       }
  410.       break;
  411.     case IDM_UCAR_SPEED:
  412.       LOG("E: === UtilityCar Menu: ICar::Speed");
  413.       if (GetInterface(m_pUtilityCar, IID_ICar, (PPVOID)&pICar))
  414.       {
  415.         LOG("E: --Calling pICar->Speed");
  416.         pICar->Speed(30);
  417.         LOG("E: --Releasing pICar");
  418.         pICar->Release();
  419.       }
  420.       break;
  421.     case IDM_UCAR_STEER:
  422.       LOG("E: === UtilityCar Menu: ICar::Steer");
  423.       if (GetInterface(m_pUtilityCar, IID_ICar, (PPVOID)&pICar))
  424.       {
  425.         LOG("E: --Calling pICar->Steer");
  426.         pICar->Steer(10);
  427.         LOG("E: --Releasing pICar");
  428.         pICar->Release();
  429.       }
  430.       break;
  431.     case IDM_UCAR_OFFROAD:
  432.       LOG("E: === UtilityCar Menu: IUtility::Offroad");
  433.       if (GetInterface(m_pUtilityCar, IID_IUtility, (PPVOID)&pIUtility))
  434.       {
  435.         LOG("E: --Calling pIUtility->Offroad");
  436.         pIUtility->Offroad(1);
  437.         LOG("E: --Releasing pIUtility");
  438.         pIUtility->Release();
  439.       }
  440.       break;
  441.     case IDM_UCAR_WINCH:
  442.       LOG("E: === UtilityCar Menu: IUtility::Winch");
  443.       if (GetInterface(m_pUtilityCar, IID_IUtility, (PPVOID)&pIUtility))
  444.       {
  445.         LOG("E: --Calling pIUtility->Winch");
  446.         pIUtility->Winch(0);
  447.         LOG("E: --Releasing pIUtility");
  448.         pIUtility->Release();
  449.       }
  450.       break;
  451.     //----------------------------------------------------------------------
  452.     // Handle CruiseCar Menu Commands.
  453.     //----------------------------------------------------------------------
  454.     case IDM_CCAR_CREATE:
  455.       LOG("E: === CruiseCar Menu: Create.");
  456.       if (NULL == m_pCruiseCar)
  457.       {
  458.         hr = CreateCruiseCar(NULL, IID_IUnknown, (PPVOID)&m_pCruiseCar);
  459.         if (SUCCEEDED(hr))
  460.         {
  461.           ::CheckMenuItem(
  462.               hMenu,
  463.               IDM_CCAR_CREATE,
  464.               MF_BYCOMMAND | MF_CHECKED);
  465.         }
  466.         else
  467.           LOG("C: ???? CruiseCar creation failed.");
  468.       }
  469.       else
  470.         LOG("E: ???? CruiseCar already exists.");
  471.       break;
  472.     case IDM_CCAR_RELEASE:
  473.       LOG("E: === CruiseCar Menu: Release.");
  474.       if (NULL != m_pCruiseCar)
  475.       {
  476.         RELEASE_INTERFACE(m_pCruiseCar);
  477.         ::CheckMenuItem(
  478.             hMenu,
  479.             IDM_CCAR_CREATE,
  480.             MF_BYCOMMAND | MF_UNCHECKED);
  481.       }
  482.       else
  483.         LOG("E: ???? No CruiseCar to Release.");
  484.       break;
  485.     case IDM_CCAR_SHIFT:
  486.       LOG("E: === CruiseCar Menu: ICar::Shift");
  487.       if (GetInterface(m_pCruiseCar, IID_ICar, (PPVOID)&pICar))
  488.       {
  489.         LOG("E: --Calling pICar->Shift");
  490.         pICar->Shift(4);
  491.         LOG("E: --Releasing pICar");
  492.         pICar->Release();
  493.       }
  494.       break;
  495.     case IDM_CCAR_CLUTCH:
  496.       LOG("E: === CruiseCar Menu: ICar::Clutch");
  497.       if (GetInterface(m_pCruiseCar, IID_ICar, (PPVOID)&pICar))
  498.       {
  499.         LOG("E: --Calling pICar->Clutch");
  500.         pICar->Clutch(100);
  501.         LOG("E: --Releasing pICar");
  502.         pICar->Release();
  503.       }
  504.       break;
  505.     case IDM_CCAR_SPEED:
  506.       LOG("E: === CruiseCar Menu: ICar::Speed");
  507.       if (GetInterface(m_pCruiseCar, IID_ICar, (PPVOID)&pICar))
  508.       {
  509.         LOG("E: --Calling pICar->Speed");
  510.         pICar->Speed(60);
  511.         LOG("E: --Releasing pICar");
  512.         pICar->Release();
  513.       }
  514.       break;
  515.     case IDM_CCAR_STEER:
  516.       LOG("E: === CruiseCar Menu: ICar::Steer");
  517.       if (GetInterface(m_pCruiseCar, IID_ICar, (PPVOID)&pICar))
  518.       {
  519.         LOG("E: --Calling pICar->Steer");
  520.         pICar->Steer(0);
  521.         LOG("E: --Releasing pICar");
  522.         pICar->Release();
  523.       }
  524.       break;
  525.     case IDM_CCAR_ENGAGE:
  526.       LOG("E: === CruiseCar Menu: ICruise::Engage");
  527.       if (GetInterface(m_pCruiseCar, IID_ICruise, (PPVOID)&pICruise))
  528.       {
  529.         LOG("E: --Calling pICruise->Engage");
  530.         pICruise->Engage(TRUE);
  531.         LOG("E: --Releasing pICruise");
  532.         pICruise->Release();
  533.       }
  534.       break;
  535.     case IDM_CCAR_ADJUST:
  536.       LOG("E: === CruiseCar Menu: ICruise::Adjust");
  537.       if (GetInterface(m_pCruiseCar, IID_ICruise, (PPVOID)&pICruise))
  538.       {
  539.         LOG("E: --Calling pICruise->Adjust");
  540.         pICruise->Adjust(FALSE);
  541.         LOG("E: --Releasing pICruise");
  542.         pICruise->Release();
  543.       }
  544.       break;
  545.     //----------------------------------------------------------------------
  546.     // Handle UtilityCruiseCar Menu Commands.
  547.     //----------------------------------------------------------------------
  548.     case IDM_UCRU_CREATE:
  549.       LOG("E: === UtilityCruiseCar Menu: Create.");
  550.       if (NULL == m_pUtilityCruiseCar)
  551.       {
  552.         hr = CreateUtilityCruiseCar(
  553.                NULL,
  554.                IID_IUnknown,
  555.                (PPVOID)&m_pUtilityCruiseCar);
  556.         if (SUCCEEDED(hr))
  557.         {
  558.           ::CheckMenuItem(
  559.               hMenu,
  560.               IDM_UCRU_CREATE,
  561.               MF_BYCOMMAND | MF_CHECKED);
  562.         }
  563.         else
  564.           LOG("C: ???? UtilityCruiseCar creation failed.");
  565.       }
  566.       else
  567.         LOG("E: ???? UtilityCruiseCar already exists.");
  568.       break;
  569.     case IDM_UCRU_RELEASE:
  570.       LOG("E: === UtilityCruiseCar Menu: Release.");
  571.       if (NULL != m_pUtilityCruiseCar)
  572.       {
  573.         RELEASE_INTERFACE(m_pUtilityCruiseCar);
  574.         ::CheckMenuItem(
  575.             hMenu,
  576.             IDM_UCRU_CREATE,
  577.             MF_BYCOMMAND | MF_UNCHECKED);
  578.       }
  579.       else
  580.         LOG("E: ???? No UtilityCruiseCar to Release.");
  581.       break;
  582.     case IDM_UCRU_SHIFT:
  583.       LOG("E: === UtilityCruiseCar Menu: ICar::Shift");
  584.       if (GetInterface(m_pUtilityCruiseCar, IID_ICar, (PPVOID)&pICar))
  585.       {
  586.         LOG("E: --Calling pICar->Shift");
  587.         pICar->Shift(1);
  588.         LOG("E: --Releasing pICar");
  589.         pICar->Release();
  590.       }
  591.       break;
  592.     case IDM_UCRU_CLUTCH:
  593.       LOG("E: === UtilityCruiseCar Menu: ICar::Clutch");
  594.       if (GetInterface(m_pUtilityCruiseCar, IID_ICar, (PPVOID)&pICar))
  595.       {
  596.         LOG("E: --Calling pICar->Clutch");
  597.         pICar->Clutch(80);
  598.         LOG("E: --Releasing pICar");
  599.         pICar->Release();
  600.       }
  601.       break;
  602.     case IDM_UCRU_SPEED:
  603.       LOG("E: === UtilityCruiseCar Menu: ICar::Speed");
  604.       if (GetInterface(m_pUtilityCruiseCar, IID_ICar, (PPVOID)&pICar))
  605.       {
  606.         LOG("E: --Calling pICar->Speed");
  607.         pICar->Speed(10);
  608.         LOG("E: --Releasing pICar");
  609.         pICar->Release();
  610.       }
  611.       break;
  612.     case IDM_UCRU_STEER:
  613.       LOG("E: === UtilityCruiseCar Menu: ICar::Steer");
  614.       if (GetInterface(m_pUtilityCruiseCar, IID_ICar, (PPVOID)&pICar))
  615.       {
  616.         LOG("E: --Calling pICar->Steer");
  617.         pICar->Steer(10);
  618.         LOG("E: --Releasing pICar");
  619.         pICar->Release();
  620.       }
  621.       break;
  622.     case IDM_UCRU_ENGAGE:
  623.       LOG("E: === UtilityCruiseCar Menu: ICruise::Engage");
  624.       if (GetInterface(m_pUtilityCruiseCar, IID_ICruise, (PPVOID)&pICruise))
  625.       {
  626.         LOG("E: --Calling pICruise->Engage");
  627.         pICruise->Engage(FALSE);
  628.         LOG("E: --Releasing pICruise");
  629.         pICruise->Release();
  630.       }
  631.       break;
  632.     case IDM_UCRU_ADJUST:
  633.       LOG("E: === UtilityCruiseCar Menu: ICruise::Adjust");
  634.       if (GetInterface(m_pUtilityCruiseCar, IID_ICruise, (PPVOID)&pICruise))
  635.       {
  636.         LOG("E: --Calling pICruise->Adjust");
  637.         pICruise->Adjust(FALSE);
  638.         LOG("E: --Releasing pICruise");
  639.         pICruise->Release();
  640.       }
  641.       break;
  642.     case IDM_UCRU_OFFROAD:
  643.       LOG("E: === UtilityCruiseCar Menu: IUtility::Offroad");
  644.       if (GetInterface(m_pUtilityCruiseCar, IID_IUtility, (PPVOID)&pIUtility))
  645.       {
  646.         LOG("E: --Calling pIUtility->Offroad");
  647.         pIUtility->Offroad(3);
  648.         LOG("E: --Releasing pIUtility");
  649.         pIUtility->Release();
  650.       }
  651.       break;
  652.     case IDM_UCRU_WINCH:
  653.       LOG("E: === UtilityCruiseCar Menu: IUtility::Winch");
  654.       if (GetInterface(m_pUtilityCruiseCar, IID_IUtility, (PPVOID)&pIUtility))
  655.       {
  656.         LOG("E: --Calling pIUtility->Winch");
  657.         pIUtility->Winch(0);
  658.         LOG("E: --Releasing pIUtility");
  659.         pIUtility->Release();
  660.       }
  661.       break;
  662.     //----------------------------------------------------------------------
  663.     // Handle Log Menu Commands.
  664.     //----------------------------------------------------------------------
  665.     case IDM_LOG_LOGCLEAR:
  666.       // Clear the message log.
  667.       m_pMsgLog->Clear();
  668.       // Use macro to log messages.
  669.       LOGID(IDS_START_MESSAGE_LOG);
  670.       break;
  671.     case IDM_LOG_LOGGING:
  672.       // Toggle the state of the Message Logging.
  673.       // Toggle the checkmark indicator on the menu selection as well.
  674.       {
  675.         HMENU hMenu  = ::GetMenu(m_hWnd);
  676.         BOOL bLogging = ::GetMenuState(
  677.                             hMenu,
  678.                             IDM_LOG_LOGGING,
  679.                             MF_BYCOMMAND) & MF_CHECKED;
  680.         if (bLogging)
  681.         {
  682.           m_pMsgLog->Logging(FALSE);
  683.           ::CheckMenuItem(
  684.               hMenu,
  685.               IDM_LOG_LOGGING,
  686.               MF_BYCOMMAND | MF_UNCHECKED);
  687.         }
  688.         else
  689.         {
  690.           m_pMsgLog->Logging(TRUE);
  691.           ::CheckMenuItem(
  692.               hMenu,
  693.               IDM_LOG_LOGGING,
  694.               MF_BYCOMMAND | MF_CHECKED);
  695.         }
  696.       }
  697.       break;
  698.     case IDM_LOG_COPYCLIP:
  699.       // Copy trace message log to clipboard.
  700.       m_pMsgLog->Copy();
  701.       break;
  702.     //----------------------------------------------------------------------
  703.     // Handle Help Menu Commands.
  704.     //----------------------------------------------------------------------
  705.     case IDM_HELP_CONTENTS:
  706.       // We have some stubbed support here for bringing up the online
  707.       // Help for this application.
  708.       ReadHelp(m_hWnd, m_szHelpFile);
  709.       break;
  710.     case IDM_HELP_TUTORIAL:
  711.       // Call the APPUTIL utility function, ReadTutorial, to Browse the HTML
  712.       // tutorial narrative file associated with this tutorial code sample.
  713.       ReadTutorial(m_hInst, m_hWnd, TEXT(HTML_FILE_EXT));
  714.       break;
  715.     case IDM_HELP_TUTDLL:
  716.       // Call the APPUTIL utility function, ReadTutorial, to Browse the HTML
  717.       // tutorial narrative file associated with the DLL server.
  718.       ReadTutorial(m_hInst, m_hWnd, TEXT(DLL_TUTFILE_STR));
  719.       break;
  720.     case IDM_HELP_READSOURCE:
  721.       // Call the APPUTIL utility function ReadSource to allow the
  722.       // user to open and read any of the source files of COMUSER.
  723.       ReadSource(m_hWnd, &m_ofnFile);
  724.       break;
  725.     case IDM_HELP_ABOUT:
  726.       {
  727.         CAboutBox dlgAboutBox;
  728.         // Show the standard About Box dialog for this EXE by telling the
  729.         // dialog C++ object to show itself by invoking its ShowDialog
  730.         // method.  Pass it this EXE instance and the parent window handle.
  731.         // Use a dialog resource ID for the dialog template stored in
  732.         // this EXE module's resources.
  733.         dlgAboutBox.ShowDialog(
  734.           m_hInst,
  735.           MAKEINTRESOURCE(IDM_HELP_ABOUT),
  736.           m_hWnd);
  737.       }
  738.       break;
  739.     case IDM_HELP_ABOUTDLL:
  740.       // Call the COMOBJ DLL to show the DLL's About Box.
  741.       ::ComObjAboutBox(m_hWnd);
  742.       break;
  743.     default:
  744.       // Defer all messages NOT handled here to the Default Window Proc.
  745.       lResult = ::DefWindowProc(m_hWnd, WM_COMMAND, wParam, lParam);
  746.       break;
  747.   }
  748.   return(lResult);
  749. }
  750. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  751.   Method:   CMainWindow::WindowProc
  752.   Summary:  Main window procedure for this window object.  See CVirWindow
  753.             in the APPUTIL library (APPUTIL.CPP) for details on how this
  754.             method gets called by the global WindowProc.
  755.   Args:     UINT uMsg,
  756.               Windows message that is "sent" to this window.
  757.             WPARAM wParam,
  758.               First message parameter (word sized).
  759.             LPARAM lParam)
  760.               Second message parameter (long sized).
  761.   Modifies: ...
  762.   Returns:  LRESULT
  763.               Standard Windows WindowProc return value.
  764. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  765. LRESULT CMainWindow::WindowProc(
  766.           UINT uMsg,
  767.           WPARAM wParam,
  768.           LPARAM lParam)
  769. {
  770.   LRESULT lResult = FALSE;
  771.   switch (uMsg)
  772.   {
  773.     case WM_CREATE:
  774.       {
  775.         // Setup for painting text in this window.
  776.         HDC hdc = GetDC(m_hWnd);
  777.         ::GetTextMetrics(hdc, &m_tm);
  778.         ::ReleaseDC(m_hWnd, hdc);
  779.       }
  780.       break;
  781.     case WM_MEASUREITEM:
  782.       // Get setup for painting text in this window.
  783.       {
  784.         LPMEASUREITEMSTRUCT lpmis = (LPMEASUREITEMSTRUCT) lParam;
  785.         lpmis->itemHeight = m_tm.tmHeight + m_tm.tmExternalLeading;
  786.         lpmis->itemWidth = m_wWidth;
  787.         lResult = TRUE;
  788.       }
  789.     case WM_SIZE:
  790.       // Handle a resize of this window.
  791.       m_wWidth = LOWORD(lParam);
  792.       m_wHeight = HIWORD(lParam);
  793.       // Resize the Message Log ListBox
  794.       m_pMsgLog->Resize(m_wWidth, m_wHeight);
  795.       break;
  796.     case WM_COMMAND:
  797.       // Dispatch and handle any Menu command messages received.
  798.       lResult = DoMenu(wParam, lParam);
  799.       break;
  800.     case WM_CLOSE:
  801.       // The user selected Close on the main window's System menu
  802.       // or Exit on the File menu.
  803.     case WM_QUIT:
  804.       // If the app is being quit then close any associated help windows.
  805.     default:
  806.       // Defer all messages NOT handled here to the Default Window Proc.
  807.       lResult = ::DefWindowProc(m_hWnd, uMsg, wParam, lParam);
  808.       break;
  809.   }
  810.   return(lResult);
  811. }
  812. /*F+F++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  813.   Function: UnicodeOk
  814.   Summary:  Checks if the platform will handle unicode versions of
  815.             Win32 string API calls.
  816.   Args:     void
  817.   Returns:  BOOL
  818.               TRUE if unicode support; FALSE if not.
  819. ------------------------------------------------------------------------F-F*/
  820. BOOL UnicodeOk(void)
  821. {
  822.   BOOL bOk = TRUE;
  823.   TCHAR szUserName[MAX_STRING_LENGTH];
  824.   DWORD dwSize = MAX_STRING_LENGTH;
  825.   if (!GetUserName(szUserName, &dwSize))
  826.     bOk = ERROR_CALL_NOT_IMPLEMENTED == GetLastError() ? FALSE : TRUE;
  827.   return bOk;
  828. }
  829. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  830.   Function: InitApplication
  831.   Summary:  Initializes the application and registers its main window
  832.             class. InitApplication is called only once (in WinMain).
  833.   Args:     HINSTANCE hInstance)
  834.               Handle to the first instance of the application.
  835.   Returns:  BOOL.
  836.               TRUE if success.
  837.               FALSE if fail.
  838. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  839. BOOL InitApplication(
  840.        HINSTANCE hInstance)
  841. {
  842.   BOOL bOk;
  843.   // The window class for all instances of the main frame window.
  844.   WNDCLASSEX wcf;
  845.   // Assign the appropriate values for this main frame window class.
  846.   wcf.cbSize        = sizeof(WNDCLASSEX);
  847.   wcf.cbClsExtra    = 0;            // No per-class extra data.
  848.   wcf.cbWndExtra    = 0;            // No per-window extra data.
  849.   wcf.hInstance     = hInstance;    // Application module instance.
  850.   wcf.lpfnWndProc   = &WindowProc;  // Global Window Procedure (defined in
  851.                                     // APPUTIL for all CVirWindows).
  852.   wcf.hCursor       = LoadCursor(NULL, IDC_ARROW); // Load app cursor.
  853.   wcf.hIcon         = (HICON) LoadIcon(            // Load app icon.
  854.                                 hInstance,
  855.                                 TEXT("AppIcon"));
  856.   wcf.hIconSm       = (HICON) LoadImage(           // Load small icon.
  857.                                 hInstance,
  858.                                 TEXT("AppIcon"),
  859.                                 IMAGE_ICON,
  860.                                 16, 16,
  861.                                 0);
  862.   wcf.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);  // Default backgnd color.
  863.   wcf.style         = CS_HREDRAW | CS_VREDRAW;     // Class style(s).
  864.   wcf.lpszClassName = TEXT(MAIN_WINDOW_CLASS_NAME_STR); // Class name.
  865.   wcf.lpszMenuName  = TEXT(MAIN_WINDOW_CLASS_MENU_STR); // Menu name.
  866.   // Register the window class and return FALSE if unsuccesful.
  867.   bOk = RegisterClassEx(&wcf);
  868.   return (bOk);
  869. }
  870. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  871.   Function: WinMain
  872.   Summary:  The Windows main entry point function for this application.
  873.             Initializes the application, the COM Libraries, and starts
  874.             the main application message loop.
  875.   Args:     HINSTANCE hInstance,
  876.               Instance handle; a new one for each invocation of this app.
  877.             HINSTANCE hPrevInstance,
  878.               Instance handle of the previous instance. NULL in Win32.
  879.             LPSTR lpCmdLine,
  880.               Windows passes a pointer to the application's
  881.               invocation command line.
  882.             int nCmdShow)
  883.               Bits telling the show state of the application.
  884.   Returns:  int
  885.               msg.wParam (upon exit of message loop).
  886.               FALSE if this instance couldn't initialize and run.
  887. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  888. extern "C" int PASCAL WinMain(
  889.                         HINSTANCE hInstance,
  890.                         HINSTANCE hPrevInstance,
  891.                         LPSTR lpCmdLine,
  892.                         int nCmdShow)
  893. {
  894.   CMainWindow* pWin = NULL;
  895.   MSG msg;
  896.   HACCEL hAccel;
  897.   int iRun = FALSE;
  898.   // If we were compiled for UNICODE and the platform seems OK with this
  899.   // then proceed.  Else we error and exit the app.
  900.   if (UnicodeOk())
  901.   {
  902.     // Call to initialize the COM Library.  Use the SUCCEEDED macro
  903.     // to detect success.  If fail then exit app with error message.
  904.     if (SUCCEEDED(CoInitialize(NULL)))
  905.     {
  906.       // If we succeeded in initializing the COM Library we proceed to
  907.       // initialize the application.  If we can't init the application
  908.       // then we signal shut down with an error message exit.
  909.       iRun = InitApplication(hInstance);
  910.       if (iRun)
  911.       {
  912.         // Assume we'll set iRun to TRUE when initialization is done.
  913.         iRun = FALSE;
  914.         // We are still go for running so we try to create a nifty new
  915.         // CMainWindow object for this app instance.
  916.         pWin = new CMainWindow;
  917.         if (NULL != pWin)
  918.         {
  919.           // Now we initialize an instance of the new CMainWindow.
  920.           // This includes creating the main window.
  921.           if (pWin->InitInstance(hInstance, nCmdShow))
  922.           {
  923.             // Load the keyboard accelerators from the resources.
  924.             hAccel = LoadAccelerators(hInstance, TEXT("AppAccel"));
  925.             if (NULL != hAccel)
  926.             {
  927.               // Signal App Initialization is successfully done.
  928.               iRun = TRUE;
  929.             }
  930.           }
  931.         }
  932.       }
  933.       if (iRun)
  934.       {
  935.         // If we initialized the app instance properly then we are still
  936.         // go for running.  We then start up the main message pump for
  937.         // the application.
  938.         while (GetMessage(&msg, NULL, 0, 0))
  939.         {
  940.           if (!TranslateAccelerator(
  941.                  pWin->GetHwnd(),
  942.                  hAccel,
  943.                  &msg))
  944.           {
  945.             TranslateMessage(&msg);
  946.             DispatchMessage(&msg);
  947.           }
  948.         }
  949.         // We'll pass to Windows the reason why we exited the message loop.
  950.         iRun = msg.wParam;
  951.       }
  952.       else
  953.       {
  954.         // We failed to initialize the application. Put up error message
  955.         // box saying that application couldn't be initialized.  Parent
  956.         // window is desktop (ie, NULL). Exit the failed application
  957.         // (ie, by returning FALSE to WinMain).
  958.         ErrorBox(hInstance, NULL, IDS_APPINITFAILED);
  959.         // Delete the CMainWindow object.
  960.         DELETE_POINTER(pWin);
  961.       }
  962.       // We're exiting this app (either normally or by init failure) so
  963.       // shut down the COM Library.
  964.       CoUninitialize();
  965.     }
  966.     else
  967.     {
  968.       // We failed to Initialize the COM Library. Put up error message box
  969.       // saying that COM Library couldn't be initialized.  Parent window
  970.       // is desktop (ie, NULL). Exit the failed application (ie, by
  971.       // returning FALSE to WinMain).
  972.       ErrorBox(hInstance, NULL, IDS_COMINITFAILED);
  973.     }
  974.   }
  975.   else
  976.   {
  977.     // If we were compiled for UNICODE but the platform has problems with
  978.     // this then indicate an error and exit the app immediately.
  979.     CHAR szMsg[MAX_STRING_LENGTH];
  980.     if (LoadStringA(
  981.           hInstance,
  982.           IDS_UNICODEFAIL,
  983.           szMsg,
  984.           MAX_STRING_LENGTH))
  985.     {
  986.       MessageBoxA(
  987.         NULL,
  988.         szMsg,
  989.         ERROR_TITLE_STR,
  990.         MB_OK | MB_ICONEXCLAMATION);
  991.     }
  992.   }
  993.   return iRun;
  994. }