home *** CD-ROM | disk | FTP | other *** search
/ Building OCXs / Building_OCXs_Que_1995.iso / code / ch04 / quote.odl < prev    next >
Text File  |  1994-12-18  |  2KB  |  72 lines

  1. // quote.odl : type library source for OLE Custom Control project.
  2.  
  3. // This file will be processed by the Make Type Library (mktyplib) tool to
  4. // produce the type library (quote.tlb) that will become a resource in
  5. // quote.ocx.
  6.  
  7. #include <olectl.h>
  8.  
  9. [ uuid(7C647083-F1CB-101B-81EC-B23169424630), version(1.0),
  10.   helpstring("Quote OLE Custom Control module") ]
  11. library QuoteLib
  12. {
  13.     importlib(STDOLE_TLB);
  14.     importlib(STDTYPE_TLB);
  15.  
  16.     //  Primary dispatch interface for CQuoteCtrl
  17.  
  18.     [ uuid(7C647081-F1CB-101B-81EC-B23169424630),
  19.       helpstring("Dispatch interface for Quote Control") ]
  20.     dispinterface _DQuote
  21.     {
  22.         properties:
  23.             // NOTE - ClassWizard will maintain property information here.
  24.             //    Use extreme caution when editing this section.
  25.             //{{AFX_ODL_PROP(CQuoteCtrl)
  26.             [id(DISPID_BACKCOLOR), bindable, requestedit] OLE_COLOR BackColor;
  27.             [id(DISPID_FORECOLOR), bindable, requestedit] OLE_COLOR ForeColor;
  28.             [id(DISPID_FONT), bindable] IFontDisp* Font;
  29.             [id(1)] boolean ShowAuthor;
  30.             //}}AFX_ODL_PROP
  31.  
  32.         methods:
  33.             // NOTE - ClassWizard will maintain method information here.
  34.             //    Use extreme caution when editing this section.
  35.             //{{AFX_ODL_METHOD(CQuoteCtrl)
  36.             [id(DISPID_DOCLICK)] void DoClick();
  37.             //}}AFX_ODL_METHOD
  38.  
  39.             [id(DISPID_ABOUTBOX)] void AboutBox();
  40.     };
  41.  
  42.     //  Event dispatch interface for CQuoteCtrl
  43.  
  44.     [ uuid(7C647082-F1CB-101B-81EC-B23169424630),
  45.       helpstring("Event interface for Quote Control") ]
  46.     dispinterface _DQuoteEvents
  47.     {
  48.         properties:
  49.             //  Event interface has no properties
  50.  
  51.         methods:
  52.             // NOTE - ClassWizard will maintain event information here.
  53.             //    Use extreme caution when editing this section.
  54.             //{{AFX_ODL_EVENT(CQuoteCtrl)
  55.             [id(DISPID_DBLCLICK)] void DblClick();
  56.             //}}AFX_ODL_EVENT
  57.     };
  58.  
  59.     //  Class information for CQuoteCtrl
  60.  
  61.     [ uuid(7C647080-F1CB-101B-81EC-B23169424630), licensed,
  62.       helpstring("Quote Control") ]
  63.     coclass Quote
  64.     {
  65.         [default] dispinterface _DQuote;
  66.         [default, source] dispinterface _DQuoteEvents;
  67.     };
  68.  
  69.  
  70.     //{{AFX_APPEND_ODL}}
  71. };
  72.