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

Windows编程

开发平台:

Visual C++

  1. // circ3.odl : type library source for OLE Custom Control project.
  2. // This file will be processed by the Make Type Library (mktyplib) tool to
  3. // produce the type library (circ3.tlb) that will become a resource in
  4. // circ3.ocx.
  5. // This is a part of the Microsoft Foundation Classes C++ library.
  6. // Copyright (C) 1992-1997 Microsoft Corporation
  7. // All rights reserved.
  8. //
  9. // This source code is only intended as a supplement to the
  10. // Microsoft Foundation Classes Reference and the
  11. // Books Online documentation provided with the library.
  12. // See these sources for detailed information regarding the
  13. // Microsoft Foundation Classes product.
  14. #include <olectl.h>
  15. [ uuid(9DBAFCD2-592F-101B-85CE-00608CEC297B), version(1.0),
  16.   helpstring("Circ3 OLE Custom Control module"), control ]
  17. library Circ3Lib
  18. {
  19. importlib(STDOLE_TLB);
  20. importlib(STDTYPE_TLB);
  21. //  Primary dispatch interface for CCirc3Ctrl
  22. [ uuid(9DBAFCD0-592F-101B-85CE-00608CEC297B),
  23.   helpstring("Dispatch interface for Circ3 Control"), hidden ]
  24. dispinterface _DCirc3
  25. {
  26. properties:
  27. // NOTE - ClassWizard will maintain property information here.
  28. //    Use extreme caution when editing this section.
  29. //{{AFX_ODL_PROP(CCirc3Ctrl)
  30. [id(DISPID_BACKCOLOR), bindable, requestedit] OLE_COLOR BackColor;
  31. [id(2)] boolean CircleShape;
  32. [id(3)] short CircleOffset;
  33. [id(1)] OLE_COLOR FlashColor;
  34. [id(DISPID_CAPTION), bindable, requestedit] BSTR Caption;
  35. [id(DISPID_FONT), bindable] IFontDisp* Font;
  36. [id(DISPID_FORECOLOR), bindable, requestedit] OLE_COLOR ForeColor;
  37. [id(4), bindable] BSTR Note;
  38. //}}AFX_ODL_PROP
  39. methods:
  40. // NOTE - ClassWizard will maintain method information here.
  41. //    Use extreme caution when editing this section.
  42. //{{AFX_ODL_METHOD(CCirc3Ctrl)
  43. //}}AFX_ODL_METHOD
  44. [id(DISPID_ABOUTBOX)] void AboutBox();
  45. };
  46. //  Event dispatch interface for CCirc3Ctrl
  47. [ uuid(9DBAFCD1-592F-101B-85CE-00608CEC297B),
  48.   helpstring("Event interface for Circ3 Control") ]
  49. dispinterface _DCirc3Events
  50. {
  51. properties:
  52. //  Event interface has no properties
  53. methods:
  54. // NOTE - ClassWizard will maintain event information here.
  55. //    Use extreme caution when editing this section.
  56. //{{AFX_ODL_EVENT(CCirc3Ctrl)
  57. [id(1)] void ClickIn(OLE_XPOS_PIXELS x, OLE_YPOS_PIXELS y);
  58. [id(2)] void ClickOut();
  59. //}}AFX_ODL_EVENT
  60. };
  61. //  Class information for CCirc3Ctrl
  62. [ uuid(9DBAFCCF-592F-101B-85CE-00608CEC297B),
  63.   helpstring("Circ3 Control"), control ]
  64. coclass Circ3
  65. {
  66. [default] dispinterface _DCirc3;
  67. [default, source] dispinterface _DCirc3Events;
  68. };
  69. //{{AFX_APPEND_ODL}}
  70. };