home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / oleaut / spoly / cpoint.h < prev    next >
C/C++ Source or Header  |  1997-10-05  |  3KB  |  133 lines

  1. /*** 
  2. *cpoint.h
  3. *
  4. *  This is a part of the Microsoft Source Code Samples.
  5. *
  6. *  Copyright (C) 1992-1997 Microsoft Corporation. All rights reserved.
  7. *
  8. *  This source code is only intended as a supplement to Microsoft Development
  9. *  Tools and/or WinHelp documentation.  See these sources for detailed
  10. *  information regarding the Microsoft samples programs.
  11. *
  12. *Purpose:
  13. *  Definition of the CPoint class.
  14. *
  15. *  The CPoint object exposes two properties for programatic access
  16. *  via the IDispatch interface.
  17. *
  18. *  properties:
  19. *    X             - the 'x' coordinate of the point
  20. *    Y             - the 'y' coordinate of the point
  21. *
  22. *Implementation Notes:
  23. *
  24. *****************************************************************************/
  25.  
  26. #ifndef    CLASS
  27. #ifdef    __TURBOC__
  28. #define CLASS class huge
  29. #else
  30. #define CLASS class FAR
  31. #endif
  32. #endif
  33.  
  34. class CPoly;
  35.  
  36. CLASS CPoint : public IDispatch {
  37.     friend class CPoly;
  38.  
  39. public:
  40.     static CPoint FAR* Create();
  41.  
  42.     /* IUnknown methods */
  43.     STDMETHOD(QueryInterface)(REFIID riid, void FAR* FAR* ppvObj);
  44.     STDMETHOD_(unsigned long, AddRef)(void);
  45.     STDMETHOD_(unsigned long, Release)(void);
  46.  
  47.     /* IDispatch methods */
  48.     STDMETHOD(GetTypeInfoCount)(unsigned int FAR* pcTypeInfo);
  49.  
  50.     STDMETHOD(GetTypeInfo)(
  51.       unsigned int iTypeInfo,
  52.       LCID lcid,
  53.       ITypeInfo FAR* FAR* ppTypeInfo);
  54.  
  55.     STDMETHOD(GetIDsOfNames)(
  56.       REFIID riid,
  57.       OLECHAR FAR* FAR* rgszNames,
  58.       unsigned int cNames,
  59.       LCID lcid,
  60.       DISPID FAR* rgdispid);
  61.  
  62.     STDMETHOD(Invoke)(
  63.       DISPID dispidMember,
  64.       REFIID riid,
  65.       LCID lcid,
  66.       unsigned short wFlags,
  67.       DISPPARAMS FAR* pdispparams,
  68.       VARIANT FAR* pvarResult,
  69.       EXCEPINFO FAR* pexcepinfo,
  70.       unsigned int FAR* pwArgErr);
  71.  
  72.     /* Introduced methods */
  73.  
  74.     virtual short PASCAL GetX(void);
  75.     virtual void  PASCAL SetX(short x);
  76.     virtual short PASCAL GetY(void);
  77.     virtual void  PASCAL SetY(short y);
  78.  
  79. private:
  80.     CPoint();
  81.  
  82.     unsigned long m_refs;
  83.  
  84.     short m_x;
  85.     short m_y;
  86. };
  87.  
  88.  
  89. // member DISPIDs
  90. //
  91. enum IDMEMBER_CPOINT {
  92.     IDMEMBER_CPOINT_GETX = 1,
  93.     IDMEMBER_CPOINT_SETX,
  94.     IDMEMBER_CPOINT_GETY,
  95.     IDMEMBER_CPOINT_SETY,
  96.     IDMEMBER_CPOINT_MAX
  97. };
  98.  
  99. // structure used to link together lists of points
  100. //
  101. struct POINTLINK {
  102.     POINTLINK FAR* next;
  103.     CPoint FAR* ppoint;
  104. };
  105.  
  106.  
  107. // The CPoint Class Factory
  108. //
  109. CLASS CPointCF : public IClassFactory
  110. {
  111. public:
  112.     static IClassFactory FAR* Create();
  113.  
  114.     /* IUnknown methods */
  115.     STDMETHOD(QueryInterface)(REFIID iid, void FAR* FAR* ppv);
  116.     STDMETHOD_(unsigned long, AddRef)(void);
  117.     STDMETHOD_(unsigned long, Release)(void);
  118.  
  119.     /* IClassFactory methods */
  120.     STDMETHOD(CreateInstance)(
  121.       IUnknown FAR* pUnkOuter, REFIID iid, void FAR* FAR* ppv);
  122. #ifdef _MAC
  123.     STDMETHOD(LockServer)(unsigned long fLock);
  124. #else
  125.     STDMETHOD(LockServer)(BOOL fLock);
  126. #endif
  127.  
  128. private:
  129.     CPointCF();
  130.  
  131.     unsigned long m_refs;
  132. };
  133.