GraphView.odl
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. // GraphView.odl : type library source for ActiveX Control project.
  2. // This file will be processed by the Make Type Library (mktyplib) tool to
  3. // produce the type library (GraphView.tlb) that will become a resource in
  4. // GraphView.ocx.
  5. #include <olectl.h>
  6. #include <idispids.h>
  7. [ uuid(1BF106B1-1059-4589-8234-125ADA961CFC), version(1.0),
  8.   helpfile("GraphView.hlp"),
  9.   helpstring("GraphView ActiveX Control module"),
  10.   control ]
  11. library GRAPHVIEWLib
  12. {
  13. importlib(STDOLE_TLB);
  14. importlib(STDTYPE_TLB);
  15. //  Primary dispatch interface for CGraphViewCtrl
  16. [ uuid(B2C79461-51B8-4EEB-8E89-8BF8DC83DA60),
  17.   helpstring("Dispatch interface for GraphView Control"), hidden ]
  18. dispinterface _DGraphView
  19. {
  20. properties:
  21. // NOTE - ClassWizard will maintain property information here.
  22. //    Use extreme caution when editing this section.
  23. //{{AFX_ODL_PROP(CGraphViewCtrl)
  24. [id(1)] OLE_COLOR ForeColor;
  25. [id(2)] long LineType;
  26. [id(3)] long LineWidth;
  27. [id(4)] OLE_COLOR BackColor;
  28. //}}AFX_ODL_PROP
  29. methods:
  30. // NOTE - ClassWizard will maintain method information here.
  31. //    Use extreme caution when editing this section.
  32. //{{AFX_ODL_METHOD(CGraphViewCtrl)
  33. [id(5)] void Clear();
  34. [id(6)] void SetScale(double x1, double y1, double x2, double y2);
  35. [id(7)] void LineTo(double x, double y);
  36. [id(8)] void MoveTo(double x, double y);
  37. [id(9)] void Multiline(long segments, double* xi, double* yi);
  38. [id(10)] void DrawLine(double x1, double y1, double x2, double y2);
  39. //}}AFX_ODL_METHOD
  40. };
  41. //  Event dispatch interface for CGraphViewCtrl
  42. [ uuid(2E5C7806-20F7-493A-AD4C-FDF6B7B025D4),
  43.   helpstring("Event interface for GraphView Control") ]
  44. dispinterface _DGraphViewEvents
  45. {
  46. properties:
  47. //  Event interface has no properties
  48. methods:
  49. // NOTE - ClassWizard will maintain event information here.
  50. //    Use extreme caution when editing this section.
  51. //{{AFX_ODL_EVENT(CGraphViewCtrl)
  52. //}}AFX_ODL_EVENT
  53. };
  54. //  Class information for CGraphViewCtrl
  55. [ uuid(37573B5E-2A9A-4686-9CB7-8D2611C49272),
  56.   helpstring("GraphView Control"), control ]
  57. coclass GraphView
  58. {
  59. [default] dispinterface _DGraphView;
  60. [default, source] dispinterface _DGraphViewEvents;
  61. };
  62. //{{AFX_APPEND_ODL}}
  63. //}}AFX_APPEND_ODL}}
  64. };