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

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * PAGES.H
  3.  * Patron Chapter 17
  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. //CHAPTER17MOD
  29. //Time to break this stuff out into another file.
  30. #include "tenant.h"
  31. //End CHAPTER17MOD
  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. class CPage
  51.     {
  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.     protected:
  78.         BOOL         TenantGet(UINT, PCTenant *, BOOL);
  79.         BOOL         TenantAdd(UINT, DWORD, PCTenant *);
  80.         LPDATAOBJECT TransferObjectCreate(PPOINTL);
  81.         //PAGEMOUS.CPP
  82.         //CHAPTER17MOD
  83.         BOOL         SelectTenantAtPoint(UINT, UINT);
  84.         //End CHAPTER17MOD
  85.         UINT         TenantFromPoint(UINT, UINT, PCTenant *);
  86.         BOOL         DragDrop(UINT, UINT, UINT);
  87.     public:
  88.         CPage(DWORD, HWND, class CPages *);
  89.         ~CPage(void);
  90.         DWORD       GetID(void);
  91.         BOOL        Open(LPSTORAGE);
  92.         void        Close(BOOL);
  93.         BOOL        Update(void);
  94.         void        Destroy(LPSTORAGE);
  95.         UINT        GetStorageName(LPOLESTR);
  96.         void        Draw(HDC, int, int, BOOL, BOOL);
  97.         BOOL        TenantCreate(TENANTTYPE, LPVOID, LPFORMATETC
  98.                         , PPATRONOBJECT, DWORD);
  99.         BOOL        TenantDestroy(void);
  100.         BOOL        TenantClip(BOOL);
  101.         BOOL        FQueryObjectSelected(HMENU);
  102.         //CHAPTER17MOD
  103.         void        ActivateObject(LONG);
  104.         void        NotifyTenantsOfRename(LPTSTR, LPVOID);
  105.         BOOL        ConvertObject(HWND, BOOL);
  106.         //PAGEMOUSE.CPP
  107.         BOOL        OnRightDown(UINT, UINT, UINT);
  108.         //End CHAPTER17MOD
  109.         BOOL        OnLeftDown(UINT, UINT, UINT);
  110.         BOOL        OnLeftDoubleClick(UINT, UINT, UINT);
  111.         BOOL        OnLeftUp(UINT, UINT, UINT);
  112.         void        OnMouseMove(UINT, int, int);
  113.         void        OnTimer(UINT);
  114.         void        StartSizeTracking(void);
  115.         void        OnNCHitTest(UINT, UINT);
  116.         BOOL        OnSetCursor(UINT);
  117.     };
  118. typedef CPage *PCPage;
  119. /*
  120.  * Structures to save with the document describing the device
  121.  * configuration and pages that we have.  This is followed by
  122.  * a list of DWORD IDs for the individual pages.
  123.  */
  124. typedef struct tagDEVICECONFIG
  125.     {
  126.     DWORD       cb;                         //Size of structure
  127.     TCHAR       szDriver[CCHDEVICENAME];
  128.     TCHAR       szDevice[CCHDEVICENAME];
  129.     TCHAR       szPort[CCHDEVICENAME];
  130.     DWORD       cbDevMode;                  //Size of actual DEVMODE
  131.     DEVMODE     dm;                         //Variable
  132.     } DEVICECONFIG, *PDEVICECONFIG;
  133. //Offset to cbDevMode
  134. #define CBSEEKOFFSETCBDEVMODE  (sizeof(DWORD)   
  135.                                +(3*CCHDEVICENAME*sizeof(TCHAR)))
  136. //Combined OLE and Patron device structures.
  137. typedef struct tagCOMBINEDEVICE
  138.     {
  139.     DVTARGETDEVICE  td;
  140.     DEVICECONFIG    dc;
  141.     } COMBINEBDEVICE, *PCOMBINEDEVICE;
  142. typedef struct tagPAGELIST
  143.     {
  144.     DWORD       cPages;
  145.     DWORD       iPageCur;
  146.     DWORD       dwIDNext;
  147.     } PAGELIST, *PPAGELIST;
  148. //PRINT.CPP
  149. BOOL    APIENTRY PrintDlgProc(HWND, UINT, WPARAM, LPARAM);
  150. BOOL    APIENTRY AbortProc(HDC, int);
  151. //PAGEWIN.CPP
  152. LRESULT APIENTRY PagesWndProc(HWND, UINT, WPARAM, LPARAM);
  153. void             RectConvertMappings(LPRECT, HDC, BOOL);
  154. class CPages : public CWindow
  155.     {
  156.     friend LRESULT APIENTRY PagesWndProc(HWND, UINT, WPARAM, LPARAM);
  157.     friend BOOL    APIENTRY PrintDlgProc(HWND, UINT, WPARAM, LPARAM);
  158.     friend class CPage;
  159.     friend class CTenant;
  160.     friend class CDropTarget;
  161.     //CHAPTER17MOD
  162.     friend class CImpIAdviseSink;
  163.     //End CHAPTER17MOD
  164.     protected:
  165.         PCPage      m_pPageCur;             //Current page
  166.         UINT        m_iPageCur;             //Current page
  167.         UINT        m_cPages;               //Number of pages
  168.         HWND        m_hWndPageList;         //Listbox with page list
  169.         HFONT       m_hFont;                //Page font
  170.         BOOL        m_fSystemFont;          //m_hFont system object?
  171.         UINT        m_cx;                   //Page size in LOMETRIC
  172.         UINT        m_cy;
  173.         UINT        m_xMarginLeft;          //Unusable margins,
  174.         UINT        m_xMarginRight;         //in LOMETRIC
  175.         UINT        m_yMarginTop;
  176.         UINT        m_yMarginBottom;
  177.         UINT        m_xPos;                 //Viewport scroll pos,
  178.         UINT        m_yPos;                 //both in *PIXELS*
  179.         DWORD       m_dwIDNext;             //Next ID for a page.
  180.         LPSTORAGE   m_pIStorage;            //Root storage
  181.         UINT        m_cf;                   //Clipboard format
  182.         BOOL        m_fDirty;
  183.         BOOL        m_fDragSource;          //Source==target?
  184.         BOOL        m_fMoveInPage;          //Moving in same page
  185.         POINTL      m_ptDrop;               //Where to move object
  186.         BOOL        m_fDragRectShown;       //Is rect on the screen?
  187.         UINT        m_uScrollInset;         //Hit-test for drag-drop
  188.         UINT        m_uScrollDelay;         //Delay before repeat
  189.         DWORD       m_dwTimeLast;           //Ticks on last DragOver
  190.         UINT        m_uHScrollCode;         //L/R on scroll repeat?
  191.         UINT        m_uVScrollCode;         //U/D on scroll repeat?
  192.         UINT        m_uLastTest;            //Last test result
  193.         POINTL      m_ptlRect;              //Last feedback rectangle
  194.         SIZEL       m_szlRect;
  195.     private:
  196.         void        Draw(HDC, BOOL, BOOL);
  197.         void        UpdateScrollRanges(void);
  198.         BOOL        ConfigureForDevice(void);
  199.         BOOL        PageGet(UINT, PCPage *, BOOL);
  200.         BOOL        PageAdd(UINT, DWORD, BOOL);
  201.         void        CalcBoundingRect(LPRECT, BOOL);
  202.         //DRAGDROP.CPP
  203.         UINT        UTestDroppablePoint(PPOINTL);
  204.         void        DrawDropTargetRect(PPOINTL, LPSIZEL);
  205.         void        AdjustPosition(PPOINTL, LPSIZEL);
  206.     public:
  207.         CPages(HINSTANCE, UINT);
  208.         ~CPages(void);
  209.         BOOL        Init(HWND, LPRECT, DWORD, UINT, LPVOID);
  210.         BOOL        StorageSet(LPSTORAGE, BOOL, BOOL);
  211.         BOOL        StorageUpdate(BOOL);
  212.         BOOL        Print(HDC, LPTSTR, DWORD, UINT, UINT, UINT);
  213.         void        RectGet(LPRECT);
  214.         void        RectSet(LPRECT, BOOL);
  215.         void        SizeGet(LPRECT);
  216.         void        SizeSet(LPRECT, BOOL);
  217.         PCPage      ActivePage(void);
  218.         UINT        PageInsert(UINT);
  219.         UINT        PageDelete(UINT);
  220.         UINT        CurPageGet(void);
  221.         UINT        CurPageSet(UINT);
  222.         UINT        NumPagesGet(void);
  223.         BOOL        DevModeSet(HGLOBAL, HGLOBAL);
  224.         HGLOBAL     DevModeGet(void);
  225.         BOOL        FIsDirty(void);
  226.         BOOL        DevReadConfig(PCOMBINEDEVICE *, HDC *);
  227.         BOOL        TenantCreate(TENANTTYPE, LPVOID, LPFORMATETC
  228.                         , PPATRONOBJECT, DWORD);
  229.         BOOL        TenantDestroy(void);
  230.         BOOL        TenantClip(BOOL);
  231.         BOOL        FQueryObjectSelected(HMENU);
  232.         //CHAPTER17MOD
  233.         void        ActivateObject(LONG);
  234.         void        NotifyTenantsOfRename(LPTSTR, LPVOID);
  235.         BOOL        ConvertObject(HWND);
  236.         //End CHAPTER17MOD
  237.     };
  238. typedef CPages *PCPages;
  239. //Fixed names of streams in the Pages IStorage
  240. #define SZSTREAMPAGELIST        OLETEXT("Page List")
  241. #define SZSTREAMDEVICECONFIG    OLETEXT("Device Configuration")
  242. //Return values for UTestDroppablePoint
  243. #define UDROP_NONE              0x0000      //Exclusive
  244. #define UDROP_CLIENT            0x0001      //Inclusive
  245. #define UDROP_INSETLEFT         0x0002      //L/R are exclusive
  246. #define UDROP_INSETRIGHT        0x0004
  247. #define UDROP_INSETHORZ         (UDROP_INSETLEFT | UDROP_INSETRIGHT)
  248. #define UDROP_INSETTOP          0x0008      //T/B are exclusive
  249. #define UDROP_INSETBOTTOM       0x0010
  250. #define UDROP_INSETVERT         (UDROP_INSETTOP | UDROP_INSETBOTTOM)
  251. #endif  //_PAGES_H_