home *** CD-ROM | disk | FTP | other *** search
- /* Main xped4
-
- Copyright ⌐ 1993. All Rights Reserved.
-
- SUBSYSTEM: xped4.exe Application
- FILE: APXPrint.CPP
- AUTHOR:
-
-
- OVERVIEW
- ========
- Source file for implementation of Printing.
- */
-
-
- #include <owl\owlpch.h>
- #pragma hdrstop
-
- #include <owl\listbox.h>
- #include <owl\edit.h>
- #include <owl\preview.h>
-
- #include "apxprint.h"
-
-
- // Do not enable page range in the print dialog since only one page is
- // available to be printed
- //
- void APXPrintOut::GetDialogInfo (int& minPage, int& maxPage, int& selFromPage, int& selToPage)
- {
- minPage = maxPage = 0;
- selFromPage = selToPage = 0;
- }
-
-
- void APXPrintOut::BeginPrinting ()
- {
- TRect clientR;
-
- BeginPage(clientR);
-
- TFrameWindow *fWindow = TYPESAFE_DOWNCAST(Window, TFrameWindow);
-
- HFONT hFont = (HFONT)fWindow->GetClientWindow()->GetWindowFont();
- TFont font("Arial", -12);
- if (hFont == 0)
- DC->SelectObject(font);
- else
- DC->SelectObject(TFont(hFont));
-
- TEXTMETRIC tm;
- int fHeight = (DC->GetTextMetrics(tm) == TRUE) ? tm.tmHeight + tm.tmExternalLeading : 10;
-
- DC->RestoreFont();
-
- // How many lines of this font can we fit on a page.
- int linesPerPage = MulDiv(clientR.Height(), 1, fHeight);
-
- TPrintDialog::TData &printerData = Printer->GetSetup();
-
- int maxPg = 1;
-
- // Get the client class window (this is the contents we're going to print).
- TEdit *clientEditWindow = 0;
- TListBox *clientListWindow = 0;
-
- clientEditWindow = TYPESAFE_DOWNCAST(fWindow->GetClientWindow(), TEdit);
- if (clientEditWindow)
- maxPg = ((clientEditWindow->GetNumLines() / linesPerPage) + 1.0);
- else {
- clientListWindow = TYPESAFE_DOWNCAST(fWindow->GetClientWindow(), TListBox);
- if (clientListWindow)
- maxPg = ((clientListWindow->GetCount() / linesPerPage) + 1.0);
- }
-
- // Compute the number of pages to print.
- printerData.MinPage = 1;
- printerData.MaxPage = maxPg;
-
- EndPage();
-
- TPrintout::BeginPrinting();
- }
-
-
- void APXPrintOut::BeginPage (TRect &clientR)
- {
- TScreenDC screenDC;
- TSize screenRes(screenDC.GetDeviceCaps(LOGPIXELSX),
- screenDC.GetDeviceCaps(LOGPIXELSY));
- TSize printRes(DC->GetDeviceCaps(LOGPIXELSX),
- DC->GetDeviceCaps(LOGPIXELSY));
-
- // Temporarily change the window size (so any WM_PAINT queries on the total window size (GetClientRect) is
- // the window size for the WM_PAINT of the window and the printer page size when Paint is called from
- // PrintPage. Notice, we don't use AdjustWindowRect because its harder and not accurate. Instead we
- // compute the difference (in pixels) between the client window and the frame window. This difference
- // is then added to the clientRect to compute the new frame window size for SetWindowPos.
- clientR = Window->GetClientRect();
- Window->MapWindowPoints(HWND_DESKTOP, (TPoint*)&clientR, 2);
-
- // Compute extra X and Y pixels to bring a client window dimensions to equal the frame window.
- OrgR = Window->GetWindowRect();
- int adjX = OrgR.Width() - clientR.Width();
- int adjY = OrgR.Height() - clientR.Height();
-
- // Conditionally scale the DC to the window so the printout will resemble the window.
- if (Scale) {
- clientR = Window->GetClientRect();
- PrevMode = DC->SetMapMode(MapMode);
- DC->SetViewportExt(PageSize, &OldVExt);
-
- // Scale window to logical page size (assumes left & top are 0)
- clientR.right = MulDiv(PageSize.cx, screenRes.cx, printRes.cx);
- clientR.bottom = MulDiv(PageSize.cy, screenRes.cy, printRes.cy);
-
- DC->SetWindowExt(clientR.Size(), &OldWExt);
- }
-
- // Compute the new size of the window based on the printer DC dimensions.
- // Resize the window, notice position, order, and redraw are not done the window size changes but the user
- // doesn't see any visible change to the window.
- Window->SetRedraw(FALSE);
- Window->SetWindowPos(0, 0, 0, clientR.Width() + adjX, clientR.Height() + adjY,
- SWP_NOMOVE | SWP_NOREDRAW | SWP_NOZORDER| SWP_NOACTIVATE);
- }
-
-
- void APXPrintOut::PrintPage (int page, TRect& bandRect, unsigned)
- {
- TRect clientR;
-
- BeginPage(clientR);
-
- if (Scale)
- DC->DPtoLP(bandRect, 2);
-
- // Change the printer range to this current page.
- TPrintDialog::TData& printerData = Printer->GetSetup();
- int fromPg = printerData.FromPage;
- int toPg = printerData.ToPage;
-
- printerData.FromPage = page;
- printerData.ToPage = page;
-
- // Call the window to paint itself to the printer DC.
- Window->Paint(*DC, FALSE, bandRect);
-
- printerData.FromPage = fromPg;
- printerData.ToPage = toPg;
-
- if (Scale)
- DC->LPtoDP(bandRect, 2);
-
- EndPage();
- }
-
-
- void APXPrintOut::EndPage ()
- {
- // Resize to original window size, no one's the wiser.
- Window->SetWindowPos(0, 0, 0, OrgR.Width(), OrgR.Height(),
- SWP_NOMOVE | SWP_NOREDRAW | SWP_NOZORDER| SWP_NOACTIVATE);
- Window->SetRedraw(TRUE);
-
- // Restore changes made to the DC
- if (Scale) {
- DC->SetWindowExt(OldWExt);
- DC->SetViewportExt(OldVExt);
- DC->SetMapMode(PrevMode);
- }
- }
-
-
- BOOL APXPrintOut::HasPage (int pageNumber)
- {
- TPrintDialog::TData &printerData = Printer->GetSetup();
-
- return (pageNumber >= printerData.MinPage) && (pageNumber <= printerData.MaxPage);
- }
-