POPTITEM FindOptItem( POPTITEM pOptItem, UINT cOptItem, BYTE DMPubID ) /*++ Routine Description: This function return the first occurence of the DMPubID Arguments: Return Value: Author: 16-Nov-1995 Thu 21:01:26 created Revision History: --*/ { while (cOptItem--) { if (pOptItem->DMPubID == DMPubID) { return(pOptItem); } pOptItem++; } PLOTWARN(("FindOptItem: Cannot Find DMPubID=%u", (UINT)DMPubID)); return(NULL); }
BOOL DevQueryPrintEx( PDEVQUERYPRINT_INFO pDQPInfo ) /*++ Routine Description: This routine determines whether or not the driver can print the job described by pDevMode on the printer described by hPrinter Arguments: pDQPInfo - Pointer to DEVQUERYPRINT_INFO data structure typedef struct _DEVQUERYPRINT_INFO { WORD cbSize; // size of this structure in bytes WORD Level; // Level of this info, 1 for this version HANDLE hPrinter; // handle to the printer for the query DEVMODE *pDevMode; // pointer to the DEVMODE for this job. LPTSTR pszErrorStr; // pointer to the error string buffer. WORD cchErrorStr; // count characters of pszErrorStr passed. WORD cchNeeded; // count characters of pszErrorStr needed. } DEVQUERYPRINT_INFO, *PDEVQUERYPRINT_INFO; cbSize - size of this structure Level - This must be one (1) for this version of structure hPrinter - Identifies the printer on which the job is to be printed. pDevMode - Points to the DEVMODE structure that describes the print job that is to be determined as printable or non-printable by hPrinter. The driver should always validate the DEVMODE structure whenever it is passed in. pszErrorStr - This is the pointer to a null terminated unicode string which to stored the reason for non-printable job. If the job is printable then it return TRUE. If the job is non-printable then it return FALSE, and a null terminated unicode string pointed by the pszErrorStr for the reason by this job is not printable. The size of this buffer in characters is specified by the cchErrorStr. cchErrorStr - Specified the size of pszErrorStr in characters (includs null terminator) when calling this function. If an error string is returned due to the non-printable job (returned FALSE), the driver will set ccchNeeded to the total characters (includes null terminator) required for the pszErrorStr, in this case the driver must always truncate the error string to fit into the pwErrorStr (only if it is not NULL) passed up to the cchErrorStr characters passed. cchNeeded - When driver returned FALSE, it specified total characters required for the pszErrorStr. If cchNeeded returned from the driver is larger then the cchErrorStr then it indicate the passed pszErrorStr is too small to hold the full error string, in this case the driver must always truncate the error string to fit into the pszErrorStr passed up to the cchErrorStr size. Return Value: BOOLEAN - TRUE - The job is printable and should not be hold. FALSE - The job is not printable and cchNeeded in the DEVQUERYPRINT_INFO data structure specified total characters required for the pszErrorStr. If returned cchNeeded is greater then cchErrorStr passed then it indicated that pszErrorStr is too small for storing the error string, in this case the driver must always truncate the error string to fit into the pszErrorStr passed, up to the cchErrorStr characters. *Note* The driver should have some predefined generic resource error strings for some possible known errors. such as memroy allocation error, data file not found, invalid devmode,... for returning non devmode related errors. The caller can pre-allocated larger buffer (such as 256 wchars) for storing the error string rather than calling this function twice. Author: 07-Feb-1996 Wed 20:37:31 created -by- Daniel Chou (danielc) Revision History: --*/ { PPRINTERINFO pPI = NULL; LONG ErrorResID = 0; static WCHAR wFormat1[] = L"<%s> %!"; // // if it passed a NULL DEVMODE then we just honor it to said can print // pDQPInfo->cchNeeded = 0; ErrorResID = IDS_FORM_NOT_AVAI; if (!pDQPInfo->pDevMode) { PLOTWARN(("DevQueryPrint: No DEVMODE passed, CANNOT PRINT")); ErrorResID = IDS_INVALID_DATA; } else if (!(pPI = MapPrinter(pDQPInfo->hPrinter, (PPLOTDEVMODE)pDQPInfo->pDevMode, (LPDWORD)&ErrorResID, MPF_DEVICEDATA))) { // // The MapPrinter will allocate memory, set default devmode, reading // and validating the GPC then update from current pritner registry, // PLOTRIP(("DevQueryPrint: MapPrinter() failed")); } else if (pPI->dmErrBits & (USER_PAPER | DM_FORMNAME)) { // // We encounter some errors, and the form has been set to default // PLOTWARN(("DevQueryPrint: CAN'T PRINT, dmErrBits=%08lx (PAPER/FORM)", pPI->dmErrBits)); } else if ((pPI->PlotDM.dm.dmFields & DM_FORMNAME) && (wcscmp(pPI->CurPaper.Name, pPI->PlotDM.dm.dmFormName) == 0)) { // // We can print this form now // ErrorResID = 0; PLOTDBG(DBG_DEVQPRINT, ("DevQueryPrint: Match FormName=%s", pPI->PlotDM.dm.dmFormName)); } else if ((!pPI->CurPaper.Size.cy) || (((pPI->PlotDM.dm.dmFields & USER_PAPER) == USER_PAPER) && (pPI->PlotDM.dm.dmPaperSize == DMPAPER_USER)) || (pPI->PPData.Flags & PPF_SMALLER_FORM)) { LONG lTmp; SIZEL szl; BOOL VarLenPaper; // // 1. If we have ROLL PAPER Installed OR // 2. User Defined Paper Size // 3. User said OK to print smaller form then installed one // // THEN we want to see if it can fit into the device installed form // szl.cx = DMTOSPL(pPI->PlotDM.dm.dmPaperWidth); szl.cy = DMTOSPL(pPI->PlotDM.dm.dmPaperLength); if (VarLenPaper = (BOOL)!pPI->CurPaper.Size.cy) { pPI->CurPaper.Size.cy = pPI->pPlotGPC->DeviceSize.cy; } PLOTDBG(DBG_DEVQPRINT, ("DevQueryPrint: CurPaper=%ldx%ld, Req=%ldx%ld, VarLen=%ld", pPI->CurPaper.Size.cx, pPI->CurPaper.Size.cy, szl.cx, szl.cy, VarLenPaper)); // // One of Following conditions met in that sequence then we can print // the form on loaded paper // // 1. Same size (PORTRAIT or LANDSCAPE) // 2. Larger Size (PORTRAIT or LANDSCAPE) AND // Not a variable length paper AND // PPF_SAMLLER_FORM flag set // if ((pPI->CurPaper.Size.cx < szl.cx) || (pPI->CurPaper.Size.cy < szl.cy)) { // // Swap this so we can do one easier comparsion later // SWAP(szl.cx, szl.cy, lTmp); } if ((pPI->CurPaper.Size.cx >= szl.cx) && (pPI->CurPaper.Size.cy >= szl.cy)) { if ((!VarLenPaper) && (!(pPI->PPData.Flags & PPF_SMALLER_FORM)) && ((pPI->CurPaper.Size.cx > szl.cx) || (pPI->CurPaper.Size.cy > szl.cy))) { PLOTDBG(DBG_DEVQPRINT, ("DevQueryPrint: CAN'T PRINT: user DO NOT want print on larger paper")); } else { PLOTDBG(DBG_DEVQPRINT, ("DevQueryPrint: Paper Size FITS in DEVICE, %ld x %ld", szl.cx, szl.cy)); ErrorResID = 0; } } else { DQPsprintf((HINSTANCE)hPlotUIModule, pDQPInfo->pszErrorStr, pDQPInfo->cchErrorStr, &(pDQPInfo->cchNeeded), wFormat1, pPI->PlotDM.dm.dmFormName, IDS_FORM_TOO_BIG); PLOTDBG(DBG_DEVQPRINT, ("DevQueryPrint: CAN'T PRINT: Form Size too small")); } } PLOTDBG(DBG_DEVQPRINT, ("DevQueryPrint: %s PRINT %s", (ErrorResID) ? "CAN'T" : "OK to", pPI->PlotDM.dm.dmFormName)); if ((!pDQPInfo->cchNeeded) && (ErrorResID)) { switch (ErrorResID) { case IDS_FORM_NOT_AVAI: DQPsprintf((HINSTANCE)hPlotUIModule, pDQPInfo->pszErrorStr, pDQPInfo->cchErrorStr, &(pDQPInfo->cchNeeded), wFormat1, pPI->PlotDM.dm.dmFormName, IDS_FORM_NOT_AVAI); break; default: DQPsprintf((HINSTANCE)hPlotUIModule, pDQPInfo->pszErrorStr, pDQPInfo->cchErrorStr, &(pDQPInfo->cchNeeded), L"%!", ErrorResID); break; } } // // Unget the printer GPC mapping if we got one // if (pPI) { UnMapPrinter(pPI); } return((!ErrorResID) && (!pDQPInfo->cchNeeded)); }
BOOL WINAPI DevQueryPrint( HANDLE hPrinter, DEVMODE *pDM, DWORD *pdwErrIDS ) /*++ Routine Description: This routine determines whether or not the driver can print the job described by pDevMode on the printer described by hPrinter. If if can, it puts zero into pdwErrIDS. If it cannot, it puts the resource id of the string describing why it could not. Arguments: hPrinter - Handle to the printer to be checked pDM - Point to the DEVMODE passed in pdwErrIDS - Point the the DWORD to received resource string ID number for the error. Return Value: This routine returns TRUE for success, FALSE for failure. when it return TRUE, the *pdwErrIDS determine if it can print or not, if *pdwErrIDS == 0, then it can print else it contains the string ID for the reason why it can not print. Author: 07-Dec-1993 Tue 00:50:32 created -by- Daniel Chou (danielc) 14-Jun-1994 Tue 22:43:36 updated -by- Daniel Chou (danielc) Make installed RollPaper always print if the size is reasonable Revision History: --*/ { PPRINTERINFO pPI = NULL; // // if it passed a NULL DEVMODE then we just honor it to said can print // if (!pDM) { PLOTWARN(("DevQueryPrint: No DEVMODE passed, CANNOT PRINT")); *pdwErrIDS = IDS_INV_DMSIZE; return(TRUE); } if (!(pPI = MapPrinter(hPrinter, (PPLOTDEVMODE)pDM, pdwErrIDS, MPF_DEVICEDATA))) { // // The MapPrinter will allocate memory, set default devmode, reading // and validating the GPC then update from current pritner registry, // PLOTRIP(("DevQueryPrint: MapPrinter() failed")); return(TRUE); } // // Assume this error // *pdwErrIDS = IDS_FORM_NOT_AVAI; if (pPI->dmErrBits & (USER_PAPER | DM_FORMNAME)) { // // We encounter some errors, and the form has been set to default // PLOTWARN(("DevQueryPrint: CAN'T PRINT, dmErrBits=%08lx (PAPER/FORM)", pPI->dmErrBits)); } else if ((pPI->PlotDM.dm.dmFields & DM_FORMNAME) && (wcscmp(pPI->CurPaper.Name, pPI->PlotDM.dm.dmFormName) == 0)) { // // We can print this form now // *pdwErrIDS = 0; PLOTDBG(DBG_DEVQPRINT, ("DevQueryPrint: Match FormName=%s", pPI->PlotDM.dm.dmFormName)); } else if ((!pPI->CurPaper.Size.cy) || (((pPI->PlotDM.dm.dmFields & USER_PAPER) == USER_PAPER) && (pPI->PlotDM.dm.dmPaperSize == DMPAPER_USER)) || (pPI->PPData.Flags & PPF_SMALLER_FORM)) { LONG lTmp; SIZEL szl; BOOL VarLenPaper; // // 1. If we have ROLL PAPER Installed OR // 2. User Defined Paper Size // 3. User said OK to print smaller form then installed one // // THEN we want to see if it can fit into the device installed form // szl.cx = DMTOSPL(pPI->PlotDM.dm.dmPaperWidth); szl.cy = DMTOSPL(pPI->PlotDM.dm.dmPaperLength); if (VarLenPaper = (BOOL)!pPI->CurPaper.Size.cy) { pPI->CurPaper.Size.cy = pPI->pPlotGPC->DeviceSize.cy; } PLOTDBG(DBG_DEVQPRINT, ("DevQueryPrint: CurPaper=%ldx%ld, Req=%ldx%ld, VarLen=%ld", pPI->CurPaper.Size.cx, pPI->CurPaper.Size.cy, szl.cx, szl.cy, VarLenPaper)); // // One of Following conditions met in that sequence then we can print // the form on loaded paper // // 1. Same size (PORTRAIT or LANDSCAPE) // 2. Larger Size (PORTRAIT or LANDSCAPE) AND // Not a variable length paper AND // PPF_SAMLLER_FORM flag set // if ((pPI->CurPaper.Size.cx < szl.cx) || (pPI->CurPaper.Size.cy < szl.cy)) { // // Swap this so we can do one easier comparsion later // SWAP(szl.cx, szl.cy, lTmp); } if ((pPI->CurPaper.Size.cx >= szl.cx) && (pPI->CurPaper.Size.cy >= szl.cy)) { if ((!VarLenPaper) && (!(pPI->PPData.Flags & PPF_SMALLER_FORM)) && ((pPI->CurPaper.Size.cx > szl.cx) || (pPI->CurPaper.Size.cy > szl.cy))) { PLOTDBG(DBG_DEVQPRINT, ("DevQueryPrint: CAN'T PRINT: user DO NOT want print on larger paper")); } else { PLOTDBG(DBG_DEVQPRINT, ("DevQueryPrint: Paper Size FITS in DEVICE, %ld x %ld", szl.cx, szl.cy)); *pdwErrIDS = 0; } } else { PLOTDBG(DBG_DEVQPRINT, ("DevQueryPrint: CAN'T PRINT: Form Size too small")); } } PLOTDBG(DBG_DEVQPRINT, ("DevQueryPrint: %s PRINT %s", (*pdwErrIDS) ? "CAN'T" : "OK to", pPI->PlotDM.dm.dmFormName)); // // Unget the printer GPC mapping if we got one // UnMapPrinter(pPI); return(TRUE); }
BOOL DoRop3( PPDEV pPDev, SURFOBJ *psoDst, SURFOBJ *psoSrc, SURFOBJ *psoPat, SURFOBJ *psoTmp, CLIPOBJ *pco, XLATEOBJ *pxlo, PRECTL prclDst, PRECTL prclSrc, PRECTL prclPat, PPOINTL pptlPatOrg, BRUSHOBJ *pbo, DWORD Rop3 ) /*++ Routine Description: This function performs ROP3 operations (one at a time) Arguments: pPDev - Pointer to the PDEV psoDst - pointer to the destination surface object psoSrc - pointer to the source surface object psoPat - Pointer to the pattern surface object psoTmp - pointer to the temp buffer surface object pco - clip object prclDst - pointer to the destination rectangle prclSrc - pointer to the source rectangle prclPat - pointer to the pattern rectangle pptlPatOrg - Pointer to the brush origin, if this is NULL then its assumed the pattern's prclPat does not have to be aligned on the destination pbo - a Brush object if we need to call DoFill() Rop3 - a ROP3 to be performed Return Value: BOOL Author: 20-Jan-1994 Thu 02:36:00 created 27-Jan-1994 Thu 23:46:28 updated Re-write to take other parameter, also move the cloning surface objects to the caller (ie. DrvBitBlt()) Revision History: --*/ { RECTL rclTmp; DWORD SDMix; DWORD Mix2; BYTE Flags; UINT Count; BOOL InvertMix2; BOOL Ok; PLOTDBG(DBG_ROP3, ("DoRop3: Rop3=%08lx", Rop3)); switch (Rop3 &= 0xFF) { case 0x00: // 0 case 0xFF: // 1 case 0x55: // ~D DoSpecialRop3(psoDst, pco, prclDst, Rop3); case 0xAA: // D // // This is NOP // return(TRUE); } // // Invert Rop3 if we are out of the data range (128-255) and then invert // the final result (by inverting last Mix2 Rop2 code (0-15), all Rop3/Rop2 // codes are symmetric. // if (Rop3 >= 0x80) { InvertMix2 = TRUE; SDMix = (DWORD)Rop3ToSDMix[Rop3 ^ 0xFF]; PLOTDBG(DBG_ROP3, ("DoRop3: Need Invert ROP")); } else { InvertMix2 = FALSE; SDMix = (DWORD)Rop3ToSDMix[Rop3]; } if (psoTmp) { rclTmp.left = rclTmp.top = 0; rclTmp.right = psoTmp->sizlBitmap.cx; rclTmp.bottom = psoTmp->sizlBitmap.cy; } Flags = GET_SDMIX_MIX2F(SDMix); Count = (UINT)GET_MIX2F_COUNT(Flags); Ok = TRUE; PLOTDBG(DBG_ROP3, ("SDMix=%08lx, Flags=%02x, Count=%u", SDMix, Flags, Count)); if (Flags & MIX2F_MUL_DST) { PLOTWARN(("DoRop3: *** Rop3=%08lx Has Multiple DEST, Mix2s NOT complete ***", Rop3)); } while ((Ok) && (Count--)) { Mix2 = (DWORD)(SDMix & MIX2_MASK); if ((!Count) && (InvertMix2)) { PLOTDBG(DBG_ROP3, ("DoRop3: Invert Last MIX2 %02lx -> %02lx", Mix2, Mix2 ^ MIX2_MASK)); Mix2 ^= MIX2_MASK; } PLOTDBG(DBG_ROP3, ("DoRop3: SD=%02lx, Mix2=%02lx", SDMix & MIXSD_MASK, Mix2)); switch (SDMix & MIXSD_MASK) { case MIXSD_SRC_DST: PLOTASSERT(1, "DoRop3: MIXSD_SRC_DST but psoSrc = NULL, Rop3=%08lx", psoSrc, Rop3); Ok = DoMix2(pPDev, psoDst, psoSrc, pco, pxlo, prclDst, prclSrc, NULL, Mix2); break; case MIXSD_PAT_DST: if (psoPat) { Ok = DoMix2(pPDev, psoDst, psoPat, pco, NULL, prclDst, prclPat, pptlPatOrg, Mix2); } else { // // A compatible brush object is passed, use DoFill() to do // the actual work. // Mix2 += 1; Mix2 = MixToRop4(Mix2 | (Mix2 << 8)); PLOTDBG(DBG_ROP3, ("DoRop3: DoFill[%04lx] (%ld, %ld)-(%ld, %ld)=%ld x %ld", Mix2, prclDst->left, prclDst->top, prclDst->right, prclDst->bottom, prclDst->right - prclDst->left, prclDst->bottom - prclDst->top)); Ok = DoFill(psoDst, // psoDst NULL, // psoSrc pco, // pco NULL, // pxlo prclDst, // prclDst NULL, // prclSrc pbo, // pbo pptlPatOrg, // pptlBrushOrg Mix2); // Rop4 } break; case MIXSD_SRC_PAT: PLOTASSERT(1, "DoRop3: MIXSD_SRC_PAT but psoSrc = NULL, Rop3=%08lx", psoSrc, Rop3); PLOTASSERT(1, "DoRop3: MIXSD_SRC_PAT but psoPat = NULL, Rop3=%08lx", psoPat, Rop3); PLOTASSERT(1, "DoRop3: MIXSD_SRC_PAT but psoTmp = NULL, Rop3=%08lx", psoTmp, Rop3); // // Firs tile the pattern onto the temp buffer then do SRC/DST // using SRCCOPY = MIX2_S // if (pptlPatOrg) { // // This is a real pattern we have to tile and align it onto the // desination, but since psoTmp is 0,0 - cx,cy we must alter // the pptlPatOrg to make it align correctly. // pptlPatOrg->x -= prclDst->left; pptlPatOrg->y -= prclDst->top; } Ok = DoMix2(pPDev, psoTmp, psoPat, NULL, NULL, &rclTmp, prclPat, pptlPatOrg, MIX2_S); if (pptlPatOrg) { pptlPatOrg->x += prclDst->left; pptlPatOrg->y += prclDst->top; } // // Now We will do the MIX2 operation between SRC and PAT // if (Ok) { Ok = DoMix2(pPDev, psoTmp, psoSrc, NULL, NULL, &rclTmp, prclSrc, NULL, Mix2); } break; case MIXSD_TMP_DST: PLOTASSERT(1, "DoRop3: MIXSD_TMP_DST but psoTmp = NULL, Rop3=%08lx", psoTmp, Rop3); // // Since we already aligned the pattern on the temp buffer // we can just do the mix2 without aligning it again. // Ok = DoMix2(pPDev, psoDst, psoTmp, pco, NULL, prclDst, &rclTmp, NULL, Mix2); break; } SDMix >>= SDMIX_SHIFT_COUNT; } if (!Ok) { PLOTERR(("DoRop3: FAILED in DoMix2() operations")); } return(Ok); }
BOOL GetPlotRegData( HANDLE hPrinter, LPBYTE pData, DWORD RegIdx ) /*++ Routine Description: This function retrieve from registry to the pData Arguments: hPrinter - Handle to the printer interested pData - Pointer to the data area buffer, it must large enough RegIdx - One of the PRKI_xxxx in LOWORD(Index), HIWORD(Index) specified total count for the PENDATA set Return Value: TRUE if sucessful, FALSE if failed, Author: 06-Dec-1993 Mon 22:22:47 created -by- Daniel Chou (danielc) 10-Dec-1993 Fri 01:13:14 updated -by- Daniel Chou (danielc) Fixed nesty problem in spooler of GetPrinterData which if we passed a pbData and cb but if it cannot get any data then it will clear all our buffer, this is not we expected (we expected it just return error rather clear our buffer). Now we do extended test before we really go get the data. The other problem is, if we set pbData = NULL then spooler always have excption happened even we pass &cb as NULL also. Revision History: --*/ { PPLOTREGKEY pPRK; LONG lRet; DWORD cb; DWORD Type; WCHAR wBuf[32]; PLOTREGKEY PRK; UINT Index; Index = LOWORD(RegIdx); PLOTASSERT(0, "GetPlotRegData: Invalid PRKI_xxx Index %ld", Index <= PRKI_LAST, Index); if (Index >= PRKI_PENDATA1) { UINT cPenData; if ((cPenData = (UINT)HIWORD(RegIdx)) >= MAX_PENPLOTTER_PENS) { PLOTERR(("GetPlotRegData: cPenData too big %ld (Max=%ld)", cPenData, MAX_PENPLOTTER_PENS)); cPenData = MAX_PENPLOTTER_PENS; } PRK.pwKey = GetPenDataKey(wBuf, (WORD)(Index - PRKI_PENDATA1 + 1)); PRK.Size = (DWORD)sizeof(PENDATA) * (DWORD)cPenData; pPRK = &PRK; } else { pPRK = (PPLOTREGKEY)&PlotRegKey[Index]; } // // We must do following sequence or if an error occurred then the pData // will be filled with ZEROs // // 1. Set Type/cb to invalid value // 1. query the type/size of the keyword, (if more data available) // 2. and If size is exact as we want // 3. and if the type is as we want (REG_BINARY) // 4. assume data valid then query it // Type = 0xffffffff; cb = 0; if ((lRet = xGetPrinterData(hPrinter, pPRK->pwKey, &Type, (LPBYTE)pData, 0, &cb)) != ERROR_MORE_DATA) { if (lRet == ERROR_FILE_NOT_FOUND) { PLOTWARN(("GetPlotRegData: GetPrinterData(%ls) not found", pPRK->pwKey)); } else { PLOTERR(("GetPlotRegData: 1st GetPrinterData(%ls) failed, Error=%ld", pPRK->pwKey, lRet)); } } else if (cb != pPRK->Size) { PLOTERR(("GetPlotRegData: GetPrinterData(%ls) Size != %ld (%ld)", pPRK->pwKey, pPRK->Size, cb)); } else if (Type != REG_BINARY) { PLOTERR(("GetPlotRegData: GetPrinterData(%ls) Type != REG_BINARY (%ld)", pPRK->pwKey, Type)); } else if ((lRet = xGetPrinterData(hPrinter, pPRK->pwKey, &Type, (LPBYTE)pData, pPRK->Size, &cb)) == NO_ERROR) { PLOTDBG(DBG_GETREGDATA, ("READ '%ws' REG Data: Type=%ld, %ld bytes", pPRK->pwKey, Type, cb)); return(TRUE); } else { PLOTERR(("GetPlotRegData: 2nd GetPrinterData(%ls) failed, Error=%ld", pPRK->pwKey, lRet)); } return(FALSE); }
VOID SetDefaultPLOTDM( HANDLE hPrinter, PPLOTGPC pPlotGPC, LPWSTR pwDeviceName, PPLOTDEVMODE pPlotDM, PFORMSIZE pCurForm ) /*++ Routine Description: This function set the default devmode based on the current pPlotGPC Arguments: hPrinter - Handle to the printer pPlotGPC - our loaded/verified GPC data. pwDeviceName - the device name passed in pPlotDM - Pointer to our ExtDevMode pCurForm - Pointer to the FORMSIZE data structure which will be updated if the pointer is not NULL, the final result of the form size/imagable area selected by the user will be written to here. the form name will be in pPlotDM->dmFormName. Return Value: VOID Author: 14-Dec-1993 Tue 20:21:48 updated -by- Daniel Chou (danielc) Update the dmScale based on maximum the device can support 06-Dec-1993 Mon 12:49:52 updated -by- Daniel Chou (danielc) make sure we turn off the DM_xxx bits if one of those is not valid or supported in current plotter 16-Nov-1993 Tue 13:49:27 created -by- Daniel Chou (danielc) Revision History: --*/ { WCHAR DeviceName[CCHDEVICENAME]; if (pwDeviceName) { _WCPYSTR(DeviceName, pwDeviceName, CCHDEVICENAME); // // Make sure the PlotGPC's device name is ssync with the pDeviceName // passed // WStr2Str(pPlotGPC->DeviceName, DeviceName); PLOTDBG(DBG_DEFDEVMODE, ("PlotGPC DeviceName=%hs\npwDeviceName=%ls", pPlotGPC->DeviceName, pwDeviceName)); } else { PLOTERR(("No DeviceName passed, using GPC's '%hs'", pPlotGPC->DeviceName)); str2Wstr(DeviceName, pPlotGPC->DeviceName); } // // Make a default copy first then copy device name down // CopyMemory(pPlotDM, &_DefPlotDM, sizeof(PLOTDEVMODE)); WCPYFIELDNAME(pPlotDM->dm.dmDeviceName, DeviceName); // // We must turn off the DM_xxx bits in dmFields if we do not support it, // look at default fields we copy down then update it // if (pPlotGPC->MaxScale) { if ((WORD)pPlotDM->dm.dmScale > pPlotGPC->MaxScale) { pPlotDM->dm.dmScale = (SHORT)pPlotGPC->MaxScale; } } else { pPlotDM->dm.dmFields &= ~DM_SCALE; } if (pPlotGPC->MaxCopies <= 1) { pPlotDM->dm.dmFields &= ~DM_COPIES; } if (!(pPlotGPC->MaxQuality)) { pPlotDM->dm.dmFields &= ~DM_PRINTQUALITY; } // // DEFAULT 50% quality for byte align plotter (DJ 600) to do ROP right // if (pPlotGPC->Flags & PLOTF_RASTERBYTEALIGN) { pPlotDM->dm.dmPrintQuality = DMRES_LOW; PLOTWARN(("SetDefaultPLOTDM: HACK Default Qaulity = DMRES_LOW")); } if (!(pPlotGPC->Flags & PLOTF_COLOR)) { if (pPlotGPC->Flags & PLOTF_RASTER) { pPlotDM->dm.dmFields &= ~DM_COLOR; pPlotDM->dm.dmColor = DMCOLOR_MONOCHROME; } else { PLOTASSERT(0, "SetDefaultPLOTDM: The Pen Ploter CANNOT be MONO.", (pPlotGPC->Flags & PLOTF_COLOR), 0); pPlotGPC->Flags |= PLOTF_COLOR; } } // // Set default form name based on the country // SetDefaultDMForm(pPlotDM, pCurForm); }
DWORD ValidateSetPLOTDM( HANDLE hPrinter, PPLOTGPC pPlotGPC, LPWSTR pwDeviceName, PPLOTDEVMODE pPlotDMIn, PPLOTDEVMODE pPlotDMOut, PFORMSIZE pCurForm ) /*++ Routine Description: This function set and validate the pPlotDMOut from pPlotDMIn (if not null and valid) Arguments: hPrinter - Handle to the printer to be checked pPlotGPC - The plotter's GPC data loaded from the file pwDeviceName - Device Name to be put into dmDeviceName, if NULL then the device name is set from pPlotGPC->DeviceName pPlotDMIn - pointer to the input PLOTDEVMODE data structure, if can be NULL pPlotDMOut - Pointer to the output PLOTDEVMODE data structure, if pPlotDMIn is NULL then a default PLOTDEVMODE is returned pCurForm - Pointer to the FORMSIZE data structure which will be updated if the pointer is not NULL, the final result of the form size/imagable area selected by the user will be written to here. the form name will be in pPlotDM->dmFormName. Return Value: the return value is a DWORD dmField error code which specified dmFields are invalid (DM_xxxxx in wingdi.h) if the return value has any DM_INV_xxx bits set then it should raised an error to the user. if return value is 0 then function sucessful Author: 23-Nov-1993 Tue 10:08:50 created -by- Daniel Chou (danielc) 15-Dec-1993 Wed 21:27:52 updated -by- Daniel Chou (danielc) Fixed bug which compare dmPaperWidth/Length to MIN_SPL_FORM_CX 18-Dec-1993 Sat 03:57:24 updated -by- Daniel Chou (danielc) Fixed bug which reset dmFields when we checking DM_PAPERxxx and DM_FORMNAME, this turn off DM_ORIENTATION fields which let the orientation setting never stick. Also change how this fucntion set the paper fields, this function now only set DM_FORMNAME upon returned if the dmPaperSize getting larger then DMPAPER_LAST, otherwise it set DM_FORMNAME | DM_PAPERSIZE 12-Apr-1994 Tue 15:07:24 updated -by- Daniel Chou (danielc) Make smaller spec version printable 25-Oct-1994 Tue 13:41:03 updated -by- Daniel Chou (danielc) Change to have default as current Printer Properties setting first, Revision History: --*/ { DWORD dmErrFields = 0; PLOTASSERT(1, "ValidatePLOTDM: NULL pPlotDMOut", pPlotDMOut, 0); PLOTASSERT(1, "ValidatePLOTDM: NULL pPlotGPC", pPlotGPC, 0); if ((pPlotDMOut) || (pPlotGPC)) { PPRINTER_INFO_2 pPrinter2 = NULL; DWORD cbNeed; DWORD cbRet; // // First: set the default PLOTDEVMODE for the output then from there // validate/settting from input devmode, if pwDeviceName passed // as NULL then it assume that pPlotDMOut alreay set and // validated // if (pwDeviceName) { SetDefaultPLOTDM(hPrinter, pPlotGPC, pwDeviceName, pPlotDMOut, pCurForm); PLOTDBG(DBG_DEFDEVMODE, ("ValidateSetPLOTDM: Set Default PLOTDM DeviceName=%ls", pwDeviceName)); } // // Now see if we can get the current printman devmode setting as default // cbNeed = cbRet = 0; if ((!xGetPrinter(hPrinter, 2, NULL, 0, &cbNeed)) && (xGetLastError() == ERROR_INSUFFICIENT_BUFFER) && (pPrinter2 = LocalAlloc(LMEM_FIXED, cbNeed)) && (xGetPrinter(hPrinter, 2, (LPBYTE)pPrinter2, cbNeed, &cbRet)) && (cbNeed == cbRet) && (pPrinter2->pDevMode)) { PLOTDBG(DBG_DEFDEVMODE, ("ValidateSetPLOTDM: Got the PrintMan DEVMODE")); dmErrFields = MergePLOTDM(hPrinter, pPlotGPC, (PPLOTDEVMODE)pPrinter2->pDevMode, pPlotDMOut, pCurForm); } else { PLOTWARN(("ValidateSetPLOTDM: CANNOT get the PrintMan's DEVMODE")); PLOTWARN(("pPrinter2=%08lx, pDevMode=%08lx, cbNeed=%ld, cbRet=%ld, LastErr=%ld", pPrinter2, (pPrinter2) ? pPrinter2->pDevMode : 0, cbNeed, cbRet, xGetLastError())); } if (pPrinter2) { LocalFree((HLOCAL)pPrinter2); } // // Now the pPlotDMOut is validated, merge it with user's request // if (pPlotDMIn) { dmErrFields = MergePLOTDM(hPrinter, pPlotGPC, pPlotDMIn, pPlotDMOut, pCurForm); } } return(dmErrFields); }
VOID SetDefaultPLOTDM( HANDLE hPrinter, _In_ PPLOTGPC pPlotGPC, _In_opt_ LPCWSTR pwDeviceName, _In_ PPLOTDEVMODE pPlotDM, _Out_opt_ PFORMSIZE pCurForm ) /*++ Routine Description: This function set the default devmode based on the current pPlotGPC Arguments: hPrinter - Handle to the printer pPlotGPC - our loaded/verified GPC data. pwDeviceName - the device name passed in pPlotDM - Pointer to our ExtDevMode pCurForm - Pointer to the FORMSIZE data structure which will be updated if the pointer is not NULL, the final result of the form size/imagable area selected by the user will be written to here. the form name will be in pPlotDM->dmFormName. Return Value: VOID Author: 14-Dec-1993 Tue 20:21:48 updated Update the dmScale based on maximum the device can support 06-Dec-1993 Mon 12:49:52 updated make sure we turn off the DM_xxx bits if one of those is not valid or supported in current plotter 16-Nov-1993 Tue 13:49:27 created Revision History: --*/ { WCHAR *pwchDeviceName = NULL; ULONG ulStrLen = 0; UNREFERENCED_PARAMETER(hPrinter); // // Device name including NULL terminator // must be equal or shorter than CCHDEVICENAME. // PREFIX doesn' take this assumption. Buffer size needs to be flexible and // should not be on stack. // if (pwDeviceName) { ulStrLen = (ULONG)wcslen(pwDeviceName); // // Allocate buffer to hold pwDeviceName including null terminator. // Make sure that pwDeviceName has a device name. // if (0 == ulStrLen || !(pwchDeviceName = (WCHAR*)LocalAlloc(LMEM_FIXED|LMEM_ZEROINIT, (ulStrLen + 1) * sizeof(WCHAR)))) { PLOTERR(("SetDefaultPLOTDM: memory allocaton failed.\n")); // // Make sure that pPlotGPC->DeviceName has a null terminator. // pPlotGPC->DeviceName[0] = (BYTE)'\0'; } else { _WCPYSTR_FILL_TRAIL_WITH_NULL(pwchDeviceName, ulStrLen + 1, pwDeviceName); // // Make sure the PlotGPC's device name is ssync with the pDeviceName // passed. // String length must be equal or shorter than CCHDEVICENAME. // DEVMODE's device name and pPlotGPC->DeviceName can't hold a sting // longer than CCHDEVICENAME. // if (ulStrLen + 1 > CCHDEVICENAME) { PLOTERR(("SetDefaultPLOTDM: DeviceName is longer than buffer size.\n")); } else { WStr2Str(pPlotGPC->DeviceName, CCHOF(pPlotGPC->DeviceName), pwchDeviceName); } } PLOTDBG(DBG_DEFDEVMODE, ("PlotGPC DeviceName=%hs\npwDeviceName=%ls", pPlotGPC->DeviceName, pwDeviceName)); } else { PLOTERR(("No DeviceName passed, using GPC's '%hs'", pPlotGPC->DeviceName)); ulStrLen = (ULONG)strlen(pPlotGPC->DeviceName); // // Allocate buffer to hold pwDeviceName including null terminator. // Make sure that pwDeviceName has a device name. // if (0 == ulStrLen || !(pwchDeviceName = (WCHAR*)LocalAlloc(LMEM_FIXED|LMEM_ZEROINIT, (ulStrLen + 1) * sizeof(WCHAR)))) { PLOTERR(("SetDefaultPLOTDM: memory allocaton failed.\n")); } else { str2Wstr(pwchDeviceName, ulStrLen + 1, pPlotGPC->DeviceName); } } // // Make a default copy first then copy device name down // CopyMemory(pPlotDM, &_DefPlotDM, sizeof(PLOTDEVMODE)); if (pwchDeviceName) { WCPYFIELDNAME(pPlotDM->dm.dmDeviceName, CCHOF(pPlotDM->dm.dmDeviceName), pwchDeviceName); LocalFree(pwchDeviceName); } else { pPlotDM->dm.dmDeviceName[0] = L'\0'; } // // We must turn off the DM_xxx bits in dmFields if we do not support it, // look at default fields we copy down then update it // if (pPlotGPC->MaxScale) { if ((WORD)pPlotDM->dm.dmScale > pPlotGPC->MaxScale) { pPlotDM->dm.dmScale = (SHORT)pPlotGPC->MaxScale; } } else { pPlotDM->dm.dmFields &= ~DM_SCALE; } if (pPlotGPC->MaxCopies <= 1) { pPlotDM->dm.dmFields &= ~DM_COPIES; } if (!(pPlotGPC->MaxQuality)) { pPlotDM->dm.dmFields &= ~DM_PRINTQUALITY; } // // DEFAULT 50% quality for byte align plotter (DJ 600) to do ROP right // if (pPlotGPC->Flags & PLOTF_RASTERBYTEALIGN) { pPlotDM->dm.dmPrintQuality = DMRES_LOW; PLOTWARN(("SetDefaultPLOTDM: Force Default Qaulity = DMRES_LOW")); } if (!(pPlotGPC->Flags & PLOTF_COLOR)) { if (pPlotGPC->Flags & PLOTF_RASTER) { pPlotDM->dm.dmFields &= ~DM_COLOR; pPlotDM->dm.dmColor = DMCOLOR_MONOCHROME; } else { PLOTASSERT(0, "SetDefaultPLOTDM: The Pen Ploter CANNOT be MONO.", (pPlotGPC->Flags & PLOTF_COLOR), 0); pPlotGPC->Flags |= PLOTF_COLOR; } } // // Set default form name based on the country/region // SetDefaultDMForm(pPlotDM, pCurForm); }