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

Windows编程

开发平台:

Visual C++

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