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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      DCOMDRAW.CPP
  3.   Summary:   This client loads and accesses the Connectable SharePaper
  4.              component provided in a separate out-of-process COM Server
  5.              (DCDSERVE built in the sibling DCDSERVE directory). Thus to
  6.              run DCOMDRAW you must build DCDSERVE first. This client
  7.              application is meant to exercise the DCDSERVE out-of-process
  8.              server and to illustrate the use of a shared single COPaper
  9.              COM object in a remote server. Distributed COM (DCOM) is
  10.              used. The shared COPaper object can store its drawing data in
  11.              the structured storage of a single compound file.
  12.              The COPaper object maintains logic and data to represent a
  13.              white sheet of free-form drawing paper. The behavior is much
  14.              like other C++ scribble code samples except that the
  15.              DCOMDRAW/DCDSERVE pair are implemented using custom COM
  16.              objects, interfaces, and standard COM services. The client
  17.              mouse activity is used to draw ink lines on the paper
  18.              surface. The COPaper object keeps a memory array of the Ink
  19.              data but performs no GUI display. This DCOMDRAW (largely
  20.              within the CGuiPaper object) manages the display of the
  21.              current drawing data.
  22.              There is no GUI behavior in the server--it is all in this
  23.              client.  This client instantiates one instance of the
  24.              server's COPaper COM object and then allows the user to
  25.              use the mouse to draw lines in the client area of the
  26.              main window. If other clients are run they access the same
  27.              shared drawing even if the server requested is on a remote
  28.              machine. DCDSERVE registers its COPaper component so that
  29.              there is one shared drawing per machine.
  30.              For a comprehensive tutorial code tour of DCOMDRAW's contents
  31.              and offerings see the tutorial DCOMDRAW.HTM file. For
  32.              more specific technical details on the internal workings see
  33.              the comments dispersed throughout the DCOMDRAW source code.
  34.              For more details on the DCDSERVE.DLL that DCOMDRAW works with
  35.              see the DCDSERVE.HTM file in the main tutorial directory.
  36.   Classes:   CMainWindow.
  37.   Functions: InitApplication, WinMain
  38.   Origin:    8-23-97: atrent - Editor-inheritance from the CONCLIEN source.
  39.                [Revised]
  40. ----------------------------------------------------------------------------
  41.   This file is part of the Microsoft COM Tutorial Code Samples.
  42.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  43.   This source code is intended only as a supplement to Microsoft
  44.   Development Tools and/or on-line documentation.  See these other
  45.   materials for detailed information regarding Microsoft code samples.
  46.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  47.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  48.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  49.   PARTICULAR PURPOSE.
  50. ==========================================================================+*/
  51. /*--------------------------------------------------------------------------
  52.   We include WINDOWS.H for all Win32 applications.
  53.   We include OLE2.H because we will be calling the COM/OLE Libraries.
  54.   We include OLECTL.H because it has definitions for connectable objects.
  55.   We include INITGUID.H only once (here) in the entire app because we
  56.     will be defining GUIDs and want them as constants in the data segment.
  57.   We include COMMDLG.H because we will be using the Open File
  58.     and potentially other Common dialogs.
  59.   We include APPUTIL.H because we will be building this application using
  60.     the convenient Virtual Window and Dialog classes and other
  61.     utility functions in the APPUTIL Library (ie, APPUTIL.LIB).
  62.   We include PAPINT.H and PAPGUIDS.H for the common paper-related Interface
  63.     class, GUID, and CLSID specifications.
  64.   We include GUIPAPER.H because it has the C++ class used for GUI display
  65.     of the drawing paper.
  66.   We include DCOMDRAW.H because it has class and resource definitions
  67.     specific to this DCOMDRAW application.
  68. ---------------------------------------------------------------------------*/
  69. #include <windows.h>
  70. #include <ole2.h>
  71. #include <olectl.h>
  72. #include <initguid.h>
  73. #include <commdlg.h>
  74. #include <apputil.h>
  75. #include <papint.h>
  76. #include <papguids.h>
  77. #include "guipaper.h"
  78. #include "dcomdraw.h"
  79. // Here is a structure for storing the remote server info.
  80. COSERVERINFO g_ServerInfo;
  81. // Storage for the user entered remote machine name.
  82. TCHAR g_szMachineName[MAX_PATH] = TEXT("");
  83. OLECHAR g_wszMachineName[MAX_PATH];
  84. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  85.   Method:   CMainWindow::CMainWindow
  86.   Summary:  CMainWindow Constructor.
  87.   Args:     .
  88.   Returns:  .
  89. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  90. CMainWindow::CMainWindow()
  91. {
  92.   // Ensure these member variable strings are null strings.
  93.   m_szFileName[0] = 0;
  94.   // Fill in the Open File Name Common Dialog's OPENFILENAME structure.
  95.   m_ofnFile.lStructSize = sizeof(OPENFILENAME);
  96.   m_ofnFile.hwndOwner = m_hWnd;
  97.   m_ofnFile.hInstance = m_hInst;
  98.   m_ofnFile.lpstrFilter = TEXT(OFN_DEFAULTFILES_STR);
  99.   m_ofnFile.lpstrCustomFilter = NULL;
  100.   m_ofnFile.nMaxCustFilter = 0;
  101.   m_ofnFile.nFilterIndex = 1;
  102.   m_ofnFile.lpstrFile = m_szFileName;
  103.   m_ofnFile.nMaxFile = MAX_PATH;
  104.   m_ofnFile.lpstrInitialDir = TEXT(".");
  105.   m_ofnFile.lpstrFileTitle = m_szFileTitle;
  106.   m_ofnFile.nMaxFileTitle = MAX_PATH;
  107.   m_ofnFile.lpstrTitle = TEXT(OFN_DEFAULTTITLE_STR);
  108.   m_ofnFile.lpstrDefExt = NULL;
  109.   m_ofnFile.Flags = OFN_HIDEREADONLY;
  110.   m_pMsgBox  = NULL;
  111.   m_pGuiPaper = NULL;
  112. }
  113. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  114.   Method:   CMainWindow::~CMainWindow
  115.   Summary:  CMainWindow Destructor.  Destruction of the main window
  116.             indicates that the application should quit and thus the
  117.             PostQuitMessage API is called.
  118.   Args:     .
  119.   Returns:  .
  120. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  121. CMainWindow::~CMainWindow()
  122. {
  123.   // CMainWindow is derived from CVirWindow which traps the WM_DESTROY
  124.   // message and causes a delete of CMainWindow which in turn causes this
  125.   // destructor to run. The WM_DESTROY results when the window is destoyed
  126.   // after a close of the window. Prior to exiting the main message loop:
  127.   // We delete the CGuiPaper and CMsgBox objects that were made in
  128.   // Initinstance.
  129.   DELETE_POINTER(m_pGuiPaper);
  130.   DELETE_POINTER(m_pMsgBox);
  131.   // We then post a WM_QUIT message to cause an exit of the main
  132.   // message loop and an exit of this instance of the application.
  133.   PostQuitMessage(0);
  134. }
  135. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  136.   Method:   CMainWindow::InitInstance
  137.   Summary:  Instantiates an instance of the main application window.
  138.             This method must be called only once, immediately after
  139.             window class construction.  We take care to delete 'this'
  140.             CMainWindow if we must return the error condition FALSE.
  141.   Args:     HINSTANCE hInstance,
  142.               Handle of the application instance.
  143.             LPSTR pszCmdLine,
  144.               Pointer to the application's invocation command line.
  145.             int nCmdShow)
  146.               Command to pass to ShowWindow.
  147.   Modifies: m_szHelpFile, m_pMsgBox.
  148.   Returns:  BOOL.
  149.               TRUE if succeeded.
  150.               FALSE if failed.
  151. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  152. BOOL CMainWindow::InitInstance(
  153.        HINSTANCE hInstance,
  154.        LPSTR pszCmdLine,
  155.        int nCmdShow)
  156. {
  157.   BOOL bOk = FALSE;
  158.   HWND hWnd = NULL;
  159.   HRESULT hr = E_FAIL;
  160.   // Create the Message Box and Message Log objects.
  161.   m_pMsgBox = new CMsgBox;
  162.   // Create the CGuiPaper C++ object.
  163.   m_pGuiPaper = new CGuiPaper;
  164.   if (NULL != m_pMsgBox && NULL != m_pGuiPaper)
  165.   {
  166.     // Note, the Create method sets the m_hWnd member so we don't
  167.     // need to set it explicitly here first. Here is the create of this
  168.     // window.  Size the window reasonably. Create sets both m_hInst and
  169.     // m_hWnd. This creates the main client window.
  170.     hWnd = Create(
  171.              TEXT(MAIN_WINDOW_CLASS_NAME_STR),
  172.              TEXT(MAIN_APP_NAME_STR),
  173.              WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX
  174.                | WS_MAXIMIZEBOX | WS_THICKFRAME,
  175.              CW_USEDEFAULT,
  176.              CW_USEDEFAULT,
  177.              ::GetSystemMetrics(SM_CXSCREEN)*2/5,
  178.              ::GetSystemMetrics(SM_CYSCREEN)*2/5,
  179.              NULL,
  180.              NULL,
  181.              hInstance);
  182.     if (NULL != hWnd)
  183.     {
  184.       // Init the new GuiPaper.
  185.       bOk = m_pGuiPaper->Init(m_hInst, m_hWnd);
  186.       if (bOk)
  187.       {
  188.         // Ensure the new window is shown on screen and content
  189.         // is painted.
  190.         ::ShowWindow(m_hWnd, nCmdShow);
  191.         ::UpdateWindow(m_hWnd);
  192.         // Build a path to where the help file should be (it should be in
  193.         // the same directory as the .EXE but with the .HTM extension).
  194.         MakeFamilyPath(hInstance, m_szHelpFile, TEXT(HELP_FILE_EXT));
  195.         // Init the Message Box object.
  196.         bOk = m_pMsgBox->Init(m_hInst, m_hWnd);
  197.         // Connect the new Paper Sink in this client to receive event
  198.         // calls from a COPaper source in the server.
  199.         hr = m_pGuiPaper->ConnectPaperSink();
  200.         if (SUCCEEDED(hr))
  201.         {
  202.           // Lock the paper object for drawing by this client. Can't draw
  203.           // with mouse until doing this. Set the proper checkmark
  204.           // indicator on the menu selections as well.
  205.           hr = m_pGuiPaper->Lock(TRUE);
  206.           if (SUCCEEDED(hr))
  207.           {
  208.             // Try to load drawing data from local COPaper's compound file.
  209.             hr = m_pGuiPaper->Load();
  210.           }
  211.           else
  212.           {
  213.             // Shared drawing already loaded by another client.
  214.             // Paint this client's window with the shared drawing.
  215.             hr = m_pGuiPaper->PaintWin();
  216.           }
  217.         }
  218.       }
  219.     }
  220.   }
  221.   bOk = SUCCEEDED(hr);
  222.   if (!bOk)
  223.   {
  224.     DELETE_POINTER(m_pMsgBox);
  225.     DELETE_POINTER(m_pGuiPaper);
  226.   }
  227.   return (bOk);
  228. }
  229. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  230.   Method:   CMainWindow::DoMenu
  231.   Summary:  Dispatch and handle the main menu commands.
  232.   Args:     WPARAM wParam,
  233.               First message parameter (word sized).
  234.             LPARAM lParam)
  235.               Second message parameter (long sized).
  236.   Modifies: m_ofnFile, ...
  237.   Returns:  LRESULT
  238.               Standard Windows WindowProc return value.
  239. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  240. LRESULT CMainWindow::DoMenu(
  241.           WPARAM wParam,
  242.           LPARAM lParam)
  243. {
  244.   LRESULT lResult = FALSE;
  245.   HRESULT hr;
  246.   switch (LOWORD(wParam))
  247.   {
  248.     //----------------------------------------------------------------------
  249.     // Handle File Menu Commands.
  250.     //----------------------------------------------------------------------
  251.     case IDM_FILE_LOADREMOTE:
  252.       // Ask the user for the name of the machine where the remote
  253.       // DCDSERVE server is.
  254.       hr = m_pGuiPaper->LoadRemote();
  255.       if (FAILED(hr))
  256.         Beep(2000, 200);
  257.       break;
  258.     case IDM_FILE_LOADLOCAL:
  259.       // Ask COPaper to load the drawing from the local DCDSERVE server.
  260.       hr = m_pGuiPaper->LoadLocal();
  261.       if (FAILED(hr))
  262.         Beep(2000, 200);
  263.       break;
  264.     case IDM_FILE_SAVE:
  265.       // Ask COPaper to save the current shared drawing.
  266.       hr = E_FAIL;
  267.       if (m_pGuiPaper->Master())
  268.         hr = m_pGuiPaper->Save();
  269.       if (FAILED(hr))
  270.         Beep(2000, 200);
  271.       break;
  272.     case IDM_FILE_EXIT:
  273.       // The user commands us to exit this application so we tell the
  274.       // Main window to close itself.
  275.       ::PostMessage(m_hWnd, WM_CLOSE, 0, 0);
  276.       break;
  277.     //----------------------------------------------------------------------
  278.     // Handle Draw Menu Choice Commands.
  279.     //----------------------------------------------------------------------
  280.     case IDM_DRAW_MASTER:
  281.       // Lock the paper object for drawing by this client. Can't draw
  282.       // with mouse until doing this. This makes this client the master
  283.       // client that currently owns the drawing. Drawing activity in the
  284.       // master is echoed to any other connected slave clients.
  285.       hr = E_FAIL;
  286.       if (!m_pGuiPaper->Master())
  287.         hr = m_pGuiPaper->Lock(TRUE);
  288.       if (FAILED(hr))
  289.         Beep(2000, 200);
  290.       break;
  291.     case IDM_DRAW_SLAVE:
  292.       // Unlock the paper object for drawing by this client. This
  293.       // makes this client a slave to a separate other master client.
  294.       hr = E_FAIL;
  295.       if (m_pGuiPaper->Master())
  296.         hr = m_pGuiPaper->Lock(FALSE);
  297.       if (FAILED(hr))
  298.         Beep(2000, 200);
  299.       break;
  300.     case IDM_DRAW_REDRAW:
  301.       // Ask Paper object to redraw its current content.
  302.       m_pGuiPaper->ClearWin();
  303.       m_pGuiPaper->PaintWin();
  304.       break;
  305.     case IDM_DRAW_ERASE:
  306.       // Ask Paper object to erase its current content and if it can
  307.       // Clear drawing display window.
  308.       hr = E_FAIL;
  309.       if (m_pGuiPaper->Master())
  310.         hr = m_pGuiPaper->Erase();
  311.       if (FAILED(hr))
  312.         Beep(2000, 200);
  313.       break;
  314.     //----------------------------------------------------------------------
  315.     // Handle Pen Menu Commands.
  316.     //----------------------------------------------------------------------
  317.     case IDM_PEN_COLOR:
  318.       // Select Ink drawing color using ChooseColor common dialog.
  319.       hr = E_FAIL;
  320.       if (m_pGuiPaper->Master())
  321.       {
  322.         COLORREF crNewColor = m_pGuiPaper->PickColor();
  323.         hr = m_pGuiPaper->InkColor(crNewColor);
  324.       }
  325.       if (FAILED(hr))
  326.         Beep(2000, 200);
  327.       break;
  328.     case IDM_PEN_THIN:
  329.       // Select thin Ink width. Set menu check indicator.
  330.       hr = E_FAIL;
  331.       if (m_pGuiPaper->Master())
  332.         hr = m_pGuiPaper->InkWidth(INK_THIN);
  333.       if (FAILED(hr))
  334.         Beep(2000, 200);
  335.       break;
  336.     case IDM_PEN_MEDIUM:
  337.       // Select medium Ink width. Set menu check indicator.
  338.       hr = E_FAIL;
  339.       if (m_pGuiPaper->Master())
  340.         hr = m_pGuiPaper->InkWidth(INK_MEDIUM);
  341.       if (FAILED(hr))
  342.         Beep(2000, 200);
  343.       break;
  344.     case IDM_PEN_THICK:
  345.       // Select thick Ink width. Set menu check indicator.
  346.       hr = E_FAIL;
  347.       if (m_pGuiPaper->Master())
  348.         hr = m_pGuiPaper->InkWidth(INK_THICK);
  349.       if (FAILED(hr))
  350.         Beep(2000, 200);
  351.       break;
  352.     //----------------------------------------------------------------------
  353.     // Handle Help Menu Commands.
  354.     //----------------------------------------------------------------------
  355.     case IDM_HELP_CONTENTS:
  356.       // We have some stubbed support here for bringing up the online
  357.       // Help for this application.
  358.       ReadHelp(m_hWnd, m_szHelpFile);
  359.       break;
  360.     case IDM_HELP_TUTORIAL:
  361.       // Call the APPUTIL utility function, ReadTutorial, to Browse the HTML
  362.       // tutorial narrative file associated with this tutorial code sample.
  363.       ReadTutorial(m_hInst, m_hWnd, TEXT(HTML_FILE_EXT));
  364.       break;
  365.     case IDM_HELP_TUTSERVER:
  366.       // Call the APPUTIL utility function, ReadTutorial, to Browse the HTML
  367.       // tutorial narrative file associated with the DCDSERVE COM server.
  368.       ReadTutorial(m_hInst, m_hWnd, TEXT(SERVER_TUTFILE_STR));
  369.       break;
  370.     case IDM_HELP_TUTMARSH:
  371.       // Call the APPUTIL utility function, ReadTutorial, to Browse the HTML
  372.       // tutorial narrative file associated with the DCDMARSH COM server.
  373.       ReadTutorial(m_hInst, m_hWnd, TEXT(MARSHAL_TUTFILE_STR));
  374.       break;
  375.     case IDM_HELP_READSOURCE:
  376.       // Call the APPUTIL utility function ReadSource to allow the
  377.       // user to open and read any of the source files of DCOMDRAW.
  378.       ReadSource(m_hWnd, &m_ofnFile);
  379.       break;
  380.     case IDM_HELP_ABOUT:
  381.       {
  382.         CAboutBox dlgAboutBox;
  383.         // Show the standard About Box dialog for this EXE by telling the
  384.         // dialog C++ object to show itself by invoking its ShowDialog
  385.         // method.  Pass it this EXE instance and the parent window handle.
  386.         // Use a dialog resource ID for the dialog template stored in
  387.         // this EXE module's resources.
  388.         dlgAboutBox.ShowDialog(
  389.           m_hInst,
  390.           MAKEINTRESOURCE(IDM_HELP_ABOUT),
  391.           m_hWnd);
  392.       }
  393.       break;
  394.     default:
  395.       // Defer all messages NOT handled here to the Default Window Proc.
  396.       lResult = ::DefWindowProc(m_hWnd, WM_COMMAND, wParam, lParam);
  397.       break;
  398.   }
  399.   return(lResult);
  400. }
  401. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  402.   Method:   CDlgLoadRemote::DialogProc
  403.   Summary:  Dialog proc for the Remote Load dialog box.  This DialogProc
  404.             method definition overrides the same-named pure virtual
  405.             function in abstract base class CVirDialog thus giving unique
  406.             message dispatching behavior to this derivation of CVirDialog.
  407.             The remaining behavior of CDlgRemoteInfo is inherited from
  408.             CVirDialog and is common to all CVirDialogs.
  409.   Args:     HWND hWndDlg,
  410.               Handle to the dialog.
  411.             UINT uMsg,
  412.               Windows message to dialog.
  413.             WPARAM wParam,
  414.               First message parameter (word sized).
  415.             LPARAM lParam)
  416.               Second message parameter (long sized).
  417.   Returns:  BOOL.  TRUE if message was handled; FALSE otherwise.
  418. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  419. BOOL CDlgLoadRemote::DialogProc(
  420.        HWND hWndDlg,
  421.        UINT uMsg,
  422.        WPARAM wParam,
  423.        LPARAM lParam)
  424. {
  425.   BOOL bResult = TRUE;
  426.   HWND hCtrl = GetDlgItem(hWndDlg, IDC_EDIT_MACHINE);
  427.   switch (uMsg)
  428.   {
  429.     case WM_INITDIALOG:
  430.       SetDlgItemText(hWndDlg, IDC_EDIT_MACHINE, g_szMachineName);
  431.       SetFocus(hCtrl);
  432.       bResult = FALSE;
  433.       break;
  434.     case WM_COMMAND:
  435.       {
  436.         WORD wCmd = LOWORD(wParam);
  437.         if (wCmd == IDOK)
  438.         {
  439.           // Obtain the machine name from the edit control.
  440.           GetDlgItemText(hWndDlg, IDC_EDIT_MACHINE, g_szMachineName, MAX_PATH);
  441. #if !defined(UNICODE)
  442.           // Convert to WideChar Unicode if we are NOT compiled for Unicode.
  443.           AnsiToUc(g_szMachineName, g_wszMachineName, 0);
  444. #endif
  445.           ::EndDialog(hWndDlg, IDOK);
  446.         }
  447.         else if (wCmd == IDCANCEL)
  448.           ::EndDialog(hWndDlg, IDCANCEL);
  449.       }
  450.       break;
  451.     default:
  452.       bResult = FALSE;
  453.       break;
  454.   }
  455.   return(bResult);
  456. }
  457. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  458.   Method:   CMainWindow::WindowProc
  459.   Summary:  Main window procedure for this window object.  See CVirWindow
  460.             in the APPUTIL library (APPUTIL.CPP) for details on how this
  461.             method gets called by the global WindowProc.
  462.   Args:     UINT uMsg,
  463.               Windows message that is "sent" to this window.
  464.             WPARAM wParam,
  465.               First message parameter (word sized).
  466.             LPARAM lParam)
  467.               Second message parameter (long sized).
  468.   Returns:  LRESULT
  469.               Standard Windows WindowProc return value.
  470. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  471. LRESULT CMainWindow::WindowProc(
  472.           UINT uMsg,
  473.           WPARAM wParam,
  474.           LPARAM lParam)
  475. {
  476.   LRESULT lResult = FALSE;
  477.   switch (uMsg)
  478.   {
  479.     case WM_CREATE:
  480.       break;
  481.     case WM_ACTIVATE:
  482.       // If we were newly activated by a mouse click then don't just sit
  483.       // there--re-paint. This is needed when another window was topped
  484.       // over part of DCOMDRAW and the user then topped DCOMDRAW using
  485.       // a mouse click on the visible part of DCOMDRAW. In any case let
  486.       // the windows default WindowProc handle this message to set
  487.       // keyboard focus to the newly active window.
  488.       if (WA_CLICKACTIVE == LOWORD(wParam))
  489.         m_pGuiPaper->PaintWin();
  490.       lResult = ::DefWindowProc(m_hWnd, uMsg, wParam, lParam);
  491.       break;
  492.     case WM_MEASUREITEM:
  493.       // Get setup for painting text in this window. For later evolution.
  494.       {
  495.         LPMEASUREITEMSTRUCT lpmis = (LPMEASUREITEMSTRUCT) lParam;
  496.         lpmis->itemHeight = m_tm.tmHeight + m_tm.tmExternalLeading;
  497.         lpmis->itemWidth = m_lWidth;
  498.         lResult = TRUE;
  499.       }
  500.     case WM_SIZE:
  501.       // Handle a resize of this window.
  502.       if (m_pGuiPaper->Master())
  503.       {
  504.         m_lWidth = LOWORD(lParam);
  505.         m_lHeight = HIWORD(lParam);
  506.         // Inform CGuiPaper of the change.
  507.         m_pGuiPaper->Resize(m_lWidth, m_lHeight);
  508.       }
  509.       break;
  510.     case WM_PAINT:
  511.       // If something major happened repaint the whole window.
  512.       {
  513.         PAINTSTRUCT ps;
  514.         if(BeginPaint(m_hWnd, &ps))
  515.         {
  516.           m_pGuiPaper->PaintWin();
  517.           EndPaint(m_hWnd, &ps);
  518.         }
  519.       }
  520.       break;
  521.     case WM_LBUTTONDOWN:
  522.       // Start sequence of ink drawing to the paper.
  523.       if (m_pGuiPaper->Master())
  524.         m_pGuiPaper->InkStart(LOWORD(lParam), HIWORD(lParam));
  525.       break;
  526.     case WM_MOUSEMOVE:
  527.       // Draw inking sequence data.
  528.       if (m_pGuiPaper->Master())
  529.         m_pGuiPaper->InkDraw(LOWORD(lParam), HIWORD(lParam));
  530.       break;
  531.     case WM_LBUTTONUP:
  532.       // Stop an ink drawing sequence.
  533.       if (m_pGuiPaper->Master())
  534.         m_pGuiPaper->InkStop(LOWORD(lParam), HIWORD(lParam));
  535.       break;
  536.     case WM_COMMAND:
  537.       // Dispatch and handle any Menu command messages received.
  538.       lResult = DoMenu(wParam, lParam);
  539.       break;
  540.     case WM_CHAR:
  541.       if (wParam == 0x1b)
  542.       {
  543.         // Exit this app if user hits ESC key.
  544.         ::PostMessage(m_hWnd, WM_CLOSE, 0, 0);
  545.       }
  546.       break;
  547.     case WM_CLOSE:
  548.       // The user selected Close on the main window's System menu
  549.       // or Exit on the File menu.
  550.       // If there is ink data that has not been saved then ask user
  551.       // if it should be saved. If user cancels then cancel the exit.
  552.       if (IDCANCEL == m_pGuiPaper->AskSave())
  553.         break;
  554.     case WM_QUIT:
  555.       // If the app is being quit then close any associated help windows.
  556.     default:
  557.       // Defer all messages NOT handled above to the Default Window Proc.
  558.       lResult = ::DefWindowProc(m_hWnd, uMsg, wParam, lParam);
  559.       break;
  560.   }
  561.   return(lResult);
  562. }
  563. /*F+F++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  564.   Function: UnicodeOk
  565.   Summary:  Checks if the platform will handle unicode versions of
  566.             Win32 string API calls.
  567.   Args:     void
  568.   Returns:  BOOL
  569.               TRUE if unicode support; FALSE if not.
  570. ------------------------------------------------------------------------F-F*/
  571. BOOL UnicodeOk(void)
  572. {
  573.   BOOL bOk = TRUE;
  574.   TCHAR szUserName[MAX_STRING_LENGTH];
  575.   DWORD dwSize = MAX_STRING_LENGTH;
  576.   if (!GetUserName(szUserName, &dwSize))
  577.     bOk = ERROR_CALL_NOT_IMPLEMENTED == GetLastError() ? FALSE : TRUE;
  578.   return bOk;
  579. }
  580. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  581.   Function: InitApplication
  582.   Summary:  Initializes the application and registers its main window
  583.             class. InitApplication is called only once (in WinMain).
  584.   Args:     HINSTANCE hInstance)
  585.               Handle to the first instance of the application.
  586.   Returns:  BOOL.
  587.               TRUE if success.
  588.               FALSE if fail.
  589. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  590. BOOL InitApplication(
  591.        HINSTANCE hInstance)
  592. {
  593.   BOOL bOk;
  594.   // The window class for all instances of the main frame window.
  595.   WNDCLASSEX wcf;
  596.   // Assign the appropriate values for this main frame window class.
  597.   wcf.cbSize        = sizeof(WNDCLASSEX);
  598.   wcf.cbClsExtra    = 0;            // No per-class extra data.
  599.   wcf.cbWndExtra    = 0;            // No per-window extra data.
  600.   wcf.hInstance     = hInstance;    // Application module instance.
  601.   wcf.lpfnWndProc   = &WindowProc;  // Global Window Procedure (defined in
  602.                                     // APPUTIL for all CVirWindows).
  603.   wcf.hCursor       = NULL;                        // Load app cursor.
  604.   wcf.hIcon         = (HICON) LoadIcon(            // Load app icon.
  605.                                 hInstance,
  606.                                 TEXT("AppIcon"));
  607.   wcf.hIconSm       = (HICON) LoadImage(           // Load small icon.
  608.                                 hInstance,
  609.                                 TEXT("AppIcon"),
  610.                                 IMAGE_ICON,
  611.                                 16, 16,
  612.                                 0);
  613.   wcf.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH); // Backgnd color.
  614.   wcf.style         = CS_HREDRAW | CS_VREDRAW | CS_OWNDC; // Class style(s).
  615.   wcf.lpszClassName = TEXT(MAIN_WINDOW_CLASS_NAME_STR);   // Class name.
  616.   wcf.lpszMenuName  = TEXT(MAIN_WINDOW_CLASS_MENU_STR);   // Menu name.
  617.   // Register the window class and return FALSE if unsuccesful.
  618.   bOk = RegisterClassEx(&wcf);
  619.   // Zero the g_ServerInfo structure.
  620.   memset(&g_ServerInfo, 0, sizeof(COSERVERINFO));
  621.   // Init the remote machine name.
  622.   g_wszMachineName[0] = 0;
  623. #ifdef UNICODE
  624.   g_ServerInfo.pwszName = &g_szMachineName[0];
  625. #else
  626.   g_ServerInfo.pwszName = &g_wszMachineName[0];
  627. #endif
  628.   return (bOk);
  629. }
  630. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  631.   Function: WinMain
  632.   Summary:  The Windows main entry point function for this application.
  633.             Initializes the application, the COM Libraries, and starts
  634.             the main application message loop.
  635.   Args:     HINSTANCE hInstance,
  636.               Instance handle; a new one for each invocation of this app.
  637.             HINSTANCE hPrevInstance,
  638.               Instance handle of the previous instance. NULL in Win32.
  639.             LPSTR pszCmdLine,
  640.               Windows passes a pointer to the application's
  641.               invocation command line.
  642.             int nCmdShow)
  643.               Bits telling the show state of the application.
  644.   Returns:  int
  645.               msg.wParam (upon exit of message loop).
  646.               FALSE if this instance couldn't initialize and run.
  647. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  648. extern "C" int PASCAL WinMain(
  649.                         HINSTANCE hInstance,
  650.                         HINSTANCE hPrevInstance,
  651.                         LPSTR pszCmdLine,
  652.                         int nCmdShow)
  653. {
  654.   CMainWindow* pWin = NULL;
  655.   MSG msg;
  656.   HACCEL hAccel;
  657.   HRESULT hr;
  658.   int iRun = FALSE;
  659.   // If we were compiled for UNICODE and the platform seems OK with this
  660.   // then proceed.  Else we error and exit the app.
  661.   if (UnicodeOk())
  662.   {
  663.     // Call to initialize the COM Library.  Use the SUCCEEDED macro
  664.     // to detect success.  If fail then exit app with error message.
  665.     // Tell COM that this client process will use the Single Threaded
  666.     // Apartment model.
  667.     if (SUCCEEDED(CoInitialize(NULL)))
  668.     {
  669.       // Ensure that DCOM (Distributed COM) is installed.
  670.       if (DComOk())
  671.       {
  672.         // Initialize for Client process security. Allow COPaper to
  673.         // call back into the client (ie, the client can impersonate
  674.         // the server identity).
  675.         hr = CoInitializeSecurity(
  676.                NULL,                        //Points to security descriptor
  677.                -1,                          //Count of entries in asAuthSvc
  678.                NULL,                        //Array of names to register
  679.                NULL,                        //Reserved for future use
  680.                RPC_C_AUTHN_LEVEL_NONE,      //Default authentication level
  681.                                             // for proxies
  682.                RPC_C_IMP_LEVEL_IMPERSONATE, //Default impersonation level
  683.                                             // for proxies
  684.                NULL,                        //Reserved; must be set to NULL
  685.                EOAC_NONE,                   //Additional client or
  686.                                             // server-side capabilities
  687.                NULL);                       //Reserved for future use
  688.         if (SUCCEEDED(hr))
  689.         {
  690.           // If we succeeded in initializing the COM Library we proceed to
  691.           // initialize the application.  If we can't init the application
  692.           // then we signal shut down with an error message exit.
  693.           iRun = InitApplication(hInstance);
  694.           if (iRun)
  695.           {
  696.             // Assume we'll set iRun to TRUE when initialization is done.
  697.             iRun = FALSE;
  698.             // We are still go for running so we try to create a nifty new
  699.             // CMainWindow object for this app instance.
  700.             pWin = new CMainWindow;
  701.             if (NULL != pWin)
  702.             {
  703.               // Now we initialize an instance of the new CMainWindow.
  704.               // This includes creating the main window.
  705.               if (pWin->InitInstance(hInstance, pszCmdLine, nCmdShow))
  706.               {
  707.                 // Load the keyboard accelerators from the resources.
  708.                 hAccel = LoadAccelerators(hInstance, TEXT("AppAccel"));
  709.                 if (NULL != hAccel)
  710.                 {
  711.                   // Signal App Initialization is successfully done.
  712.                   iRun = TRUE;
  713.                 }
  714.               }
  715.             }
  716.           }
  717.         }
  718.         if (iRun)
  719.         {
  720.           // If we initialized the app instance properly then we are still
  721.           // go for running.  We then start up the main message pump for
  722.           // the application.
  723.           while (GetMessage(&msg, NULL, 0, 0))
  724.           {
  725.             if (!TranslateAccelerator(pWin->GetHwnd(), hAccel, &msg))
  726.             {
  727.               TranslateMessage(&msg);
  728.               DispatchMessage(&msg);
  729.             }
  730.           }
  731.           // We also ask COM to unload any unused COM Servers, including our
  732.           // friend, DCDSERVE.
  733.           CoFreeUnusedLibraries();
  734.           // We'll pass to Windows the reason why we exited the message loop.
  735.           iRun = msg.wParam;
  736.         }
  737.         else
  738.         {
  739.           // We failed to initialize the application. Put up error message
  740.           // box saying that application couldn't be initialized.  Parent
  741.           // window is desktop (ie, NULL). Exit the failed application
  742.           // (ie, by returning FALSE to WinMain).
  743.           ErrorBox(hInstance, NULL, IDS_APPINITFAILED);
  744.           // Delete the CMainWindow object.
  745.           DELETE_POINTER(pWin);
  746.         }
  747.         // We're exiting this app (either normally or by init failure) so
  748.         // shut down the COM Library.
  749.         CoUninitialize();
  750.       }
  751.       else
  752.       {
  753.         // If DCOM isn't installed then indicate an error
  754.         // and exit the app immediately.
  755.         ErrorBox(hInstance, NULL, IDS_NODCOM);
  756.       }
  757.     }
  758.     else
  759.     {
  760.       // We failed to Initialize the COM Library. Put up error message
  761.       // box saying that COM Library couldn't be initialized.  Parent
  762.       // window is desktop (ie, NULL). Exit the failed application
  763.       // (ie, by returning FALSE to WinMain).
  764.       ErrorBox(hInstance, NULL, IDS_COMINITFAILED);
  765.     }
  766.   }
  767.   else
  768.   {
  769.     // If we were compiled for UNICODE but the platform has problems with
  770.     // this then indicate an error and exit the app immediately.
  771.     CHAR szMsg[MAX_STRING_LENGTH];
  772.     if (LoadStringA(
  773.           hInstance,
  774.           IDS_NOUNICODE,
  775.           szMsg,
  776.           MAX_STRING_LENGTH))
  777.     {
  778.       MessageBoxA(
  779.         NULL,
  780.         szMsg,
  781.         ERROR_TITLE_STR,
  782.         MB_OK | MB_ICONEXCLAMATION);
  783.     }
  784.   }
  785.   return iRun;
  786. }