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

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * COSMO.H
  3.  * Cosmo Chapter 21
  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. #ifndef _COSMO_H_
  15. #define _COSMO_H_
  16. #define INC_CLASSLIB
  17. #define INC_OLE2UI
  18. //CHAPTER21MOD
  19. #define CHAPTER21
  20. //End CHAPTER21MOD
  21. #include <inole.h>
  22. #include "resource.h"
  23. //Get the editor window information.
  24. #include "polyline.h"
  25. //COSMO.CPP:  Frame object that creates a main window
  26. class CCosmoFrame : public CFrame
  27.     {
  28.     friend class CFigureClassFactory;
  29.     friend class CFigure;   //For UI purposes.
  30.     private:
  31.         HBITMAP         m_hBmpLines[5];     //Menu item bitmaps
  32.         UINT            m_uIDCurLine;       //Current line selection
  33.         BOOL            m_fInitialized;     //Did OleInitalize work?
  34.         LPCLASSFACTORY  m_pIClassDataTran;  //For locking
  35.         BOOL            m_fEmbedding;       //-Embedding found?
  36.         DWORD           m_dwRegCO;          //Registration key
  37.         LPCLASSFACTORY  m_pIClassFactory;
  38.     protected:
  39.         //Overridable for creating a CClient for this frame
  40.         virtual PCClient  CreateCClient(void);
  41.         virtual BOOL      RegisterAllClasses(void);
  42.         virtual BOOL      PreShowInit(void);
  43.         virtual UINT      CreateToolbar(void);
  44.         virtual LRESULT   OnCommand(HWND, WPARAM, LPARAM);
  45.         virtual void      OnDocumentDataChange(PCDocument);
  46.         virtual void      OnDocumentActivate(PCDocument);
  47.         //New for this class
  48.         virtual void      CreateLineMenu(void);
  49.     public:
  50.         CCosmoFrame(HINSTANCE, HINSTANCE, LPSTR, int);
  51.         virtual ~CCosmoFrame(void);
  52.         //Overrides
  53.         virtual BOOL      Init(PFRAMEINIT);
  54.         virtual void      UpdateMenus(HMENU, UINT);
  55.         virtual void      UpdateToolbar(void);
  56.         //New for this class
  57.         virtual void      CheckLineSelection(UINT);
  58.         virtual void      UpdateEmbeddingUI(BOOL, PCDocument
  59.                               , LPCTSTR, LPCTSTR);
  60.     };
  61. typedef CCosmoFrame *PCCosmoFrame;
  62. //CLIENT.CPP
  63. /*
  64.  * The only reason we have a derived class here is to override
  65.  * CreateCDocument so we can create our own type as well as
  66.  * overriding NewDocument to perform one other piece of work once
  67.  * the document's been created.
  68.  */
  69. class CCosmoClient : public CClient
  70.     {
  71.     protected:
  72.         //Overridable for creating a new CDocument
  73.         virtual PCDocument CreateCDocument(void);
  74.     public:
  75.         CCosmoClient(HINSTANCE, PCFrame);
  76.         virtual ~CCosmoClient(void);
  77.         virtual PCDocument NewDocument(BOOL);
  78.     };
  79. typedef CCosmoClient *PCCosmoClient;
  80. //DOCUMENT.CPP
  81. //Constant ID for the window polyline that lives in a document
  82. #define ID_POLYLINE         10
  83. class CCosmoDoc : public CDocument
  84.     {
  85.     friend class CPolylineAdviseSink;
  86.     //These need access to FQueryPasteFromData, PasteFromData
  87.     friend class CDropTarget;
  88.     friend class CDropSource;
  89.     friend class CFigureClassFactory;
  90.     friend class CFigure;
  91.     protected:
  92.         UINT                    m_uPrevSize;    //Last WM_SIZE wParam
  93.         LONG                    m_lVer;         //Loaded Polyline ver
  94.         PCPolyline              m_pPL;          //Polyline window here
  95.         PCPolylineAdviseSink    m_pPLAdv;       //Advises from Polyline
  96.         class CDropTarget      *m_pDropTarget;  //Registered target
  97.         BOOL                    m_fDragSource;  //Source==target?
  98.         UINT                    m_cfEmbedSource;
  99.         UINT                    m_cfObjectDescriptor;
  100.         class CFigure          *m_pFigure;      //The object in us.
  101.         //CHAPTER21MOD
  102.         LPMONIKER               m_pMoniker;     //Our file
  103.         DWORD                   m_dwRegROT;     //From IROT::Register
  104.         UINT                    m_cfLinkSource;
  105.         UINT                    m_cfLinkSrcDescriptor;
  106.         //End CHAPTER21MOD
  107.     protected:
  108.         virtual BOOL     FMessageHook(HWND, UINT, WPARAM, LPARAM
  109.             , LRESULT *);
  110.         void             DropSelectTargetWindow(void);
  111.     public:
  112.         CCosmoDoc(HINSTANCE, PCFrame, PCDocumentAdviseSink);
  113.         virtual ~CCosmoDoc(void);
  114.         virtual BOOL     Init(PDOCUMENTINIT);
  115.         virtual void     Clear(void);
  116.         virtual BOOL     FDirtySet(BOOL);
  117.         virtual BOOL     FDirtyGet(void);
  118.         virtual UINT     Load(BOOL, LPTSTR);
  119.         virtual UINT     Save(UINT, LPTSTR);
  120.         //CHAPTER21MOD
  121.         virtual void     Rename(LPTSTR);
  122.         //End CHAPTER21MOD
  123.         virtual void     Undo(void);
  124.         virtual BOOL     Clip(HWND, BOOL);
  125.         virtual HGLOBAL  RenderFormat(UINT);
  126.         virtual BOOL     RenderMedium(UINT, LPSTGMEDIUM);
  127.         virtual BOOL     FQueryPaste(void);
  128.         virtual BOOL     Paste(HWND);
  129.         //These were protected.  Now for IOleObject, should be public.
  130.         virtual BOOL     FQueryPasteFromData(LPDATAOBJECT);
  131.         virtual BOOL     PasteFromData(LPDATAOBJECT);
  132.         LPDATAOBJECT     TransferObjectCreate(BOOL);
  133.         virtual COLORREF ColorSet(UINT, COLORREF);
  134.         virtual COLORREF ColorGet(UINT);
  135.         virtual UINT     LineStyleSet(UINT);
  136.         virtual UINT     LineStyleGet(void);
  137.     };
  138. typedef CCosmoDoc *PCCosmoDoc;
  139. //These color indices wrap the polyline definitions
  140. #define DOCCOLOR_BACKGROUND             POLYLINECOLOR_BACKGROUND
  141. #define DOCCOLOR_LINE                   POLYLINECOLOR_LINE
  142. //Drag-drop interfaces we need in the document
  143. class CDropTarget : public IDropTarget
  144.     {
  145.     protected:
  146.         ULONG               m_cRef;
  147.         PCCosmoDoc          m_pDoc;
  148.         LPDATAOBJECT        m_pIDataObject;     //From DragEnter
  149.     public:
  150.         CDropTarget(PCCosmoDoc);
  151.         ~CDropTarget(void);
  152.         //IDropTarget interface members
  153.         STDMETHODIMP QueryInterface(REFIID, PPVOID);
  154.         STDMETHODIMP_(ULONG) AddRef(void);
  155.         STDMETHODIMP_(ULONG) Release(void);
  156.         STDMETHODIMP DragEnter(LPDATAOBJECT, DWORD, POINTL, LPDWORD);
  157.         STDMETHODIMP DragOver(DWORD, POINTL, LPDWORD);
  158.         STDMETHODIMP DragLeave(void);
  159.         STDMETHODIMP Drop(LPDATAOBJECT, DWORD, POINTL, LPDWORD);
  160.     };
  161. typedef CDropTarget *PCDropTarget;
  162. class CDropSource : public IDropSource
  163.     {
  164.     protected:
  165.         ULONG               m_cRef;
  166.         PCCosmoDoc          m_pDoc;
  167.     public:
  168.         CDropSource(PCCosmoDoc);
  169.         ~CDropSource(void);
  170.         //IDropSource interface members
  171.         STDMETHODIMP QueryInterface(REFIID, PPVOID);
  172.         STDMETHODIMP_(ULONG) AddRef(void);
  173.         STDMETHODIMP_(ULONG) Release(void);
  174.         STDMETHODIMP QueryContinueDrag(BOOL, DWORD);
  175.         STDMETHODIMP GiveFeedback(DWORD);
  176.     };
  177. typedef CDropSource *PCDropSource;
  178. //Include classes necessary to become an OLE Document server.
  179. #include "cosmole.h"
  180. #endif //_COSMO_H_