📄 ljcolor.h
字号:
/*****************************************************************************\ ljcolor.h : Interface for the LJColor class Copyright (c) 1996 - 2001, Hewlett-Packard Co. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of Hewlett-Packard nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PATENT INFRINGEMENT; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\*****************************************************************************/#ifndef APDK_LJCOLOR_H#define APDK_LJCOLOR_HAPDK_BEGIN_NAMESPACE/*!\internal*/class LJColor : public Printer{public: LJColor (SystemServices* pSS,int numfonts=0, BOOL proto=FALSE); ~LJColor (); virtual Header* SelectHeader (PrintContext* pc); virtual DRIVER_ERROR VerifyPenInfo (); virtual DRIVER_ERROR ParsePenInfo (PEN_TYPE& ePen, BOOL QueryPrinter=TRUE); virtual DISPLAY_STATUS ParseError (BYTE status_reg); inline virtual BOOL SupportSeparateBlack() {return FALSE;} DRIVER_ERROR SkipRasters (int nBlankRasters); virtual DRIVER_ERROR Flush (int FlushSize) { return NO_ERROR; } virtual BOOL GetMargins (PAPER_SIZE ps, float *fMargins) { fMargins[0] = (float) 0.25; fMargins[1] = (float) 0.25; fMargins[2] = (float) 0.2; fMargins[3] = (float) 0.2; return TRUE; } virtual BOOL UseCMYK (unsigned int iPrintMode) { return FALSE;} virtual DRIVER_ERROR Encapsulate (const RASTERDATA* InputRaster, BOOL bLastPlane); Compressor* CreateCompressor (unsigned int RasterSize); BOOL bFGColorSet; BOOL bGrey_K; int m_iYPos;protected: BOOL m_bJobStarted; int m_iYResolution; Compressor *m_pCompressor;}; // LJColorclass LJColorKDraftMode : public GrayMode{public: LJColorKDraftMode ();}; // LJColorDraftModeclass LJColorGrayMode : public GrayMode{public: LJColorGrayMode ();}; // LJColorGrayModeclass LJColor150DPIMode : public PrintMode{public: LJColor150DPIMode ();}; // LJColor150DPIModeclass LJColor300DPIMode : public PrintMode{public: LJColor300DPIMode ();}; // LJColor300DPIModeclass LJColor600DPIMode : public PrintMode{public: LJColor600DPIMode ();}; // LJColor600DPIMode#ifdef APDK_EXTENDED_MEDIASIZEclass LJColorPlainBestMode : public PrintMode{public: LJColorPlainBestMode ();};#endif#ifdef APDK_LJCOLOR//! LJColorProxy/*!******************************************************************************/class LJColorProxy : public PrinterProxy{public: LJColorProxy() : PrinterProxy( "ColorLaser", // family name "hp color LaserJet\0" // models "HP Color LaserJet\0" // models "hp business inkjet 2600\0" // Diesel "hp business inkjet 3000\0" // business inkjet 3000 series "hp business inkjet 2300\0" // business inkjet 2300 series "Officejet 9100\0" // officejet 9100 series#ifdef APDK_MLC_PRINTER#endif ) {m_iPrinterType = eLJColor;} inline Printer* CreatePrinter(SystemServices* pSS) const { return new LJColor(pSS); } inline PRINTER_TYPE GetPrinterType() const { return eLJColor;} inline unsigned int GetModelBit() const { return 0x20;}};#endifAPDK_END_NAMESPACE#endif //APDK_LJCOLOR_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -