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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      SINK.H
  3.   Summary:   Include file for the COPaperSink COM object class.
  4.              COPaperSink offers a main IUnknown interface and the custom
  5.              IPaperSink interface (outgoing connection events from COPaper
  6.              drawing paper objects). This multiple interface COM Object
  7.              Class is achieved via the technique of nested classes.  The
  8.              implementation of the IPaperSink interface is nested inside
  9.              of the COPaperSink Class.
  10.              For a comprehensive tutorial code tour of this module's
  11.              contents and offerings see the tutorial STOCLIEN.HTM
  12.              file. For more specific technical details on the internal
  13.              workings see the comments dispersed throughout the module's
  14.              source code.
  15.   Functions: .
  16.   Classes:   COPaperSink.
  17.   Origin:    6-10-96: atrent - Editor-inheritance from BALL.H in the
  18.              CONSERVE Tutorial Code Sample.
  19. ----------------------------------------------------------------------------
  20.   This file is part of the Microsoft COM Tutorial Code Samples.
  21.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  22.   This source code is intended only as a supplement to Microsoft
  23.   Development Tools and/or on-line documentation.  See these other
  24.   materials for detailed information regarding Microsoft code samples.
  25.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  26.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  27.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  28.   PARTICULAR PURPOSE.
  29. ==========================================================================+*/
  30. #if !defined(SINK_H)
  31. #define SINK_H
  32. #ifdef __cplusplus
  33. /*O+O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O
  34.   ObjectClass: COPaperSink
  35.   Summary:     The main Sink COM object class for COPaperSink COM objects.
  36.                COM objects of this class offer the IPaperSink sink
  37.                interface supporting various drawing paper events. The
  38.                mulitple interfaces on this COM object are constructed via
  39.                the nested interface classes technique.
  40.   Interfaces:  IUnknown
  41.                  Standard interface providing COM object features.
  42.                IPaperSink
  43.                  Sink interface for Paper events.
  44.   Aggregation: Yes, COPaperSink COM Objects are aggregatable by passing
  45.                a non-NULL pUnkOuter IUnknown pointer into the constructor.
  46. O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O-O*/
  47. class COPaperSink : public IUnknown
  48. {
  49.   public:
  50.     // Main Object Constructor & Destructor.
  51.     COPaperSink(IUnknown* pUnkOuter, CGuiPaper* pGuiPaper);
  52.     ~COPaperSink(void);
  53.     // IUnknown methods. Main object, non-delegating.
  54.     STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  55.     STDMETHODIMP_(ULONG) AddRef(void);
  56.     STDMETHODIMP_(ULONG) Release(void);
  57.   private:
  58.     // We declare nested class interface implementations here.
  59.     class CImpIPaperSink : public IPaperSink
  60.     {
  61.       public:
  62.         // Interface Implementation Constructor & Destructor.
  63.         CImpIPaperSink(COPaperSink* pBackObj, IUnknown* pUnkOuter);
  64.         ~CImpIPaperSink(void);
  65.         // IUnknown methods.
  66.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  67.         STDMETHODIMP_(ULONG) AddRef(void);
  68.         STDMETHODIMP_(ULONG) Release(void);
  69.         // IPaperSink methods.
  70.         STDMETHODIMP         Locked(void);
  71.         STDMETHODIMP         Unlocked(void);
  72.         STDMETHODIMP         Loaded(void);
  73.         STDMETHODIMP         Saved(void);
  74.         STDMETHODIMP         InkStart(
  75.                                SHORT nX,
  76.                                SHORT nY,
  77.                                SHORT nWidth,
  78.                                COLORREF crInkColor);
  79.         STDMETHODIMP         InkDraw(
  80.                                SHORT nX,
  81.                                SHORT nY);
  82.         STDMETHODIMP         InkStop(
  83.                                SHORT nX,
  84.                                SHORT nY);
  85.         STDMETHODIMP         Erased(void);
  86.         STDMETHODIMP         Resized(SHORT nWidth, SHORT nHeight);
  87.       private:
  88.         // Data private to this interface implementation of IPaper.
  89.         COPaperSink* m_pBackObj;     // Parent Object back pointer.
  90.         IUnknown*    m_pUnkOuter;    // Outer unknown for Delegation.
  91.     };
  92.     // Make the otherwise private and nested IPaperSink interface
  93.     // implementation a friend to COM object instantiations of this
  94.     // COPaperSink COM object class.
  95.     friend CImpIPaperSink;
  96.     // Private data of COPaperSink COM objects.
  97.     // Nested IPaperSink implementation instantiation.  This IPaperSink
  98.     // interface is instantiated inside this COPaperSink object as a
  99.     // native interface.
  100.     CImpIPaperSink   m_ImpIPaperSink;
  101.     // Main Object reference count.
  102.     ULONG            m_cRefs;
  103.     // Outer unknown (aggregation delegation). Used when this COM object
  104.     // is being aggregated.
  105.     IUnknown*        m_pUnkOuter;
  106.     // Pointer to the main object that can service the Sink events.
  107.     CGuiPaper*       m_pGuiPaper;
  108. };
  109. typedef COPaperSink* PCOPaperSink;
  110. #endif // __cplusplus
  111. #endif // SINK_H