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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      CONNECT.H
  3.   Summary:   Include file declaring COM object classes and constants for
  4.              managing the connection points (and their connections)
  5.              exposed by the connectable objects in the PERTEXT server.
  6.              For a comprehensive tutorial code tour of this module's
  7.              contents and offerings see the tutorial PERTEXT.HTM
  8.              file. For more specific technical details on the internal
  9.              workings see the comments dispersed throughout the module's
  10.              source code.
  11.   Functions: .
  12.   Classes:   COEnumConnectionPoints, COConnectionPoint, and
  13.              COEnumConnections.
  14.   Origin:    5-20-97: atrent - Editor inheritance from the STOSERVE COM
  15.              Tutorial Code Sample. Very little change was required.
  16. ----------------------------------------------------------------------------
  17.   This file is part of the Microsoft COM Tutorial Code Samples.
  18.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  19.   This source code is intended only as a supplement to Microsoft
  20.   Development Tools and/or on-line documentation.  See these other
  21.   materials for detailed information regarding Microsoft code samples.
  22.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  23.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  24.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  25.   PARTICULAR PURPOSE.
  26. ==========================================================================+*/
  27. #if !defined(CONNECT_H)
  28. #define CONNECT_H
  29. #ifdef __cplusplus
  30. // An enumeration giving symbol names for the connection
  31. // points offered by the TextPage component in this server.
  32. enum
  33. {
  34.   CONNPOINT_TEXTPAGESINK = 0
  35. };
  36. enum
  37. {
  38.   // The maximum number of connection points offered by the TextPage
  39.   // component in this PERTEXT server.  The number of items in the
  40.   // connection point enumeration above.
  41.   MAX_CONNECTION_POINTS = 1,
  42.   // A constant for the number of connections to add to the allocation
  43.   // of the dynamic connection array.
  44.   ALLOC_CONNECTIONS = 8,
  45.   // The start value for the connection key (cookie) counter.
  46.   COOKIE_START_VALUE = 700
  47. };
  48. /*O+O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O
  49.   ObjectClass: COEnumConnectionPoints
  50.   Summary:     COM object class for enumerating the Connection Points
  51.                offered by a connectable object.
  52.   Interfaces:  IUnknown
  53.                  Standard interface providing COM object features.
  54.                IEnumConnectionPoints
  55.                  Interface for connection point enumeration.
  56.   Aggregation: COEnumConnectionPoints COM Objects are not aggregatable.
  57. O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O-O*/
  58. class COEnumConnectionPoints : public IEnumConnectionPoints
  59. {
  60.   public:
  61.     // Main Object Constructor & Destructor.
  62.     COEnumConnectionPoints(IUnknown* pHostObj);
  63.     ~COEnumConnectionPoints(void);
  64.     // A general method for initializing this newly created object.
  65.     // Creates any subordinate arrays, structures, or objects.
  66.     HRESULT Init(
  67.               ULONG cConnPts,
  68.               IConnectionPoint** paConnPts,
  69.               ULONG iEnumIndex);
  70.     // IUnknown methods. Main object, non-delegating.
  71.     STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  72.     STDMETHODIMP_(ULONG) AddRef(void);
  73.     STDMETHODIMP_(ULONG) Release(void);
  74.     // IEnumConnectionPoints methods.
  75.     STDMETHODIMP         Next(ULONG, IConnectionPoint**, ULONG*);
  76.     STDMETHODIMP         Skip(ULONG);
  77.     STDMETHODIMP         Reset(void);
  78.     STDMETHODIMP         Clone(IEnumConnectionPoints**);
  79.   private:
  80.     // Private data of COEnumConnectionPoints COM objects.
  81.     // Main Object reference count.
  82.     ULONG              m_cRefs;
  83.     // IUnknown pointer to host COM object being enumerated.
  84.     IUnknown*          m_pHostObj;
  85.     // Connection Point index variable.
  86.     ULONG              m_iEnumIndex;
  87.     // Number of Connection Points being enumerated.
  88.     ULONG              m_cConnPts;
  89.     // Allocated array of Connection Point interface pointers.
  90.     IConnectionPoint** m_paConnPts;
  91. };
  92. /*O+O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O
  93.   ObjectClass: COConnectionPoint
  94.   Summary:     Connection Point COM object class. Implements a native
  95.                IConnectionPoint interface.
  96.   Interfaces:  IUnknown
  97.                  Standard interface providing COM object features.
  98.                IConnectionPoint
  99.                  Interface for connection point features.
  100.   Aggregation: COConnectionPoint COM Objects are not aggregatable.
  101. O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O-O*/
  102. class COConnectionPoint : public IConnectionPoint
  103. {
  104.   public:
  105.     // Main Object Constructor & Destructor.
  106.     COConnectionPoint(IUnknown* pHostObj);
  107.     ~COConnectionPoint(void);
  108.     // A general method for initializing this newly created object.
  109.     // Creates any subordinate arrays, structures, or objects.
  110.     HRESULT Init(REFIID riid);
  111.     // IUnknown methods. Main object, non-delegating.
  112.     STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  113.     STDMETHODIMP_(ULONG) AddRef(void);
  114.     STDMETHODIMP_(ULONG) Release(void);
  115.     // IConnectionPoint methods.
  116.     STDMETHODIMP GetConnectionInterface(IID*);
  117.     STDMETHODIMP GetConnectionPointContainer(IConnectionPointContainer**);
  118.     STDMETHODIMP Advise(IUnknown*, DWORD*);
  119.     STDMETHODIMP Unadvise(DWORD);
  120.     STDMETHODIMP EnumConnections(IEnumConnections**);
  121.   private:
  122.     // Private utility methods of COConnectionPoint.
  123.     HRESULT GetSlot(UINT* puiFreeSlot);
  124.     HRESULT FindSlot(DWORD dwCookie, UINT* puiSlot);
  125.     // Private data of COConnectionPoint COM objects.
  126.     // Main Object reference count.
  127.     ULONG          m_cRefs;
  128.     // IUnknown pointer to host COM object offering this connection point.
  129.     IUnknown*      m_pHostObj;
  130.     // The IID of the sink interface associated with this connection point.
  131.     IID            m_iidSink;
  132.     // The current connection cookie (key) counter.
  133.     DWORD          m_dwNextCookie;
  134.     // The current number of live sink connections to this connection point.
  135.     UINT           m_cConnections;
  136.     // The current maximum index into the dynamic connection array.
  137.     UINT           m_uiMaxIndex;
  138.     // The dynamic array of sink connections to this connection point.
  139.     CONNECTDATA*   m_paConnections;
  140. };
  141. /*O+O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O
  142.   ObjectClass: COEnumConnections
  143.   Summary:     COM object class for enumerating the connections of a
  144.                connection point of a connectable object.
  145.   Interfaces:  IUnknown
  146.                  Standard interface providing COM object features.
  147.                IEnumConnections
  148.                  Interface for connection enumeration features.
  149.   Aggregation: COEnumConnections COM Objects are not aggregatable.
  150. O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O-O*/
  151. class COEnumConnections : public IEnumConnections
  152. {
  153.   public:
  154.     // Main Object Constructor & Destructor.
  155.     COEnumConnections(IUnknown* pHostObj);
  156.     ~COEnumConnections(void);
  157.     // A general method for initializing this newly created object.
  158.     // Creates any subordinate arrays, structures, or objects.
  159.     HRESULT Init(
  160.               ULONG cConnections,
  161.               CONNECTDATA* paConnections,
  162.               ULONG iEnumIndex);
  163.     // IUnknown methods. Main object, non-delegating.
  164.     STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  165.     STDMETHODIMP_(ULONG) AddRef(void);
  166.     STDMETHODIMP_(ULONG) Release(void);
  167.     // IEnumConnections methods.
  168.     STDMETHODIMP         Next(ULONG, CONNECTDATA*, ULONG*);
  169.     STDMETHODIMP         Skip(ULONG);
  170.     STDMETHODIMP         Reset(void);
  171.     STDMETHODIMP         Clone(IEnumConnections**);
  172.   private:
  173.     // Private data of COEnumConnections COM objects.
  174.     // Main Object reference count.
  175.     ULONG            m_cRefs;
  176.     // IUnknown pointer to host connection point COM object being
  177.     // enumerated.
  178.     IUnknown*        m_pHostObj;
  179.     // Connection index variable.
  180.     ULONG            m_iEnumIndex;
  181.     // Number of Connections being enumerated.
  182.     ULONG            m_cConnections;
  183.     // Allocated array of live Connections only.
  184.     CONNECTDATA*     m_paConnections;
  185. };
  186. #endif // __cplusplus
  187. #endif // CONNECT_H