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

Windows编程

开发平台:

Visual C++

  1. /*** 
  2. *cpoly.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 CPoly class.
  14. *
  15. *  The CPoly class defines a number of methods and exposes them for
  16. *  external programmability via IDispatch,
  17. *
  18. *  methods:
  19. *    DRAW - draw the polygon
  20. *    RESET - delete all points from the polygon
  21. *
  22. *    ADDPOINT(X, Y) - add a point with coordinates (x,y) to the polygon
  23. *
  24. *    ENUMPOINTS - return a collection of the polygon's points
  25. *
  26. *    GETXORIGIN - get and set the X origin of the polygon
  27. *    SETXORIGIN
  28. *
  29. *    GETYORIGIN - get and set the Y origin of the polygon
  30. *    SETYORIGIN
  31. *
  32. *    GETWIDTH - get and set the line width of the polygon
  33. *    SETWIDTH
  34. *
  35. *  UNDONE: update description
  36. *
  37. *Implementation Notes:
  38. *
  39. *****************************************************************************/
  40. #ifndef CLASS
  41. # ifdef __TURBOC__
  42. #  define CLASS class huge
  43. # else
  44. #  define CLASS class FAR
  45. # endif
  46. #endif
  47. class CPoint;
  48. CLASS CPoly : public IDispatch
  49. {
  50. public:
  51.     static CPoly FAR* Create();
  52.     /* IUnknown methods */
  53.     STDMETHOD(QueryInterface)(REFIID riid, void FAR* FAR* ppvObj);
  54.     STDMETHOD_(unsigned long, AddRef)(void);
  55.     STDMETHOD_(unsigned long, Release)(void);
  56.     /* IDispatch methods */
  57.     STDMETHOD(GetTypeInfoCount)(unsigned int FAR* pcTypeInfo);
  58.     STDMETHOD(GetTypeInfo)(
  59.       unsigned int iTypeInfo,
  60.       LCID lcid,
  61.       ITypeInfo FAR* FAR* ppTypeInfo);
  62.     STDMETHOD(GetIDsOfNames)(
  63.       REFIID riid,
  64.       OLECHAR FAR* FAR* rgszNames,
  65.       unsigned int cNames,
  66.       LCID lcid,
  67.       DISPID FAR* rgdispid);
  68.     STDMETHOD(Invoke)(
  69.       DISPID dispidMember,
  70.       REFIID riid,
  71.       LCID lcid,
  72.       unsigned short wFlags,
  73.       DISPPARAMS FAR* pdispparams,
  74.       VARIANT FAR* pvarResult,
  75.       EXCEPINFO FAR* pexcepinfo,
  76.       unsigned int FAR* puArgErr);
  77.     /* Introduced methods */
  78.     virtual void PASCAL Draw(void);
  79.     virtual void PASCAL Reset(void);
  80.     // add a point with the given 'x' and 'y' coordinates
  81.     virtual HRESULT PASCAL AddPoint(short x, short y);
  82.     // return a collection of the polygon's points
  83.     virtual HRESULT PASCAL EnumPoints(IEnumVARIANT FAR* FAR* ppenum);
  84.     // get/set the polygon's X origin property
  85.     virtual short PASCAL GetXOrigin(void);
  86.     virtual void  PASCAL SetXOrigin(short x);
  87.     // get/set the polygon's Y origin property
  88.     virtual short PASCAL GetYOrigin(void);
  89.     virtual void  PASCAL SetYOrigin(short y);
  90.     virtual short PASCAL GetWidth(void);
  91.     virtual void  PASCAL SetWidth(short width);
  92.     virtual short PASCAL get_red(void);
  93.     virtual void  PASCAL set_red(short red);
  94.     virtual short PASCAL get_green(void);
  95.     virtual void  PASCAL set_green(short green);
  96.     virtual short PASCAL get_blue(void);
  97.     virtual void  PASCAL set_blue(short blue);
  98.     // Debug method
  99.     virtual void  PASCAL Dump(void);
  100.     virtual void  PASCAL Quit(void);
  101. public: 
  102.     // Draw all polygons.
  103.     static void PolyDraw(void);
  104.     // Release all polygons.
  105.     static void PolyTerm(void);
  106.     // Dump all polygons to dbwin.
  107.     static void PolyDump(void);
  108. private:
  109.     CPoly();
  110.     short m_xorg;
  111.     short m_yorg;
  112.     short m_width;
  113.     short m_red;
  114.     short m_green;
  115.     short m_blue;
  116.     unsigned long m_refs;
  117.     unsigned int m_cPoints;
  118.     POINTLINK FAR* m_ppointlink;
  119.     POINTLINK FAR* m_ppointlinkLast;
  120. };
  121. // DISPIDs for the members and properties available via IDispatch.
  122. //
  123. enum IDMEMBER_CPOLY {
  124.     IDMEMBER_CPOLY_DRAW = 1,
  125.     IDMEMBER_CPOLY_RESET,
  126.     IDMEMBER_CPOLY_ADDPOINT,
  127.     IDMEMBER_CPOLY_ENUMPOINTS,
  128.     IDMEMBER_CPOLY_GETXORIGIN,
  129.     IDMEMBER_CPOLY_SETXORIGIN,
  130.     IDMEMBER_CPOLY_GETYORIGIN,
  131.     IDMEMBER_CPOLY_SETYORIGIN,
  132.     IDMEMBER_CPOLY_GETWIDTH,
  133.     IDMEMBER_CPOLY_SETWIDTH,
  134.     IDMEMBER_CPOLY_GETRED,
  135.     IDMEMBER_CPOLY_SETRED,
  136.     IDMEMBER_CPOLY_GETGREEN,
  137.     IDMEMBER_CPOLY_SETGREEN,
  138.     IDMEMBER_CPOLY_GETBLUE,
  139.     IDMEMBER_CPOLY_SETBLUE,
  140.     IDMEMBER_CPOLY_DUMP,
  141.     IDMEMBER_CPOLY_QUIT,
  142.     IDMEMBER_CPOLY_MAX
  143. };
  144. // structure used to link together polygons
  145. //
  146. struct POLYLINK {
  147.     POLYLINK FAR* next;
  148.     CPoly FAR* ppoly;
  149. };
  150. // The CPoly class factory
  151. //
  152. CLASS CPolyCF : public IClassFactory
  153. {
  154. public:
  155.     static IClassFactory FAR* Create();
  156.     /* IUnknown methods */
  157.     STDMETHOD(QueryInterface)(REFIID riid, void FAR* FAR* ppv);
  158.     STDMETHOD_(unsigned long, AddRef)(void);
  159.     STDMETHOD_(unsigned long, Release)(void);
  160.     /* IClassFactory methods */
  161.     STDMETHOD(CreateInstance)(
  162.       IUnknown FAR* pUnkOuter, REFIID riid, void FAR* FAR* ppv);
  163. #ifdef _MAC
  164.     STDMETHOD(LockServer)(unsigned long fLock);
  165. #else
  166.     STDMETHOD(LockServer)(BOOL fLock);
  167. #endif
  168. private:
  169.     CPolyCF();
  170.     unsigned long m_refs;
  171. };