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

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * PAGES.H
  3.  * Patron Chapter 21
  4.  *
  5.  * Definitions and function prototypes for the Pages window control
  6.  * as well as the CPage class.
  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 _PAGES_H_
  15. #define _PAGES_H_
  16. //CHAPTER21MOD
  17. #include <stdlib.h>     //For atol
  18. //End CHAPTER21MOD
  19. //Versioning.
  20. #define VERSIONMAJOR                2
  21. #define VERSIONMINOR                0
  22. #define VERSIONCURRENT              0x00020000
  23. //Classname
  24. #define SZCLASSPAGES                TEXT("pages")
  25. #define HIMETRIC_PER_INCH           2540
  26. #define LOMETRIC_PER_INCH           254
  27. #define LOMETRIC_BORDER             60          //Border around page
  28. //Window extra bytes and offsets
  29. #define CBPAGESWNDEXTRA             (sizeof(LONG))
  30. #define PAGEWL_STRUCTURE            0
  31. #include "tenant.h"
  32. typedef struct tagTENANTLIST
  33.     {
  34.     DWORD       cTenants;
  35.     DWORD       dwIDNext;
  36.     } TENANTLIST, *PTENANTLIST;
  37. #define SZSTREAMTENANTLIST        OLETEXT("Tenant List")
  38. //Delay timer used in mouse debouncing
  39. #define IDTIMER_DEBOUNCE          120
  40. /*
  41.  * Page class describing an individual page and what things it
  42.  * contains, managing an IStorage for us.
  43.  *
  44.  * A DWORD is used to identify this page as the name of the storage
  45.  * is the string form of this ID.  If we added a page every second,
  46.  * it would take 136 years to overrun this counter, so we can
  47.  * get away with saving it persistently.  I hope this software is
  48.  * obsolete by then.
  49.  */
  50. //CHAPTER21MOD
  51. class CPage : public IUnknown
  52. //End CHAPTER21MOD
  53.     {
  54.     friend class CIOleUILinkContainer;
  55.     //CHAPTER21MOD
  56.     friend class CImpIOleItemContainer;
  57.     //End CHAPTER21MOD
  58.     private:
  59.         DWORD       m_dwID;             //Persistent identifier
  60.         LPSTORAGE   m_pIStorage;        //Substorage for this page
  61.         HWND        m_hWnd;             //Pages window
  62.         DWORD       m_cOpens;           //Calls to Open
  63.         class CPages *m_pPG;            //Pages window
  64.         DWORD       m_dwIDNext;
  65.         DWORD       m_cTenants;
  66.         HWND        m_hWndTenantList;   //Listbox; our tenant list
  67.         UINT        m_iTenantCur;
  68.         PCTenant    m_pTenantCur;
  69.         UINT        m_uHTCode;          //Last hit-test/mouse move
  70.         UINT        m_uSizingFlags;     //Restrictions on sizing
  71.         BOOL        m_fTracking;        //Tracking resize?
  72.         RECTL       m_rclOrg;           //Original before tracking
  73.         RECTL       m_rcl;              //Tracking rectangle
  74.         RECTL       m_rclBounds;        //Boundaries f/size tracking
  75.         HDC         m_hDC;              //Tracking hDC
  76.         BOOL        m_fDragPending;     //Waiting for drag?
  77.         BOOL        m_fSizePending;     //Waiting for debounce?
  78.         int         m_cxyDist;          //Debounce distance
  79.         UINT        m_cDelay;           //Debounce delay
  80.         POINTS      m_ptDown;           //Point of click to debounce
  81.         UINT        m_uKeysDown;        //Keys when click happens
  82.         DWORD       m_fTimer;           //Timer active?
  83.         BOOL        m_fReopen;          //Did we just close?
  84.         //CHAPTER21MOD
  85.         LPMONIKER               m_pmkFile;  //Document name
  86.         ULONG                   m_cRef;
  87.         DWORD                   m_dwRegROTWild;
  88.         class CImpIOleItemContainer *m_pImpIOleItemContainer;
  89.         //End CHAPTER21MOD
  90.     protected:
  91.         BOOL         TenantGet(UINT, PCTenant *, BOOL);
  92.         //CHAPTER21MOD
  93.         BOOL         TenantGetFromID(DWORD, PCTenant *, BOOL);
  94.         //End CHAPTER21MOD
  95.         BOOL         TenantAdd(UINT, DWORD, PCTenant *);
  96.         LPDATAOBJECT TransferObjectCreate(PPOINTL);
  97.         //PAGEMOUS.CPP
  98.         BOOL         SelectTenantAtPoint(UINT, UINT);
  99.         UINT         TenantFromPoint(UINT, UINT, PCTenant *);
  100.         BOOL         DragDrop(UINT, UINT, UINT);
  101.     public:
  102.         CPage(DWORD, HWND, class CPages *);
  103.         ~CPage(void);
  104.         //CHAPTER21MOD
  105.         //IUnknown for delegation
  106.         STDMETHODIMP QueryInterface(REFIID, PPVOID);
  107.         STDMETHODIMP_(ULONG) AddRef(void);
  108.         STDMETHODIMP_(ULONG) Release(void);
  109.         //End CHAPTER21MOD
  110.         DWORD       GetID(void);
  111.         BOOL        Open(LPSTORAGE);
  112.         void        Close(BOOL);
  113.         BOOL        Update(void);
  114.         void        Destroy(LPSTORAGE);
  115.         UINT        GetStorageName(LPOLESTR);
  116.         void        Draw(HDC, int, int, BOOL, BOOL);
  117.         BOOL        TenantCreate(TENANTTYPE, LPVOID, LPFORMATETC
  118.                         , PPATRONOBJECT, DWORD);
  119.         BOOL        TenantDestroy(void);
  120.         BOOL        TenantClip(BOOL);
  121.         BOOL        FQueryObjectSelected(HMENU);
  122.         void        ActivateObject(LONG);
  123.         void        ShowObjectTypes(BOOL);
  124.         void        NotifyTenantsOfRename(LPTSTR, LPMONIKER);
  125.         BOOL        FQueryLinksInPage(void);
  126.         BOOL        ConvertObject(HWND, BOOL);
  127.         //PAGEMOUSE.CPP
  128.         BOOL        OnRightDown(UINT, UINT, UINT);
  129.         BOOL        OnLeftDown(UINT, UINT, UINT);
  130.         BOOL        OnLeftDoubleClick(UINT, UINT, UINT);
  131.         BOOL        OnLeftUp(UINT, UINT, UINT);
  132.         void        OnMouseMove(UINT, int, int);
  133.         void        OnTimer(UINT);
  134.         void        StartSizeTracking(void);
  135.         void        OnNCHitTest(UINT, UINT);
  136.         BOOL        OnSetCursor(UINT);
  137.     };
  138. typedef CPage *PCPage;
  139. /*
  140.  * Structures to save with the document describing the device
  141.  * configuration and pages that we have.  This is followed by
  142.  * a list of DWORD IDs for the individual pages.
  143.  */
  144. typedef struct tagDEVICECONFIG
  145.     {
  146.     DWORD       cb;                         //Size of structure
  147.     TCHAR       szDriver[CCHDEVICENAME];
  148.     TCHAR       szDevice[CCHDEVICENAME];
  149.     TCHAR       szPort[CCHDEVICENAME];
  150.     DWORD       cbDevMode;                  //Size of actual DEVMODE
  151.     DEVMODE     dm;                         //Variable
  152.     } DEVICECONFIG, *PDEVICECONFIG;
  153. //Offset to cbDevMode
  154. #define CBSEEKOFFSETCBDEVMODE  (sizeof(DWORD)   
  155.                                +(3*CCHDEVICENAME*sizeof(TCHAR)))
  156. //Combined OLE and Patron device structures.
  157. typedef struct tagCOMBINEDEVICE
  158.     {
  159.     DVTARGETDEVICE  td;
  160.     DEVICECONFIG    dc;
  161.     } COMBINEBDEVICE, *PCOMBINEDEVICE;
  162. typedef struct tagPAGELIST
  163.     {
  164.     DWORD       cPages;
  165.     DWORD       iPageCur;
  166.     DWORD       dwIDNext;
  167.     } PAGELIST, *PPAGELIST;
  168. //PRINT.CPP
  169. BOOL    APIENTRY PrintDlgProc(HWND, UINT, WPARAM, LPARAM);
  170. BOOL    APIENTRY AbortProc(HDC, int);
  171. //PAGEWIN.CPP
  172. LRESULT APIENTRY PagesWndProc(HWND, UINT, WPARAM, LPARAM);
  173. void             RectConvertMappings(LPRECT, HDC, BOOL);
  174. class CPages : public CWindow
  175.     {
  176.     friend LRESULT APIENTRY PagesWndProc(HWND, UINT, WPARAM, LPARAM);
  177.     friend BOOL    APIENTRY PrintDlgProc(HWND, UINT, WPARAM, LPARAM);
  178.     friend class CPage;
  179.     friend class CTenant;
  180.     friend class CDropTarget;
  181.     friend class CImpIAdviseSink;
  182.     //CHAPTER21MOD
  183.     friend class CImpIOleItemContainer;
  184.     //End CHAPTER21MOD
  185.     protected:
  186.         PCPage      m_pPageCur;             //Current page
  187.         UINT        m_iPageCur;             //Current page
  188.         UINT        m_cPages;               //Number of pages
  189.         HWND        m_hWndPageList;         //Listbox with page list
  190.         HFONT       m_hFont;                //Page font
  191.         BOOL        m_fSystemFont;          //m_hFont system object?
  192.         UINT        m_cx;                   //Page size in LOMETRIC
  193.         UINT        m_cy;
  194.         UINT        m_xMarginLeft;          //Unusable margins,
  195.         UINT        m_xMarginRight;         //in LOMETRIC
  196.         UINT        m_yMarginTop;
  197.         UINT        m_yMarginBottom;
  198.         UINT        m_xPos;                 //Viewport scroll pos,
  199.         UINT        m_yPos;                 //both in *PIXELS*
  200.         DWORD       m_dwIDNext;             //Next ID for a page.
  201.         LPSTORAGE   m_pIStorage;            //Root storage
  202.         UINT        m_cf;                   //Clipboard format
  203.         BOOL        m_fDirty;
  204.         BOOL        m_fDragSource;          //Source==target?
  205.         BOOL        m_fMoveInPage;          //Moving in same page
  206.         BOOL        m_fLinkAllowed;         //Linking in drag-drop?
  207.         POINTL      m_ptDrop;               //Where to move object
  208.         BOOL        m_fDragRectShown;       //Is rect on the screen?
  209.         UINT        m_uScrollInset;         //Hit-test for drag-drop
  210.         UINT        m_uScrollDelay;         //Delay before repeat
  211.         DWORD       m_dwTimeLast;           //Ticks on last DragOver
  212.         UINT        m_uHScrollCode;         //L/R on scroll repeat?
  213.         UINT        m_uVScrollCode;         //U/D on scroll repeat?
  214.         UINT        m_uLastTest;            //Last test result
  215.         POINTL      m_ptlRect;              //Last feedback rectangle
  216.         SIZEL       m_szlRect;
  217.         BOOL        m_fShowTypes;           //Show Object active?
  218.         //CHAPTER21MOD
  219.         LPMONIKER   m_pmkFile;
  220.         //End CHAPTER21MOD
  221.     private:
  222.         void        Draw(HDC, BOOL, BOOL);
  223.         void        UpdateScrollRanges(void);
  224.         BOOL        ConfigureForDevice(void);
  225.         BOOL        PageGet(UINT, PCPage *, BOOL);
  226.         BOOL        PageAdd(UINT, DWORD, BOOL);
  227.         void        CalcBoundingRect(LPRECT, BOOL);
  228.         //DRAGDROP.CPP
  229.         UINT        UTestDroppablePoint(PPOINTL);
  230.         void        DrawDropTargetRect(PPOINTL, LPSIZEL);
  231.         void        AdjustPosition(PPOINTL, LPSIZEL);
  232.     public:
  233.         CPages(HINSTANCE, UINT);
  234.         ~CPages(void);
  235.         BOOL        Init(HWND, LPRECT, DWORD, UINT, LPVOID);
  236.         BOOL        StorageSet(LPSTORAGE, BOOL, BOOL);
  237.         BOOL        StorageUpdate(BOOL);
  238.         BOOL        Print(HDC, LPTSTR, DWORD, UINT, UINT, UINT);
  239.         void        RectGet(LPRECT);
  240.         void        RectSet(LPRECT, BOOL);
  241.         void        SizeGet(LPRECT);
  242.         void        SizeSet(LPRECT, BOOL);
  243.         PCPage      ActivePage(void);
  244.         UINT        PageInsert(UINT);
  245.         UINT        PageDelete(UINT);
  246.         UINT        CurPageGet(void);
  247.         UINT        CurPageSet(UINT);
  248.         UINT        NumPagesGet(void);
  249.         BOOL        DevModeSet(HGLOBAL, HGLOBAL);
  250.         HGLOBAL     DevModeGet(void);
  251.         BOOL        FIsDirty(void);
  252.         BOOL        DevReadConfig(PCOMBINEDEVICE *, HDC *);
  253.         BOOL        TenantCreate(TENANTTYPE, LPVOID, LPFORMATETC
  254.                         , PPATRONOBJECT, DWORD);
  255.         BOOL        TenantDestroy(void);
  256.         BOOL        TenantClip(BOOL);
  257.         BOOL        FQueryObjectSelected(HMENU);
  258.         void        ActivateObject(LONG);
  259.         void        ShowObjectTypes(BOOL);
  260.         void        NotifyTenantsOfRename(LPTSTR, LPMONIKER);
  261.         BOOL        FQueryLinksInPage(void);
  262.         BOOL        GetUILinkContainer(class CIOleUILinkContainer **);
  263.         BOOL        ConvertObject(HWND);
  264.         //CHAPTER21MOD
  265.         UINT        IPageGetFromID(DWORD, PCPage *, BOOL);
  266.         //End CHAPTER21MOD
  267.     };
  268. typedef CPages *PCPages;
  269. //Fixed names of streams in the Pages IStorage
  270. #define SZSTREAMPAGELIST        OLETEXT("Page List")
  271. #define SZSTREAMDEVICECONFIG    OLETEXT("Device Configuration")
  272. //Return values for UTestDroppablePoint
  273. #define UDROP_NONE              0x0000      //Exclusive
  274. #define UDROP_CLIENT            0x0001      //Inclusive
  275. #define UDROP_INSETLEFT         0x0002      //L/R are exclusive
  276. #define UDROP_INSETRIGHT        0x0004
  277. #define UDROP_INSETHORZ         (UDROP_INSETLEFT | UDROP_INSETRIGHT)
  278. #define UDROP_INSETTOP          0x0008      //T/B are exclusive
  279. #define UDROP_INSETBOTTOM       0x0010
  280. #define UDROP_INSETVERT         (UDROP_INSETTOP | UDROP_INSETBOTTOM)
  281. //Object used for the Links dialog
  282. class CIOleUILinkContainer : public IOleUILinkContainer
  283.     {
  284.     private:
  285.         ULONG                   m_cRef;
  286.         PCPage                  m_pPage;
  287.         UINT                    m_iTenant;
  288.         LPOLEUILINKCONTAINER    m_pDelIUILinks;
  289.     public:
  290.         BOOL                    m_fDirty;   //No reason to hide it
  291.     protected:
  292.         STDMETHODIMP GetObjectInterface(DWORD, REFIID, PPVOID);
  293.     public:
  294.         CIOleUILinkContainer(PCPage);
  295.         ~CIOleUILinkContainer(void);
  296.         BOOL Init(void);
  297.         BOOL IsDirty(void);
  298.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  299.         STDMETHODIMP_(ULONG) AddRef(void);
  300.         STDMETHODIMP_(ULONG) Release(void);
  301.         STDMETHODIMP_(DWORD) GetNextLink(DWORD);
  302.         STDMETHODIMP         SetLinkUpdateOptions(DWORD, DWORD);
  303.         STDMETHODIMP         GetLinkUpdateOptions(DWORD, LPDWORD);
  304.         STDMETHODIMP         SetLinkSource(DWORD, LPTSTR, ULONG
  305.                                  , ULONG *, BOOL);
  306.         STDMETHODIMP         GetLinkSource(DWORD, LPTSTR *, ULONG *
  307.                                  , LPTSTR *, LPTSTR *, BOOL *
  308.                                  , BOOL *);
  309.         STDMETHODIMP         OpenLinkSource(DWORD);
  310.         STDMETHODIMP         UpdateLink(DWORD, BOOL, BOOL);
  311.         STDMETHODIMP         CancelLink(DWORD);
  312.     };
  313. typedef CIOleUILinkContainer *PCIOleUILinkContainer;
  314. #endif  //_PAGES_H_