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 / chap24 / patron / pagewin.cpp < prev    next >
C/C++ Source or Header  |  1995-05-03  |  16KB  |  593 lines

  1. /*
  2.  * PAGEWIN.CPP
  3.  * Patron Chapter 24
  4.  *
  5.  * Window procedure for the Pages window and support functions.
  6.  * This window manages its own scrollbars and viewport and provides
  7.  * printing capabilities as well.
  8.  *
  9.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  10.  *
  11.  * Kraig Brockschmidt, Microsoft
  12.  * Internet  :  kraigb@microsoft.com
  13.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  14.  */
  15.  
  16.  
  17. #include "patron.h"
  18.  
  19.  
  20. /*
  21.  * PagesWndProc
  22.  *
  23.  * Purpose:
  24.  *  Window procedure for the Pages window.
  25.  */
  26.  
  27. LRESULT APIENTRY PagesWndProc(HWND hWnd, UINT iMsg, WPARAM wParam
  28.     , LPARAM lParam)
  29.     {
  30.     PCPages         ppg;
  31.     PAINTSTRUCT     ps;
  32.     HDC             hDC;
  33.     int             iPos, iTmp;
  34.     int             iMin, iMax;
  35.     UINT            idScroll;
  36.     BOOL            fDirty=FALSE;
  37.  
  38.     ppg=(PCPages)GetWindowLong(hWnd, PAGEWL_STRUCTURE);
  39.  
  40.     switch (iMsg)
  41.         {
  42.         case WM_CREATE:
  43.             ppg=(PCPages)((LPCREATESTRUCT)lParam)->lpCreateParams;
  44.             SetWindowLong(hWnd, PAGEWL_STRUCTURE, (LONG)ppg);
  45.  
  46.             ppg->m_hWnd=hWnd;
  47.             break;
  48.  
  49.  
  50.         case WM_PAINT:
  51.             /*
  52.              * If there is currently a drag-rectangle showing, then
  53.              * remove it before painting.  This insures that
  54.              * painting doesn't blast part of that rectangle away so
  55.              * that when we draw it next, garbage is left around.
  56.              */
  57.             if (ppg->m_fDragRectShown)
  58.                 ppg->DrawDropTargetRect(NULL, NULL);
  59.  
  60.             hDC=BeginPaint(hWnd, &ps);
  61.  
  62.             //Draw only if we have a page to show.
  63.             if (0!=ppg->m_cPages)
  64.                 ppg->Draw(hDC, FALSE, FALSE);
  65.  
  66.             EndPaint(hWnd, &ps);
  67.  
  68.             //Turn the rectangle back on, if necessary.
  69.             if (ppg->m_fDragRectShown)
  70.                 ppg->DrawDropTargetRect(NULL, NULL);
  71.             break;
  72.  
  73.  
  74.         case WM_HSCROLL:
  75.         case WM_VSCROLL:
  76.             idScroll=(WM_HSCROLL==iMsg) ? SB_HORZ : SB_VERT;
  77.  
  78.             iPos=GetScrollPos(hWnd, idScroll);
  79.             iTmp=iPos;
  80.             GetScrollRange(hWnd, idScroll, &iMin, &iMax);
  81.  
  82.             switch (LOWORD(wParam))
  83.                 {
  84.                 case SB_LINEUP:     iPos -= 20;  break;
  85.                 case SB_PAGEUP:     iPos -=100;  break;
  86.                 case SB_LINEDOWN:   iPos += 20;  break;
  87.                 case SB_PAGEDOWN:   iPos +=100;  break;
  88.  
  89.                 case SB_THUMBPOSITION:
  90.                     iPos=ScrollThumbPosition(wParam, lParam);
  91.                     break;
  92.  
  93.                 //We don't want scrolling on this message.
  94.                 case SB_THUMBTRACK:
  95.                     return 0L;
  96.                 }
  97.  
  98.             iPos=max(iMin, min(iPos, iMax));
  99.  
  100.             if (iPos!=iTmp)
  101.                 {
  102.                 //Set the new position and scroll the window
  103.                 SetScrollPos(hWnd, idScroll, iPos, TRUE);
  104.  
  105.                 if (SB_HORZ==idScroll)
  106.                     {
  107.                     ppg->m_xPos=iPos;
  108.                     ScrollWindow(hWnd, iTmp-iPos, 0, NULL, NULL);
  109.                     }
  110.                 else
  111.                     {
  112.                     ppg->m_yPos=iPos;
  113.                     ScrollWindow(hWnd, 0, iTmp-iPos, NULL, NULL);
  114.                     }
  115.                 }
  116.  
  117.             /*
  118.              * This tells the page to update the rects for the current
  119.              * in-place object.
  120.              */
  121.             if (NULL!=ppg->m_pPageCur)
  122.                 ppg->m_pPageCur->ScrolledWindow();
  123.  
  124.             break;
  125.  
  126.         case WM_RBUTTONDOWN:
  127.             if (NULL==ppg->m_pPageCur)
  128.                 break;
  129.  
  130.             fDirty=ppg->m_pPageCur->OnRightDown(wParam
  131.                 , LOWORD(lParam), HIWORD(lParam));
  132.             break;
  133.  
  134.         case WM_LBUTTONDOWN:
  135.             if (NULL==ppg->m_pPageCur)
  136.                 break;
  137.  
  138.             fDirty=ppg->m_pPageCur->OnLeftDown(wParam
  139.                 , LOWORD(lParam), HIWORD(lParam));
  140.             break;
  141.  
  142.         case WM_LBUTTONUP:
  143.             if (NULL==ppg->m_pPageCur)
  144.                 break;
  145.  
  146.             fDirty=ppg->m_pPageCur->OnLeftUp(wParam
  147.                 , LOWORD(lParam), HIWORD(lParam));
  148.             break;
  149.  
  150.         case WM_LBUTTONDBLCLK:
  151.             if (NULL==ppg->m_pPageCur)
  152.                 break;
  153.  
  154.             fDirty=ppg->m_pPageCur->OnLeftDoubleClick(wParam, LOWORD(lParam)
  155.                 , HIWORD(lParam));
  156.             break;
  157.  
  158.         case WM_MOUSEMOVE:
  159.             if (NULL==ppg->m_pPageCur)
  160.                 break;
  161.  
  162.             ppg->m_pPageCur->OnMouseMove(wParam, LOWORD(lParam)
  163.                 , HIWORD(lParam));
  164.             break;
  165.  
  166.         case WM_TIMER:
  167.             if (NULL==ppg->m_pPageCur)
  168.                 break;
  169.  
  170.             ppg->m_pPageCur->OnTimer(wParam);
  171.             break;
  172.  
  173.         case WM_NCHITTEST:
  174.             if (NULL!=ppg->m_pPageCur)
  175.                 {
  176.                 /*
  177.                  * This just saves information in the page for
  178.                  * OnSetCursor
  179.                  */
  180.                 ppg->m_pPageCur->OnNCHitTest(LOWORD(lParam)
  181.                     , HIWORD(lParam));
  182.                 }
  183.  
  184.             return DefWindowProc(hWnd, iMsg, wParam, lParam);
  185.  
  186.         case WM_SETCURSOR:
  187.             if (NULL!=ppg->m_pPageCur)
  188.                 {
  189.                 if (ppg->m_pPageCur->OnSetCursor(LOWORD(lParam)))
  190.                     break;
  191.                 }
  192.  
  193.             return DefWindowProc(hWnd, iMsg, wParam, lParam);
  194.  
  195.  
  196.         default:
  197.             return DefWindowProc(hWnd, iMsg, wParam, lParam);
  198.         }
  199.  
  200.     ppg->m_fDirty |= fDirty;
  201.     return 0L;
  202.     }
  203.  
  204.  
  205.  
  206. /*
  207.  * RectConvertMappings
  208.  *
  209.  * Purpose:
  210.  *  Converts the contents of a rectangle from device to logical
  211.  *  coordinates where the hDC defines the logical coordinates.
  212.  *
  213.  * Parameters:
  214.  *  pRect           LPRECT containing the rectangle to convert.
  215.  *  hDC             HDC describing the logical coordinate system.
  216.  *                  if NULL, uses a screen DC in MM_LOMETRIC.
  217.  *  fToDevice       BOOL TRUE to convert from uConv to device,
  218.  *                  FALSE to convert device to uConv.
  219.  *
  220.  * Return Value:
  221.  *  None
  222.  */
  223.  
  224. void RectConvertMappings(LPRECT pRect, HDC hDC, BOOL fToDevice)
  225.     {
  226.     POINT   rgpt[2];
  227.     BOOL    fSysDC=FALSE;
  228.  
  229.     if (NULL==pRect)
  230.         return;
  231.  
  232.     rgpt[0].x=pRect->left;
  233.     rgpt[0].y=pRect->top;
  234.     rgpt[1].x=pRect->right;
  235.     rgpt[1].y=pRect->bottom;
  236.  
  237.     if (NULL==hDC)
  238.         {
  239.         hDC=GetDC(NULL);
  240.         SetMapMode(hDC, MM_LOMETRIC);
  241.         fSysDC=TRUE;
  242.         }
  243.  
  244.     if (fToDevice)
  245.         LPtoDP(hDC, rgpt, 2);
  246.     else
  247.         DPtoLP(hDC, rgpt, 2);
  248.  
  249.     if (fSysDC)
  250.         ReleaseDC(NULL, hDC);
  251.  
  252.     pRect->left=rgpt[0].x;
  253.     pRect->top=rgpt[0].y;
  254.     pRect->right=rgpt[1].x;
  255.     pRect->bottom=rgpt[1].y;
  256.  
  257.     return;
  258.     }
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265. /*
  266.  * CPages::Draw
  267.  *
  268.  * Purpose:
  269.  *  Paints the current page in the pages window.
  270.  *
  271.  * Parameters:
  272.  *  hDC             HDC to draw on, could be a metafile or printer
  273.  *                  DC or any other type of DC.
  274.  *  fNoColor        BOOL indicating if we should use screen colors
  275.  *                  or printer colors (B&W).  Objects are printed
  276.  *                  as-is, however.  This is TRUE for printer DCs
  277.  *                  or print preview.
  278.  *  fPrinter        BOOL indicating if this is a printer DC in which
  279.  *                  case we eliminate some of the fancy drawing,
  280.  *                  like shadows on the page and so forth.
  281.  *
  282.  * Return Value:
  283.  *  None
  284.  */
  285.  
  286. void CPages::Draw(HDC hDC, BOOL fNoColor, BOOL fPrinter)
  287.     {
  288.     RECT            rc, rcT;
  289.     UINT            uMM;
  290.     HPEN            hPen;
  291.     HBRUSH          hBrush;
  292.     HGDIOBJ         hObj1, hObj2;
  293.     COLORREF        cr;
  294.     TCHAR           szTemp[20];
  295.     UINT            cch;
  296.     SIZE            sz;
  297.     PCPage          pPage;
  298.     RECT            rcPos;
  299.  
  300.     //Make sure the DC is in LOMETRIC
  301.     uMM=SetMapMode(hDC, MM_LOMETRIC);
  302.  
  303.     if (!fPrinter)
  304.         {
  305.         /*
  306.          * We maintain a 6mm border around the page on the screen
  307.          * besides 12.7mm margins.  We also have to account for
  308.          * the scroll position with m_*Pos which are in pixels so
  309.          * we have to convert them.
  310.          */
  311.  
  312.         SetRect(&rcPos, m_xPos, m_yPos, 0, 0);
  313.         RectConvertMappings(&rcPos, hDC, FALSE);
  314.  
  315.         rc.left  = LOMETRIC_BORDER-rcPos.left;
  316.         rc.top   =-LOMETRIC_BORDER-rcPos.top;
  317.         }
  318.     else
  319.         {
  320.         /*
  321.          * We define the corner of the printed paper at a negative
  322.          * offset so rc.right and rc.bottom come out right below.
  323.          */
  324.         SetRect(&rc, -(int)m_xMarginLeft, m_yMarginTop, 0, 0);
  325.         }
  326.  
  327.     rc.right=rc.left+m_cx+(m_xMarginLeft+m_xMarginRight);
  328.     rc.bottom=rc.top-m_cy-(m_yMarginTop+m_yMarginBottom);
  329.  
  330.     //Draw a rect filled with the window color to show the page.
  331.     if (!fPrinter)
  332.         {
  333.         if (fNoColor)
  334.             {
  335.             //Black frame, white box for printed colors.
  336.             hPen  =CreatePen(PS_SOLID, 0, RGB(0,0,0));
  337.             hBrush=CreateSolidBrush(RGB(255, 255, 255));
  338.             }
  339.         else
  340.             {
  341.             //Normal colors on display
  342.             hPen=CreatePen(PS_SOLID, 0
  343.                 , GetSysColor(COLOR_WINDOWFRAME));
  344.             hBrush=CreateSolidBrush(GetSysColor(COLOR_WINDOW));
  345.             }
  346.  
  347.         hObj1=SelectObject(hDC, hPen);
  348.         hObj2=SelectObject(hDC, hBrush);
  349.  
  350.         //Paper boundary
  351.         Rectangle(hDC, rc.left, rc.top, rc.right, rc.bottom+1);
  352.  
  353.         /*
  354.          * Draw a shadow on the *visual* bottom and right edges
  355.          * .5mm wide.  If the button shadow color and workspace
  356.          * colors match, then use black.  We always use black
  357.          * when printing as well.
  358.          */
  359.         if (fNoColor)
  360.             cr=RGB(0,0,0);
  361.         else
  362.             {
  363.             cr=GetSysColor(COLOR_BTNSHADOW);
  364.  
  365.             if (GetSysColor(COLOR_APPWORKSPACE)==cr)
  366.                 cr=RGB(0,0,0);
  367.             }
  368.  
  369.         cr=SetBkColor(hDC, cr);
  370.         SetRect(&rcT, rc.left+5, rc.bottom, rc.right+5,rc.bottom-5);
  371.         ExtTextOut(hDC, 0, 0, ETO_OPAQUE, &rcT, NULL, 0, NULL);
  372.  
  373.         SetRect(&rcT, rc.right, rc.top-5, rc.right+5, rc.bottom-5);
  374.         ExtTextOut(hDC, 0, 0, ETO_OPAQUE, &rcT, NULL, 0, NULL);
  375.         SetBkColor(hDC, cr);
  376.  
  377.         SelectObject(hDC, hObj1);
  378.         SelectObject(hDC, hObj2);
  379.         DeleteObject(hBrush);
  380.         DeleteObject(hPen);
  381.         }
  382.  
  383.     //Write the page number in the lower left corner
  384.     if (!fNoColor)
  385.         {
  386.         SetTextColor(hDC, GetSysColor(COLOR_WINDOWTEXT));
  387.         SetBkColor(hDC, GetSysColor(COLOR_WINDOW));
  388.         }
  389.  
  390.     //Write the page number in our page font.
  391.     cch=wsprintf(szTemp, TEXT("Page %d"), m_iPageCur+1);
  392.  
  393.     hObj1=SelectObject(hDC, m_hFont);
  394.     GetTextExtentPoint(hDC, szTemp, cch, &sz);
  395.  
  396.     TextOut(hDC, rc.left+m_xMarginLeft
  397.         , rc.bottom+m_yMarginBottom+sz.cy, szTemp, cch);
  398.  
  399.     SelectObject(hDC, hObj1);
  400.  
  401.     //Rectangle to show border.
  402.     MoveToEx(hDC, rc.left+m_xMarginLeft, rc.top-m_yMarginTop, NULL);
  403.     LineTo(hDC, rc.left+m_xMarginLeft,   rc.bottom+m_yMarginBottom);
  404.     LineTo(hDC, rc.right-m_xMarginRight, rc.bottom+m_yMarginBottom);
  405.     LineTo(hDC, rc.right-m_xMarginRight, rc.top-m_yMarginTop);
  406.     LineTo(hDC, rc.left+m_xMarginLeft,   rc.top-m_yMarginTop);
  407.  
  408.     /*
  409.      * Go draw the objects on this page.  If the page is not open,
  410.      * we open it anyway.  If it is already open, then opening again
  411.      * will bump it's reference count, so the Close in ineffectual.
  412.      */
  413.     if (PageGet(m_iPageCur, &pPage, TRUE))
  414.         {
  415.         if (!fPrinter)
  416.             {
  417.             pPage->Draw(hDC, rcPos.left, rcPos.top, fNoColor
  418.                 , fPrinter);
  419.             }
  420.         else
  421.             pPage->Draw(hDC, 0, 0, fNoColor, fPrinter);
  422.  
  423.         pPage->Close(FALSE);
  424.         }
  425.  
  426.     SetMapMode(hDC, uMM);
  427.     return;
  428.     }
  429.  
  430.  
  431.  
  432.  
  433.  
  434. /*
  435.  * CPages::UpdateScrollRanges
  436.  *
  437.  * Purpose:
  438.  *  Reset scrollbar ranges (horizontal and vertical) depending on
  439.  *  the window size and the page size.  This function may remove
  440.  *  the scrollbars altogether.
  441.  *
  442.  * Parameters:
  443.  *  None, but set m_cx, m_cy and size m_hWnd before calling.
  444.  *
  445.  * Return Value:
  446.  *  None
  447.  */
  448.  
  449. void CPages::UpdateScrollRanges(void)
  450.     {
  451.     UINT        cxSB;   //Scrollbar width and height.
  452.     UINT        cySB;
  453.     UINT        cx, cy;
  454.     UINT        dx, dy;
  455.     UINT        u;
  456.     int         iMin, iMax;
  457.     RECT        rc;
  458.     BOOL        fHScroll;
  459.     BOOL        fVScroll;
  460.     BOOL        fWasThere;
  461.  
  462.     GetClientRect(m_hWnd, &rc);
  463.  
  464.     cx=rc.right-rc.left;
  465.     cy=rc.bottom-rc.top;
  466.  
  467.     //Convert dimensions of the image in LOMETRIC to pixels.
  468.     SetRect(&rc, (m_cx+m_xMarginLeft+m_xMarginRight
  469.         +LOMETRIC_BORDER*2), (m_cy+m_yMarginTop
  470.         +m_yMarginBottom+LOMETRIC_BORDER*2), 0, 0);
  471.  
  472.     RectConvertMappings(&rc, NULL, TRUE);
  473.  
  474.     dx=rc.left;
  475.     dy=-rc.top;
  476.  
  477.     //Assume that both scrollbars will be visible.
  478.     fHScroll=TRUE;
  479.     fVScroll=TRUE;
  480.  
  481.     /*
  482.      * Determine:
  483.      *  1)  Which scrollbars are needed.
  484.      *  2)  How many divisions to give scrollbars so as to
  485.      *      only scroll as little as necessary.
  486.      */
  487.  
  488.     //Scrollbar dimensions in our units.
  489.     cxSB=GetSystemMetrics(SM_CXVSCROLL);
  490.     cySB=GetSystemMetrics(SM_CYHSCROLL);
  491.  
  492.     //Remove horizontal scroll if window >= cxPage+borders
  493.     if (cx >= dx)
  494.         fHScroll=FALSE;
  495.  
  496.  
  497.     /*
  498.      * If we still need a horizontal scroll, see if we need a
  499.      * vertical taking the height of the horizontal scroll into
  500.      * account.
  501.      */
  502.  
  503.     u=fHScroll ? cySB : 0;
  504.  
  505.     if ((cy-u) >= dy)
  506.         fVScroll=FALSE;
  507.  
  508.     //Check if adding vert scrollbar necessitates a horz now.
  509.     u=fVScroll ? cxSB : 0;
  510.     fHScroll=((cx-u) < dx);
  511.  
  512.     /*
  513.      * Modify cx,cy to reflect the new client area before scaling
  514.      * scrollbars.  We only affect the client size if there is a
  515.      * *change* in scrollbar status:  if the scrollbar was there
  516.      * but is no longer, then add to the client size; if it was
  517.      * not there but now is, then subtract.
  518.      */
  519.  
  520.     //Change cx depending on vertical scrollbar change
  521.     GetScrollRange(m_hWnd, SB_VERT, &iMin, &iMax);
  522.     fWasThere=(0!=iMin || 0!=iMax);
  523.  
  524.     if (fWasThere && !fVScroll)
  525.         cx+=cxSB;
  526.  
  527.     if (!fWasThere && fVScroll)
  528.         cx-=cxSB;
  529.  
  530.     //Change cy depending on horizontal scrollbar change
  531.     GetScrollRange(m_hWnd, SB_HORZ, &iMin, &iMax);
  532.     fWasThere=(0!=iMin || 0!=iMax);
  533.  
  534.     if (fWasThere && !fHScroll)
  535.         cy+=cySB;
  536.  
  537.     if (!fWasThere && fHScroll)
  538.         cy-=cySB;
  539.  
  540.  
  541.     /*
  542.      * Show/Hide the scrollbars if necessary and set the ranges.
  543.      * The range is the number of units of the page we cannot see.
  544.      */
  545.     if (fHScroll)
  546.         {
  547.         //Convert current scroll position to new range.
  548.         u=GetScrollPos(m_hWnd, SB_HORZ);
  549.  
  550.         if (0!=u)
  551.             {
  552.             GetScrollRange(m_hWnd, SB_HORZ, &iMin, &iMax);
  553.             u=MulDiv(u, (dx-cx), (iMax-iMin));
  554.             }
  555.  
  556.         SetScrollRange(m_hWnd, SB_HORZ, 0, dx-cx, FALSE);
  557.         SetScrollPos(m_hWnd, SB_HORZ, u, TRUE);
  558.         m_xPos=u;
  559.         }
  560.     else
  561.         {
  562.         SetScrollRange(m_hWnd, SB_HORZ, 0, 0, TRUE);
  563.         m_xPos=0;
  564.         }
  565.  
  566.     if (fVScroll)
  567.         {
  568.         //Convert current scroll position to new range.
  569.         u=GetScrollPos(m_hWnd, SB_VERT);
  570.  
  571.         if (0!=u)
  572.             {
  573.             GetScrollRange(m_hWnd, SB_VERT, &iMin, &iMax);
  574.             u=MulDiv(u, (dy-cy), (iMax-iMin));
  575.             }
  576.  
  577.         SetScrollRange(m_hWnd, SB_VERT, 0, dy-cy, FALSE);
  578.         SetScrollPos(m_hWnd, SB_VERT, u, TRUE);
  579.  
  580.         m_yPos=u;
  581.         }
  582.     else
  583.         {
  584.         SetScrollRange(m_hWnd, SB_VERT, 0, 0, TRUE);
  585.         m_yPos=0;
  586.         }
  587.  
  588.     //Repaint to insure that changes to m_x/yPos are reflected
  589.     InvalidateRect(m_hWnd, NULL, TRUE);
  590.  
  591.     return;
  592.     }
  593.