Implement printing in notepad.

This commit is contained in:
Duane Clark 2002-10-21 18:22:15 +00:00 committed by Alexandre Julliard
parent 99cd0de7d9
commit 4eb4c042cc

View file

@ -357,23 +357,46 @@ VOID DIALOG_FileSaveAs(VOID)
VOID DIALOG_FilePrint(VOID) VOID DIALOG_FilePrint(VOID)
{ {
LONG bFlags, nBase; LONG bFlags;
WORD nOffset;
DOCINFO di; DOCINFO di;
int nResult; int nResult;
HDC hContext; HDC hContext;
PRINTDLG printer; PRINTDLG printer;
char *pDevNamesSpace;
LPDEVNAMES lpDevNames;
SIZE szMetric;
int cWidthPels, cHeightPels, border;
int xLeft, yTop, count, i, pagecount, dopage, copycount;
LOGFONT hdrFont;
HFONT font, old_font=0;
CHAR *pTemp;
int size;
CHAR szDocumentName[MAX_STRING_LEN]; /* Name of document */ CHAR szDocumentName[MAX_STRING_LEN]; /* Name of document */
CHAR szPrinterName[MAX_STRING_LEN]; /* Name of the printer */ CHAR szPrinterName[MAX_STRING_LEN]; /* Name of the printer */
CHAR szDeviceName[MAX_STRING_LEN]; /* Name of the printer device */ CHAR szDeviceName[MAX_STRING_LEN]; /* Name of the printer device */
CHAR szOutput[MAX_STRING_LEN]; /* in which file/device to print */ CHAR szOutput[MAX_STRING_LEN]; /* in which file/device to print */
/* LPDEVMODE hDevMode; */ strcpy(szDocumentName, Globals.szFileTitle);
/* LPDEVNAMES hDevNames; */ count = strlen(szDocumentName);
/* hDevMode = GlobalAlloc(GMEM_MOVEABLE + GMEM_ZEROINIT, sizeof(DEVMODE)); */ /* Get a small font and print some header info on each page */
/* hDevNames = GlobalAlloc(GMEM_MOVEABLE + GMEM_ZEROINIT, sizeof(DEVNAMES)); */ hdrFont.lfHeight = 100;
hdrFont.lfWidth = 0;
hdrFont.lfEscapement = 0;
hdrFont.lfOrientation = 0;
hdrFont.lfWeight = FW_BOLD;
hdrFont.lfItalic = 0;
hdrFont.lfUnderline = 0;
hdrFont.lfStrikeOut = 0;
hdrFont.lfCharSet = ANSI_CHARSET;
hdrFont.lfOutPrecision = OUT_DEFAULT_PRECIS;
hdrFont.lfClipPrecision = CLIP_DEFAULT_PRECIS;
hdrFont.lfQuality = PROOF_QUALITY;
hdrFont.lfPitchAndFamily = VARIABLE_PITCH | FF_ROMAN;
strcpy(hdrFont.lfFaceName, "Times New Roman");
font = CreateFontIndirect(&hdrFont);
/* Get Current Settings */ /* Get Current Settings */
ZeroMemory(&printer, sizeof(printer)); ZeroMemory(&printer, sizeof(printer));
@ -381,77 +404,136 @@ VOID DIALOG_FilePrint(VOID)
printer.hwndOwner = Globals.hMainWnd; printer.hwndOwner = Globals.hMainWnd;
printer.hInstance = Globals.hInstance; printer.hInstance = Globals.hInstance;
nResult = PrintDlg(&printer);
/* hContext = CreateDC(, szDeviceName, "TEST.TXT", 0); */
/* Congratulations to those Microsoft Engineers responsible */
/* for the following pointer acrobatics */
assert(printer.hDevNames!=0);
nBase = (LONG)(printer.hDevNames);
nOffset = (WORD)((LPDEVNAMES) printer.hDevNames)->wDriverOffset;
lstrcpy(szPrinterName, (LPSTR) (nBase + nOffset));
nOffset = (WORD)((LPDEVNAMES) printer.hDevNames)->wDeviceOffset;
lstrcpy(szDeviceName, (LPSTR) (nBase + nOffset));
nOffset = (WORD)((LPDEVNAMES) printer.hDevNames)->wOutputOffset;
lstrcpy(szOutput, (LPSTR) (nBase + nOffset));
MessageBox(Globals.hMainWnd, szPrinterName, "Printer Name", MB_ICONEXCLAMATION);
MessageBox(Globals.hMainWnd, szDeviceName, "Device Name", MB_ICONEXCLAMATION);
MessageBox(Globals.hMainWnd, szOutput, "Output", MB_ICONEXCLAMATION);
/* Set some default flags */ /* Set some default flags */
bFlags = PD_RETURNDC + PD_SHOWHELP; bFlags = PD_RETURNDC + PD_SHOWHELP;
if (TRUE) { if (TRUE) {
/* Remove "Print Selection" if there is no selection */ /* Remove "Print Selection" if there is no selection */
bFlags = bFlags + PD_NOSELECTION; bFlags = bFlags + PD_NOSELECTION;
} }
printer.Flags = bFlags; printer.Flags = bFlags;
/* printer.nFromPage = 1;
printer.nFromPage = 0; printer.nMinPage = 1;
printer.nToPage = 0; /* we really need to calculate number of pages to set nMaxPage and nToPage */
printer.nMinPage = 0; printer.nToPage = 20;
printer.nMaxPage = 0; printer.nMaxPage = 20;
*/
/* Let commdlg manage copy settings */ /* Let commdlg manage copy settings */
printer.nCopies = (WORD)PD_USEDEVMODECOPIES; printer.nCopies = (WORD)PD_USEDEVMODECOPIES;
if (PrintDlg(&printer)) { nResult = PrintDlg(&printer);
if (printer.hDevNames==0)
return;
if (!nResult) {
MessageBox(Globals.hMainWnd, "PrintDlg failed", "Print Error", MB_ICONEXCLAMATION);
return;
}
hContext = printer.hDC;
pDevNamesSpace = GlobalLock(printer.hDevNames);
lpDevNames = (LPDEVNAMES) pDevNamesSpace;
lstrcpy(szPrinterName, pDevNamesSpace+lpDevNames->wDriverOffset);
lstrcpy(szDeviceName, pDevNamesSpace+lpDevNames->wDeviceOffset);
lstrcpy(szOutput, pDevNamesSpace+lpDevNames->wOutputOffset);
GlobalUnlock(printer.hDevNames);
/*
MessageBox(Globals.hMainWnd, szPrinterName, "Printer Name", MB_ICONEXCLAMATION);
MessageBox(Globals.hMainWnd, szDeviceName, "Device Name", MB_ICONEXCLAMATION);
MessageBox(Globals.hMainWnd, szOutput, "Output", MB_ICONEXCLAMATION);
*/
/* initialize DOCINFO */ /* initialize DOCINFO */
di.cbSize = sizeof(DOCINFO); di.cbSize = sizeof(DOCINFO);
lstrcpy((LPSTR)di.lpszDocName, szDocumentName); di.lpszDocName = szDocumentName;
lstrcpy((LPSTR)di.lpszOutput, szOutput); di.lpszOutput = szOutput;
di.lpszDatatype = (LPTSTR) NULL;
di.fwType = 0;
hContext = printer.hDC; /* The default resolution is pixels, ie MM_TEXT */
assert(hContext!=0); /* SetMapMode(hContext, MM_TWIPS);*/
assert( (int) hContext!=PD_RETURNDC); /* SetViewPortExExt(hContext, 10, 10, 0);*/
/* SetBkMode(hContext, OPAQUE);*/
SetMapMode(hContext, MM_LOMETRIC); /* Get the page dimensions in pixels. */
/* SetViewPortExExt(hContext, 10, 10, 0); */ cWidthPels = GetDeviceCaps(hContext, HORZRES);
SetBkMode(hContext, OPAQUE); cHeightPels = GetDeviceCaps(hContext, VERTRES);
nResult = TextOut(hContext, 0, 0, " ", 1); /* Get the file text */
assert(nResult != 0); size = GetWindowTextLength(Globals.hEdit);
pTemp = (LPSTR) GlobalAlloc(GMEM_FIXED, size);
if (!pTemp)
{
ShowLastError();
return;
}
GetWindowText(Globals.hEdit, pTemp, size);
if (!size)
{
ShowLastError();
return;
}
/* Okay, let's print */
nResult = StartDoc(hContext, &di); nResult = StartDoc(hContext, &di);
assert(nResult != SP_ERROR); if (nResult <= 0) {
MessageBox(Globals.hMainWnd, "StartDoc failed", "Print Error", MB_ICONEXCLAMATION);
return;
}
border = 150;
for (copycount=1; copycount <= printer.nCopies; copycount++) {
i = 0;
pagecount = 1;
do {
if (pagecount >= printer.nFromPage &&
/* ((printer.Flags & PD_PAGENUMS) == 0 || pagecount <= printer.nToPage))*/
pagecount <= printer.nToPage)
dopage = 1;
else
dopage = 0;
old_font = SelectObject(hContext, font);
GetTextExtentPoint32(hContext, "M", 1, &szMetric);
if (dopage) {
nResult = StartPage(hContext); nResult = StartPage(hContext);
assert(nResult >0); if (nResult <= 0) {
MessageBox(Globals.hMainWnd, "StartPage failed", "Print Error", MB_ICONEXCLAMATION);
return;
}
/* Write a rectangle and header at the top of each page */
Rectangle(hContext, border, border, cWidthPels-border, border+szMetric.cy*2);
/* I don't know what's up with this TextOut command. This comes out
kind of mangled.
*/
TextOut(hContext, border*2, border+szMetric.cy*0.5, szDocumentName, count);
}
/* FIXME: actually print */ /* The starting point for the main text */
xLeft = border*2;
yTop = border+szMetric.cy*4;
nResult = EndPage(hContext); SelectObject(hContext, old_font);
GetTextExtentPoint32(hContext, "M", 1, &szMetric);
/* Since outputting strings is giving me problems, output the main
text one character at a time.
*/
do {
if (pTemp[i] == '\n') {
xLeft = border*2;
yTop += szMetric.cy;
}
else if (pTemp[i] != '\r') {
if (dopage)
TextOut(hContext, xLeft, yTop, &pTemp[i], 1);
xLeft += szMetric.cx;
}
} while (i++<size && yTop<(cHeightPels-border*2));
if (dopage)
EndPage(hContext);
pagecount++;
} while (i<size);
}
switch (nResult) { switch (nResult) {
case SP_ERROR: case SP_ERROR:
@ -470,16 +552,12 @@ VOID DIALOG_FilePrint(VOID)
AlertOutOfMemory(); AlertOutOfMemory();
break; break;
default: default:
MessageBox(Globals.hMainWnd, "Default", "Print", MB_ICONEXCLAMATION); break;
} /* switch */ } /* switch */
nResult = EndDoc(hContext); nResult = EndDoc(hContext);
assert(nResult>=0); assert(nResult>=0);
nResult = DeleteDC(hContext); nResult = DeleteDC(hContext);
assert(nResult!=0); assert(nResult!=0);
} /* if */
/* GlobalFree(hDevNames); */
/* GlobalFree(hDevMode); */
} }
VOID DIALOG_FilePageSetup(VOID) VOID DIALOG_FilePageSetup(VOID)