home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / inole2 / chap08 / cocosmo / cocosmo.h < prev    next >
C/C++ Source or Header  |  1995-05-03  |  5KB  |  200 lines

  1. /*
  2.  * COCOSMO.H
  3.  * Component Cosmo Chapter 8
  4.  *
  5.  * Single include file that pulls in everything needed for other
  6.  * source files in the Cosmo application.
  7.  *
  8.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  9.  *
  10.  * Kraig Brockschmidt, Microsoft
  11.  * Internet  :  kraigb@microsoft.com
  12.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  13.  */
  14.  
  15.  
  16. #ifndef _COCOSMO_H_
  17. #define _COCOSMO_H_
  18.  
  19. //CHAPTER8MOD
  20. #define INC_CLASSLIB
  21. #define INC_CONTROLS
  22. #define INC_OLE2
  23. #define CHAPTER8
  24. #include <inole.h>
  25. #include <ipoly8.h>
  26. #include "resource.h"
  27. //End CHAPTER8MOD
  28.  
  29. //COCOSMO.CPP:  Frame object that creates a main window
  30.  
  31. class CCosmoFrame : public CFrame
  32.     {
  33.     private:
  34.         HBITMAP         m_hBmpLines[5];     //Menu item bitmaps
  35.         UINT            m_uIDCurLine;       //Current line selection
  36.         BOOL            m_fInitialized;     //CoInitialize work?
  37.  
  38.     protected:
  39.         //Overridable for creating a CClient for this frame
  40.         virtual PCClient  CreateCClient(void);
  41.  
  42.         virtual BOOL      RegisterAllClasses(void);
  43.         virtual BOOL      PreShowInit(void);
  44.         virtual UINT      CreateToolbar(void);
  45.  
  46.         virtual LRESULT   OnCommand(HWND, WPARAM, LPARAM);
  47.         virtual void      OnDocumentDataChange(PCDocument);
  48.         virtual void      OnDocumentActivate(PCDocument);
  49.  
  50.         //New for this class
  51.         virtual void      CreateLineMenu(void);
  52.  
  53.     public:
  54.         CCosmoFrame(HINSTANCE, HINSTANCE, LPSTR, int);
  55.         virtual ~CCosmoFrame(void);
  56.  
  57.         //Overrides
  58.         virtual BOOL      Init(PFRAMEINIT);
  59.         virtual void      UpdateMenus(HMENU, UINT);
  60.         virtual void      UpdateToolbar(void);
  61.  
  62.         //New for this class
  63.         virtual void      CheckLineSelection(UINT);
  64.     };
  65.  
  66.  
  67. typedef CCosmoFrame *PCCosmoFrame;
  68.  
  69.  
  70.  
  71.  
  72.  
  73. //CLIENT.CPP
  74.  
  75. /*
  76.  * The only reason we have a derived class here is to override
  77.  * CreateCDocument so we can create our own type as well as
  78.  * overriding NewDocument to perform one other piece of work once
  79.  * the document's been created.
  80.  */
  81.  
  82. class CCosmoClient : public CClient
  83.     {
  84.     protected:
  85.         //Overridable for creating a new CDocument
  86.         virtual PCDocument CreateCDocument(void);
  87.  
  88.     public:
  89.         CCosmoClient(HINSTANCE, PCFrame);
  90.         virtual ~CCosmoClient(void);
  91.  
  92.         virtual PCDocument NewDocument(BOOL);
  93.     };
  94.  
  95.  
  96. typedef CCosmoClient *PCCosmoClient;
  97.  
  98.  
  99.  
  100.  
  101. //DOCUMENT.CPP
  102.  
  103. class CCosmoDoc;
  104. typedef CCosmoDoc *PCCosmoDoc;
  105.  
  106. class CPolylineAdviseSink : public IPolylineAdviseSink8
  107.     {
  108.     private:
  109.         PCCosmoDoc  m_pDoc;         //Backpointer to document
  110.         ULONG       m_cRef;
  111.  
  112.     public:
  113.         CPolylineAdviseSink(PCCosmoDoc);
  114.         ~CPolylineAdviseSink(void);
  115.  
  116.         //IUnknown members
  117.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  118.         STDMETHODIMP_(ULONG) AddRef(void);
  119.         STDMETHODIMP_(ULONG) Release(void);
  120.  
  121.         //Advise members.
  122.         STDMETHODIMP_(void) OnPointChange(void);
  123.         STDMETHODIMP_(void) OnSizeChange(void);
  124.         STDMETHODIMP_(void) OnDataChange(void);
  125.         STDMETHODIMP_(void) OnColorChange(void);
  126.         STDMETHODIMP_(void) OnLineStyleChange(void);
  127.     };
  128.  
  129. typedef CPolylineAdviseSink *PCPolylineAdviseSink;
  130.  
  131.  
  132.  
  133. //Constant ID for the window polyline that lives in a document
  134. #define ID_POLYLINE         10
  135.  
  136. //CHAPTER8MOD
  137. //Stream name to open with IPersistStream[Init]
  138. #define SZSTREAM                    OLETEXT("CONTENTS")
  139. //End CHAPTER8MOD
  140.  
  141.  
  142. class CCosmoDoc : public CDocument
  143.     {
  144.     friend class CPolylineAdviseSink;
  145.  
  146.     protected:
  147.         UINT                    m_uPrevSize;    //Last WM_SIZE wParam
  148.  
  149.         //CHAPTER8MOD
  150.         IPolyline8             *m_pPL;          //Polyline object
  151.         IPolylineAdviseSink8   *m_pPLAdv;
  152.         //End CHAPTER8MOD
  153.  
  154.         IConnectionPoint       *m_pIConnectPt;
  155.         DWORD                   m_dwCookie;     //Connection key
  156.  
  157.         //CHAPTER8MOD
  158.         IStorage               *m_pIStorage;    //Doc storage
  159.         PERSISTPOINTER          m_pp;
  160.         //End CHAPTER8MOD
  161.  
  162.     protected:
  163.         virtual BOOL     FMessageHook(HWND, UINT, WPARAM, LPARAM
  164.             , LRESULT *);
  165.  
  166.     public:
  167.         CCosmoDoc(HINSTANCE, PCFrame, PCDocumentAdviseSink);
  168.         virtual ~CCosmoDoc(void);
  169.  
  170.         virtual BOOL     Init(PDOCUMENTINIT);
  171.  
  172.         virtual void     Clear(void);
  173.  
  174.         virtual UINT     Load(BOOL, LPTSTR);
  175.         virtual UINT     Save(UINT, LPTSTR);
  176.  
  177.         virtual void     Undo(void);
  178.         virtual BOOL     Clip(HWND, BOOL);
  179.         virtual HGLOBAL  RenderFormat(UINT);
  180.         virtual BOOL     FQueryPaste(void);
  181.         virtual BOOL     Paste(HWND);
  182.  
  183.         virtual COLORREF ColorSet(UINT, COLORREF);
  184.         virtual COLORREF ColorGet(UINT);
  185.  
  186.         virtual UINT     LineStyleSet(UINT);
  187.         virtual UINT     LineStyleGet(void);
  188.     };
  189.  
  190. typedef CCosmoDoc *PCCosmoDoc;
  191.  
  192.  
  193. //These color indices wrap the polyline definitions
  194. #define DOCCOLOR_BACKGROUND             POLYLINECOLOR_BACKGROUND
  195. #define DOCCOLOR_LINE                   POLYLINECOLOR_LINE
  196.  
  197.  
  198.  
  199. #endif //_COCOSMO_H_
  200.